aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/Reader.cpp
AgeCommit message (Expand)Author
2005-05-05Add some extra checks. Opaque types don't have a null marker.Chris Lattner
2005-04-21Remove trailing whitespaceMisha Brukman
2005-03-15This mega patch converts us from using Function::a{iterator|begin|end} toChris Lattner
2005-03-05second argument to Value::setName is now gone.Chris Lattner
2005-02-24use more specific cast.Chris Lattner
2005-02-13Make sure to clear the LazyFunctionLoadMap after we ParseAllFunctionBodies.Chris Lattner
2005-01-31Fix the regressions my User changes introduced. Apparently some parts ofChris Lattner
2005-01-29Adjust to changes in User class and minor changes in instruction ctors.Chris Lattner
2004-12-20Fix problems uncovered by VC++ (first time compiled by VC++)Jeff Cohen
2004-12-09Remove a dead field, make the map go to integer type ID to hash better andChris Lattner
2004-12-09Remove #include inadvertently addedChris Lattner
2004-12-09Eliminate this ugly hack. This was put back in when replaceAllUsesOf usedChris Lattner
2004-12-04Provide more information in the error message that occurs when there areReid Spencer
2004-12-04Do not allow bytecode files with unresolved references to be read. DoingChris Lattner
2004-11-30RevisionNum is read by error(), initialize it early.Chris Lattner
2004-11-19Add note that this is for old bytecode files.Chris Lattner
2004-11-15Use a per-function flag bit to indicate whether or not there is a functionChris Lattner
2004-11-15Make *SURE* to null out the pointer before throwing an exception, otherwiseChris Lattner
2004-11-15Make functions default to having external linkage if they have noChris Lattner
2004-11-14Simplify decompression code by using the high level interface to the CompressorReid Spencer
2004-11-14Mark an unmaterialized function as having GhostLinkageMisha Brukman
2004-11-07* Comments & cleanup per CL code review.Reid Spencer
2004-11-06Add support for compressed bytecodeReid Spencer
2004-10-16Do not erroneously accept revision 6 bytecode files when the format hasn'tChris Lattner
2004-10-16Add support for undef, unreachable, and function flagsChris Lattner
2004-10-14Fit in 80 columnsChris Lattner
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