aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/Reader.cpp
AgeCommit message (Expand)Author
2004-09-28Fix doxygen commentMisha Brukman
2004-09-27The system ranlib on darwin occasionally adds two extra newlines to theChris Lattner
2004-09-15Convert code to compile with vc7.1.Reid Spencer
2004-09-03Fixes to make LLVM compile with vc7.1.Alkis Evlogimenos
2004-09-01Changes For Bug 352Reid Spencer
2004-08-21Get rid of an extraneous local variable.Reid Spencer
2004-08-21Bytecode Reader Cleanup:Reid Spencer
2004-08-20Packed types, brought to you by Brad JonesBrian Gaeke
2004-08-17Bytecode File Format Changes:Reid Spencer
2004-08-04Turn a use of intptr_t into a reinterpret_cast<uint64_t> instead to getReid Spencer
2004-08-04Make getGlobalTableValue not use getTypeSlot, this speeds up the bc readerChris Lattner
2004-08-03Do not do a linear std::find to reconstruct information we had, but later threwChris Lattner
2004-07-27Simplify code and silence warningChris Lattner
2004-07-25Fix a serious bug in the double constant reader. In particular, becauseChris Lattner
2004-07-25Always write FP values correctly.Reid Spencer
2004-07-25bug 263:Reid Spencer
2004-07-18bug 122:Reid Spencer
2004-07-14Actually set the endian/pointersize flags on the module being read in!Brian Gaeke
2004-07-13Fix warning on SparcV9, where sizeof (int) != sizeof (void *).Brian Gaeke
2004-07-11Various cleanups:Reid Spencer
2004-07-09Error Handling Cleanup:Reid Spencer
2004-07-09Fix a backwards compatibility bug found by Tanya. In version 1.2, theReid Spencer
2004-07-05Finalize bytecode dumping. The "handleFinish" method was getting calledReid Spencer
2004-07-04- Don't use macros to call the BytecodeHandlerReid Spencer
2004-06-29MAJOR REWRITE.Reid Spencer
2004-06-17Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID()Chris Lattner
2004-04-05Implement support for a new LLVM 1.3 bytecode format, which uses uint'sChris Lattner
2004-04-03Remove a bunch of cruft that was used to be backwards compatible with the lastChris Lattner
2004-03-29Make error message a bit nicer.Chris Lattner
2004-02-09Start using the new and improve interface to FunctionType argumentsChris Lattner
2004-01-20Fix bogus warning and simplify codeChris Lattner
2004-01-20Bugfixes for dealing with partially compactified functionsChris Lattner
2004-01-18Save another 30K from 176.gcc by encoding the compaction table a bit moreChris Lattner
2004-01-18Add support for reading bytecode files with compactiontables for bytecode files.Chris Lattner
2004-01-17Bytecode format for LLVM 1.2 no longer explicitly encodes zeros in primitiveChris Lattner
2004-01-15Allow bytecode files to refer directly to global values as constants, insteadChris Lattner
2004-01-15Fix PR73Chris Lattner
2004-01-15Change all of the bytecode reader primitives to throw exceptions instead ofChris Lattner
2004-01-14Version 1.2 now supports encoding strings as a special case, to avoid havingChris Lattner
2004-01-14Remove support for the pre-1.0 bytecode version #1. This will becomeChris Lattner
2003-12-30remove some useless #includesChris Lattner
2003-12-01Emit & read more compressed bytecode by not emitting a bytecodeblock forChris Lattner
2003-11-19* Finegrainify namespacificationChris Lattner
2003-11-19Minor speedup to do less linear time searches of information we already have.Chris Lattner
2003-11-11Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke
2003-10-20Added LLVM project notice to the top of every C++ source file.John Criswell
2003-10-18Fix warningChris Lattner
2003-10-18add support for new linkage typesChris Lattner
2003-10-18* New revised variable argument handling supportChris Lattner
2003-10-16Add support for 'weak' linkage.Chris Lattner