aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/InstructionReader.cpp
AgeCommit message (Expand)Author
2004-06-29Remove files no longer needed. ConstantReader and InstructionReader wereReid Spencer
2004-04-28Squelch compile-time warning (profile build).Misha Brukman
2004-04-27Fix warning building in optimized modeChris Lattner
2004-04-05Implement support for a new LLVM 1.3 bytecode format, which uses uint'sChris Lattner
2004-04-03Remove a bunch of cruft that was used to be backwards compatible with the lastChris Lattner
2004-03-12Read select instrs from bytecodeChris Lattner
2004-02-09Start using the new and improve interface to FunctionType argumentsChris Lattner
2004-01-15Change all of the bytecode reader primitives to throw exceptions instead ofChris Lattner
2004-01-09Inching our way towards fixing PR82Chris Lattner
2003-11-19Minor efficiency improvements, finegrainify namespacificationChris Lattner
2003-11-11Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke
2003-10-20Added LLVM project notice to the top of every C++ source file.John Criswell
2003-10-19Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruct...Chris Lattner
2003-10-18* New revised variable argument handling supportChris Lattner
2003-10-09Reserve space for PHI nodes when we read them in. This provides a VERYChris Lattner
2003-10-09Use the version of getValue that takes the type plane instead of the typeChris Lattner
2003-10-09Pass a vector around to reduce dynamic allocationChris Lattner
2003-10-09Major refactoring of the bytecode reader. This includes the followingChris Lattner
2003-10-09Significantly clean up parsing of instructions. This exceptionizes andChris Lattner
2003-10-08This patch substantially simplifies and cleans up handling of basic blocksChris Lattner
2003-10-08Various cleanups and simplifications. This speeds up reading a bytecode fileChris Lattner
2003-09-23Stop returning bool and pass Instruction by reference;Misha Brukman
2003-09-11Fixed spelling and grammar.Misha Brukman
2003-09-08Fix bugChris Lattner
2003-09-08Add support for the unwind instructionChris Lattner
2003-09-08Read volatile loads/storesChris Lattner
2003-09-08Remove a gross hack that was there to support bytecode files that are over a ...Chris Lattner
2003-09-05Fix reading of invoke instrsChris Lattner
2003-09-05Whoa, we were misreading invoke instructions "normal" destinations quite badly.Chris Lattner
2003-08-23Rename SwitchInst::dest_push_back -> addCaseChris Lattner
2003-06-17Fix bug: Assembler/2003-06-17-InvokeDisassemble.llxChris Lattner
2003-05-22Eliminate the uchar typedef, use unsigned char explicitlyChris Lattner
2003-05-08Add support for the new va_arg instructionChris Lattner
2003-03-06Use the std namespace explicitlyChris Lattner
2002-10-13 - Rename Instruction::First*Op to *OpsBegin, and Num*Ops to *OpsEnd toChris Lattner
2002-09-13Change the MallocInst & AllocaInst ctors to take the allocated type, not theChris Lattner
2002-08-22Eliminated the MemAccessInst class, folding contents into GEP class.Chris Lattner
2002-08-22Load & StoreInst no longer derive from MemAccessInst, so we don't haveChris Lattner
2002-08-21Emit an obnoxious warning message for bytecode that includes load/storeChris Lattner
2002-08-17 - Finally nailed: test/Regression/Assembler/2002-08-16-ConstExprInlined.llxChris Lattner
2002-08-14Remove support for Not ConstantExpr. This simplifies the unary case to onlyChris Lattner
2002-06-05Fix constness problems now that the cast operators preserve the constnessChris Lattner
2002-05-06Replace all usages of Type::isPointerType with isa<PointerType>Chris Lattner
2002-04-04s/MethodType/FunctionTypeChris Lattner
2002-01-20Changes to build successfully with GCC 3.02Chris Lattner
2001-12-14Add pointer indexing supportChris Lattner
2001-12-04Renamed inst_const_iterator -> const_inst_iteratorChris Lattner
2001-12-03Rename ConstPoolVal -> ConstantChris Lattner
2001-12-03Split the PHINode class out from the iOther.h file into the iPHINode.h fileChris Lattner
2001-11-26Implement array indexingChris Lattner