diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-07 21:41:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-07 21:41:02 +0000 |
commit | a0e49f2ead3d18dbae26a2ddf7287b4c9c484cb1 (patch) | |
tree | 088a5512dea02d1cc104ddcb4e8187e4f738af2b /llvm/lib/Bytecode/Reader/Reader.h | |
parent | cca9b1d7681b0670427825f752e623b1b5893fb4 (diff) | |
download | bcm5719-llvm-a0e49f2ead3d18dbae26a2ddf7287b4c9c484cb1.tar.gz bcm5719-llvm-a0e49f2ead3d18dbae26a2ddf7287b4c9c484cb1.zip |
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
Diffstat (limited to 'llvm/lib/Bytecode/Reader/Reader.h')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.h b/llvm/lib/Bytecode/Reader/Reader.h index 4593e2acc4b..516a116f8b5 100644 --- a/llvm/lib/Bytecode/Reader/Reader.h +++ b/llvm/lib/Bytecode/Reader/Reader.h @@ -140,16 +140,15 @@ public: /// @name Methods /// @{ public: - - typedef size_t Decompressor_t(const char *, size_t, char*&, std::string*); - + typedef size_t BCDecompressor_t(const char *, size_t, char*&, std::string*); + /// @returns true if an error occurred /// @brief Main interface to parsing a bytecode buffer. bool ParseBytecode( volatile BufPtr Buf, ///< Beginning of the bytecode buffer unsigned Length, ///< Length of the bytecode buffer const std::string &ModuleID, ///< An identifier for the module constructed. - Decompressor_t *Decompressor = 0, ///< Optional decompressor. + BCDecompressor_t *Decompressor = 0, ///< Optional decompressor. std::string* ErrMsg = 0 ///< Optional place for error message ); |