aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Bytecode/Reader/Reader.cpp
Commit message (Expand)AuthorAgeFilesLines
* Ok, the "fix" for this is to do a real associative container. Symbol tablesChris Lattner2003-10-101-15/+11
* Another 10% performance improvement by not using replaceAllUsesWithChris Lattner2003-10-091-13/+20
* Use the version of getValue that takes the type plane instead of the typeChris Lattner2003-10-091-1/+2
* Pass a vector around to reduce dynamic allocationChris Lattner2003-10-091-1/+2
* Change getConstantValue to throw an exception on error, not return nullChris Lattner2003-10-091-1/+4
* Remove potentially N^2 algorithm from symbol table reader. No speedupChris Lattner2003-10-091-5/+13
* Major refactoring of the bytecode reader. This includes the followingChris Lattner2003-10-091-31/+18
* Significantly clean up parsing of instructions. This exceptionizes andChris Lattner2003-10-091-4/+1
* Eliminate the instruction placeholder. Simplify a bunch of code.Chris Lattner2003-10-091-1/+1
* Eliminate the old LateResolveValues data structure, replacing it with aChris Lattner2003-10-091-23/+25
* Remove a dead methodChris Lattner2003-10-091-11/+0
* This patch substantially simplifies and cleans up handling of basic blocksChris Lattner2003-10-081-22/+57
* Inline the postResolveValues method. It was poorly named anywayChris Lattner2003-10-081-29/+24
* Various cleanups and simplifications. This speeds up reading a bytecode fileChris Lattner2003-10-081-43/+38
* Transform two methods to return pointers directly instead of returning themChris Lattner2003-10-041-26/+18
* Use V for values, not D.Chris Lattner2003-10-041-16/+15
* Just rethrow previous exception instead of making a new oneChris Lattner2003-09-261-1/+1
* Suggestions made by Chris:Misha Brukman2003-09-231-10/+14
* * Cleaned up code:Misha Brukman2003-09-221-262/+161
* Fixed spelling and grammar.Misha Brukman2003-09-111-1/+1
* Remove a gross hack that was there to support bytecode files that are over a ...Chris Lattner2003-09-081-1/+1
* Allow modules to have 'any' pointer size and endianness. Luckily, we hadChris Lattner2003-08-241-11/+20
* Spell `necessary' correctly.Misha Brukman2003-08-181-1/+1
* Merged in autoconf branch. This provides configuration via the autoconfJohn Criswell2003-06-301-5/+5
* Do not assert fail or crash when a bytecode parse fails!Chris Lattner2003-05-221-0/+1
* Eliminate the uchar typedef, use unsigned char explicitlyChris Lattner2003-05-221-11/+19
* Add support for reading and writing pointersize/endianness to and from bytecodeChris Lattner2003-04-221-0/+5
* Preserve module source information in the ModuleIDChris Lattner2003-04-221-6/+7
* Add support for reading unaligned bytecode buffersChris Lattner2003-04-191-0/+11
* Fix a big bad bug I checked in yesterday :(Chris Lattner2003-04-181-1/+1
* Add support to the bytecode reader/writer for the new linkage typesChris Lattner2003-04-161-14/+41
* Add new linkage types to support a real frontendChris Lattner2003-04-161-3/+10
* * Bug fixes:Chris Lattner2003-03-191-139/+133
* Infrastructure for more compact bytecode files and REAL support for versioningChris Lattner2003-03-061-6/+40
* s/Method/Function in variable and method namesChris Lattner2003-03-061-11/+11
* Continue simplifying error handling, s/method/functionChris Lattner2003-03-061-57/+45
* Cleanup error handling constructsChris Lattner2003-03-061-37/+47
* Pull common code outChris Lattner2003-03-061-16/+14
* Use the std namespace explicitlyChris Lattner2003-03-061-12/+10
* - Eliminated the deferred symbol table stuff in Module & Function, it reallyChris Lattner2002-11-201-2/+2
* - Fix a really nasty bug in the bytecode reader that caused it to failChris Lattner2002-10-231-10/+11
* Wow, for some reason, when reading bytecode from stdin, we were only readingChris Lattner2002-10-221-1/+1
* There is no way to guarantee that constants are not forward referenced.Chris Lattner2002-10-141-0/+28
* - Change Function's so that their argument list is populated when they areChris Lattner2002-10-131-8/+3
* Changed uchar to unsigned char in function ParseBytecodeBuffer, because seemi...Anand Shukla2002-09-201-1/+1
* Emit an obnoxious warning message for bytecode that includes load/storeChris Lattner2002-08-211-1/+2
* Turn off a debugging optimization that just slows bytecode reading downChris Lattner2002-08-181-1/+1
* - Finally nailed: test/Regression/Assembler/2002-08-16-ConstExprInlined.llxChris Lattner2002-08-171-194/+111
* added std:: to pairAnand Shukla2002-07-161-0/+1
* Add support for reading ConstantExpr nodes.Vikram S. Adve2002-07-141-32/+111