summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bytecode/Reader/ReaderWrappers.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Fine grainify namespacification, #include file that defines the interface!Chris Lattner2003-11-191-9/+11
| | | | llvm-svn: 10081
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-2/+5
| | | | llvm-svn: 9903
* Added LLVM project notice to the top of every C++ source file.John Criswell2003-10-201-0/+7
| | | | | | Header files will be on the way. llvm-svn: 9298
* * New revised variable argument handling supportChris Lattner2003-10-181-8/+89
| | | | | | | * More dense bytecode encoding for varargs calls (like printf) * Eliminated the extremely old bytecode format. rev #0 is now 1.0 llvm-svn: 9220
* Add separator between different types of readers.Misha Brukman2003-10-161-0/+1
| | | | llvm-svn: 9183
* Destroy allocated resources on exception.Misha Brukman2003-10-081-3/+13
| | | | llvm-svn: 8969
* All of our supported operating systems (so far) and FreeBSD technicallyBrian Gaeke2003-10-061-0/+1
| | | | | | want you to include <sys/stat.h> for fstat(), struct stat, and friends. llvm-svn: 8887
* Rename AbstractModuleProvider -> ModuleProvider, to match the header file name,Chris Lattner2003-10-041-6/+4
| | | | | | | and because, while the class used by the interface is abstract, the actual concept is not. llvm-svn: 8850
* Do not leak the ModuleProvider if releaseModule() throws.Chris Lattner2003-10-041-11/+6
| | | | llvm-svn: 8847
* Define the instance variable Buffer, not the automatic variable Buffer.Chris Lattner2003-09-251-3/+2
| | | | | | This was causing us to munmap random stuff, which is obviously bad. llvm-svn: 8709
* Fix alignment problemChris Lattner2003-09-241-1/+1
| | | | llvm-svn: 8707
* Actually assign the string correctly through the std::string pointer.Misha Brukman2003-09-241-2/+2
| | | | llvm-svn: 8704
* * Eliminate BytecodeBufferReader::Length member variableMisha Brukman2003-09-241-26/+7
| | | | | | | * Kill unused ALIN_PTRS #define * Set the error string if user passed it in to be compatible with former API llvm-svn: 8701
* Added code that ensures that we pass the beginning of the data buffer toJohn Criswell2003-09-231-1/+1
| | | | | | the parsing routines regardless of whether the buffer is re-aligned or not. llvm-svn: 8693
* * Group class definitions & implementations togetherMisha Brukman2003-09-231-58/+110
| | | | | | | | * Make sure we align the buffer we're given * Do not let exceptions propagate when the caller asks for a Module* * Add doxygenified comments to wrapper functions llvm-svn: 8682
* * Constantify arguments to copy functionMisha Brukman2003-09-231-8/+4
| | | | | | * Stop using a #define, make it an inline if statement llvm-svn: 8678
* Added file header comment.Misha Brukman2003-09-221-0/+7
| | | | llvm-svn: 8675
* * Cleaned up code:Misha Brukman2003-09-221-0/+170
- no more passing around a string pointer to set errors - no more returning booleans and checking for errors, we use C++ exceptions * Broke functionality into 2 new classes, one reads from file, one from a stream * Implemented lazy function streaming - the parser can read in a function at-a-time llvm-svn: 8671
OpenPOWER on IntegriCloud