aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Bytecode/Reader/InstructionReader.cpp
Commit message (Expand)AuthorAgeFilesLines
* Reserve space for PHI nodes when we read them in. This provides a VERYChris Lattner2003-10-091-0/+1
* Use the version of getValue that takes the type plane instead of the typeChris Lattner2003-10-091-16/+16
* Pass a vector around to reduce dynamic allocationChris Lattner2003-10-091-11/+13
* Major refactoring of the bytecode reader. This includes the followingChris Lattner2003-10-091-242/+140
* Significantly clean up parsing of instructions. This exceptionizes andChris Lattner2003-10-091-138/+103
* This patch substantially simplifies and cleans up handling of basic blocksChris Lattner2003-10-081-20/+17
* Various cleanups and simplifications. This speeds up reading a bytecode fileChris Lattner2003-10-081-18/+18
* Stop returning bool and pass Instruction by reference;Misha Brukman2003-09-231-133/+144
* Fixed spelling and grammar.Misha Brukman2003-09-111-1/+1
* Fix bugChris Lattner2003-09-081-1/+2
* Add support for the unwind instructionChris Lattner2003-09-081-0/+3
* Read volatile loads/storesChris Lattner2003-09-081-2/+4
* Remove a gross hack that was there to support bytecode files that are over a ...Chris Lattner2003-09-081-63/+10
* Fix reading of invoke instrsChris Lattner2003-09-051-22/+23
* Whoa, we were misreading invoke instructions "normal" destinations quite badly.Chris Lattner2003-09-051-2/+2
* Rename SwitchInst::dest_push_back -> addCaseChris Lattner2003-08-231-2/+2
* Fix bug: Assembler/2003-06-17-InvokeDisassemble.llxChris Lattner2003-06-171-10/+14
* Eliminate the uchar typedef, use unsigned char explicitlyChris Lattner2003-05-221-2/+4
* Add support for the new va_arg instructionChris Lattner2003-05-081-1/+5
* Use the std namespace explicitlyChris Lattner2003-03-061-31/+29
* - Rename Instruction::First*Op to *OpsBegin, and Num*Ops to *OpsEnd toChris Lattner2002-10-131-2/+2
* Change the MallocInst & AllocaInst ctors to take the allocated type, not theChris Lattner2002-09-131-2/+8
* Eliminated the MemAccessInst class, folding contents into GEP class.Chris Lattner2002-08-221-4/+4
* Load & StoreInst no longer derive from MemAccessInst, so we don't haveChris Lattner2002-08-221-1/+1
* Emit an obnoxious warning message for bytecode that includes load/storeChris Lattner2002-08-211-8/+30
* - Finally nailed: test/Regression/Assembler/2002-08-16-ConstExprInlined.llxChris Lattner2002-08-171-59/+58
* Remove support for Not ConstantExpr. This simplifies the unary case to onlyChris Lattner2002-08-141-7/+2
* Fix constness problems now that the cast operators preserve the constnessChris Lattner2002-06-051-4/+4
* Replace all usages of Type::isPointerType with isa<PointerType>Chris Lattner2002-05-061-1/+1
* s/MethodType/FunctionTypeChris Lattner2002-04-041-6/+6
* Changes to build successfully with GCC 3.02Chris Lattner2002-01-201-2/+5
* Add pointer indexing supportChris Lattner2001-12-141-9/+12
* Renamed inst_const_iterator -> const_inst_iteratorChris Lattner2001-12-041-4/+4
* Rename ConstPoolVal -> ConstantChris Lattner2001-12-031-1/+1
* Split the PHINode class out from the iOther.h file into the iPHINode.h fileChris Lattner2001-12-031-3/+3
* Implement array indexingChris Lattner2001-11-261-26/+47
* Remove debug info :(Chris Lattner2001-11-121-3/+1
* Fix bug in new assertionChris Lattner2001-11-121-4/+7
* Add an assertion checkChris Lattner2001-11-121-0/+2
* Fixed a LONG standing, SCARY problem with bytecode encoding. It turns out to...Chris Lattner2001-10-231-12/+36
* Fix problem with a cast instruction that must be expanded to type 0Chris Lattner2001-10-211-3/+7
* * Add real support for global variable addresses initializing constantsChris Lattner2001-10-131-12/+71
* * Both Method & GlobalVariable now subclass GlobalValueChris Lattner2001-10-031-2/+2
* Commit more code over to new cast styleChris Lattner2001-10-021-11/+11
* Convert more code to use new style castsChris Lattner2001-10-011-14/+14
* getMethodType is now just getTypeChris Lattner2001-09-101-2/+2
* * Remove support for internal constant poolChris Lattner2001-09-071-1/+1
* * Add calls to failure template so that it is actually possible to debugChris Lattner2001-07-281-38/+37
* Add support for extern varargs methods & varargs method callsChris Lattner2001-07-251-18/+36
* Implementation of Store & GetElementPtrChris Lattner2001-07-081-2/+35