hanchenye-llvm-project/llvm/tools/llvm-link
Chris Lattner a0e49f2ead push bytecode decompressor out through APIs. Now the bytecode reader
api's look like this:

ModuleProvider *getBytecodeModuleProvider(
  const std::string &Filename,  ///< Name of file to be read
  BCDecompressor_t *BCDC = Compressor::decompressToNewBuffer,
  std::string* ErrMsg = 0,      ///< Optional error message holder
  BytecodeHandler* H = 0        ///< Optional handler for reader events
);

This is ugly, but allows a client to say:

  getBytecodeModuleProvider("foo", 0);

If they do this, there is no dependency on the compression libraries, saving
codesize.

llvm-svn: 34012
2007-02-07 21:41:02 +00:00
..
Makefile Use LINK_COMPONENTS to specify *components* to link against instead of 2006-09-04 05:59:09 +00:00
llvm-link.cpp push bytecode decompressor out through APIs. Now the bytecode reader 2007-02-07 21:41:02 +00:00