aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Bytecode/Reader/Reader.cpp
Commit message (Expand)AuthorAgeFilesLines
* Use a map to cache the ModuleType information, so we can do logarithmicChris Lattner2005-10-031-8/+41
* Culling out use of unions for converting FP to bits and vice versa.Jim Laskey2005-08-171-15/+6
* Eliminate all remaining tabs and trailing spaces.Jeff Cohen2005-07-271-2/+2
* core changes for varargsAndrew Lenharth2005-06-181-3/+36
* remove some dead (always dynamically false) flagsChris Lattner2005-05-061-21/+1
* encode calling conventions for call/invoke instructions.Chris Lattner2005-05-061-7/+37
* encode function calling convs in the bytecode file. invoke and call areChris Lattner2005-05-061-0/+8
* add bytecode reader support for tail callsChris Lattner2005-05-061-0/+2
* Remove vim settings from source code; people should use llvm/utils/vim/vimrcMisha Brukman2005-05-051-1/+0
* Add some extra checks. Opaque types don't have a null marker.Chris Lattner2005-05-051-4/+10
* Remove trailing whitespaceMisha Brukman2005-04-211-114/+114
* This mega patch converts us from using Function::a{iterator|begin|end} toChris Lattner2005-03-151-1/+1
* second argument to Value::setName is now gone.Chris Lattner2005-03-051-1/+1
* use more specific cast.Chris Lattner2005-02-241-1/+1
* Make sure to clear the LazyFunctionLoadMap after we ParseAllFunctionBodies.Chris Lattner2005-02-131-1/+2
* Fix the regressions my User changes introduced. Apparently some parts ofChris Lattner2005-01-311-1/+4
* Adjust to changes in User class and minor changes in instruction ctors.Chris Lattner2005-01-291-13/+12
* Fix problems uncovered by VC++ (first time compiled by VC++)Jeff Cohen2004-12-201-1/+2
* Remove a dead field, make the map go to integer type ID to hash better andChris Lattner2004-12-091-15/+10
* Remove #include inadvertently addedChris Lattner2004-12-091-2/+0
* Eliminate this ugly hack. This was put back in when replaceAllUsesOf usedChris Lattner2004-12-091-30/+6
* Provide more information in the error message that occurs when there areReid Spencer2004-12-041-2/+10
* Do not allow bytecode files with unresolved references to be read. DoingChris Lattner2004-12-041-1/+7
* RevisionNum is read by error(), initialize it early.Chris Lattner2004-11-301-0/+1
* Add note that this is for old bytecode files.Chris Lattner2004-11-191-1/+1
* Use a per-function flag bit to indicate whether or not there is a functionChris Lattner2004-11-151-3/+6
* Make *SURE* to null out the pointer before throwing an exception, otherwiseChris Lattner2004-11-151-2/+6
* Make functions default to having external linkage if they have noChris Lattner2004-11-151-2/+2
* Simplify decompression code by using the high level interface to the CompressorReid Spencer2004-11-141-57/+11
* Mark an unmaterialized function as having GhostLinkageMisha Brukman2004-11-141-0/+4
* * Comments & cleanup per CL code review.Reid Spencer2004-11-071-22/+56
* Add support for compressed bytecodeReid Spencer2004-11-061-3/+40
* Do not erroneously accept revision 6 bytecode files when the format hasn'tChris Lattner2004-10-161-5/+2
* Add support for undef, unreachable, and function flagsChris Lattner2004-10-161-19/+67
* Fit in 80 columnsChris Lattner2004-10-141-13/+14
* Fix doxygen commentMisha Brukman2004-09-281-1/+1
* The system ranlib on darwin occasionally adds two extra newlines to theChris Lattner2004-09-271-2/+8
* Convert code to compile with vc7.1.Reid Spencer2004-09-151-3/+3
* Fixes to make LLVM compile with vc7.1.Alkis Evlogimenos2004-09-031-0/+1
* Changes For Bug 352Reid Spencer2004-09-011-4/+10
* Get rid of an extraneous local variable.Reid Spencer2004-08-211-1/+0
* Bytecode Reader Cleanup:Reid Spencer2004-08-211-38/+66
* Packed types, brought to you by Brad JonesBrian Gaeke2004-08-201-0/+20
* Bytecode File Format Changes:Reid Spencer2004-08-171-6/+17
* Turn a use of intptr_t into a reinterpret_cast<uint64_t> instead to getReid Spencer2004-08-041-1/+2
* Make getGlobalTableValue not use getTypeSlot, this speeds up the bc readerChris Lattner2004-08-041-23/+28
* Do not do a linear std::find to reconstruct information we had, but later threwChris Lattner2004-08-031-17/+10
* Simplify code and silence warningChris Lattner2004-07-271-6/+4
* Fix a serious bug in the double constant reader. In particular, becauseChris Lattner2004-07-251-1/+2
* Always write FP values correctly.Reid Spencer2004-07-251-35/+21