aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/Reader.cpp
AgeCommit message (Expand)Author
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
2003-10-13Minor cleanupsChris Lattner
2003-10-13Avoid calling getTypeSlot moreChris Lattner
2003-10-10Ok, the "fix" for this is to do a real associative container. Symbol tablesChris Lattner
2003-10-09Another 10% performance improvement by not using replaceAllUsesWithChris Lattner
2003-10-09Use the version of getValue that takes the type plane instead of the typeChris Lattner
2003-10-09Pass a vector around to reduce dynamic allocationChris Lattner
2003-10-09Change getConstantValue to throw an exception on error, not return nullChris Lattner
2003-10-09Remove potentially N^2 algorithm from symbol table reader. No speedupChris Lattner
2003-10-09Major refactoring of the bytecode reader. This includes the followingChris Lattner
2003-10-09Significantly clean up parsing of instructions. This exceptionizes andChris Lattner
2003-10-09Eliminate the instruction placeholder. Simplify a bunch of code.Chris Lattner
2003-10-09Eliminate the old LateResolveValues data structure, replacing it with aChris Lattner
2003-10-09Remove a dead methodChris Lattner
2003-10-08This patch substantially simplifies and cleans up handling of basic blocksChris Lattner
2003-10-08Inline the postResolveValues method. It was poorly named anywayChris Lattner
2003-10-08Various cleanups and simplifications. This speeds up reading a bytecode fileChris Lattner
2003-10-04Transform two methods to return pointers directly instead of returning themChris Lattner