aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/Reader.cpp
AgeCommit message (Expand)Author
2005-10-23When a function takes a variable number of pointer arguments, with a zeroJeff Cohen
2005-10-03Use a map to cache the ModuleType information, so we can do logarithmicChris Lattner
2005-08-17Culling out use of unions for converting FP to bits and vice versa.Jim Laskey
2005-07-27Eliminate all remaining tabs and trailing spaces.Jeff Cohen
2005-06-18core changes for varargsAndrew Lenharth
2005-05-06remove some dead (always dynamically false) flagsChris Lattner
2005-05-06encode calling conventions for call/invoke instructions.Chris Lattner
2005-05-06encode function calling convs in the bytecode file. invoke and call areChris Lattner
2005-05-06add bytecode reader support for tail callsChris Lattner
2005-05-05Remove vim settings from source code; people should use llvm/utils/vim/vimrcMisha Brukman
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