Added LLVM project notice to the top of every C++ source file.
[oota-llvm.git] / lib / Bytecode / Reader / InstructionReader.cpp
2003-10-20 John CriswellAdded LLVM project notice to the top of every C++ sourc...
2003-10-19 Chris LattnerChange the Opcode enum for PHI nodes from "Instruction...
2003-10-18 Chris Lattner* New revised variable argument handling support
2003-10-09 Chris LattnerReserve space for PHI nodes when we read them in. ...
2003-10-09 Chris LattnerUse the version of getValue that takes the type plane...
2003-10-09 Chris LattnerPass a vector around to reduce dynamic allocation
2003-10-09 Chris LattnerMajor refactoring of the bytecode reader. This include...
2003-10-09 Chris LattnerSignificantly clean up parsing of instructions. This...
2003-10-08 Chris LattnerThis patch substantially simplifies and cleans up handl...
2003-10-08 Chris LattnerVarious cleanups and simplifications. This speeds...
2003-09-23 Misha BrukmanStop returning bool and pass Instruction by reference;
2003-09-11 Misha BrukmanFixed spelling and grammar.
2003-09-08 Chris LattnerFix bug
2003-09-08 Chris LattnerAdd support for the unwind instruction
2003-09-08 Chris LattnerRead volatile loads/stores
2003-09-08 Chris LattnerRemove a gross hack that was there to support bytecode...
2003-09-05 Chris LattnerFix reading of invoke instrs
2003-09-05 Chris LattnerWhoa, we were misreading invoke instructions "normal...
2003-08-23 Chris LattnerRename SwitchInst::dest_push_back -> addCase
2003-06-17 Chris LattnerFix bug: Assembler/2003-06-17-InvokeDisassemble.llx
2003-05-22 Chris LattnerEliminate the uchar typedef, use unsigned char explicitly
2003-05-08 Chris LattnerAdd support for the new va_arg instruction
2003-03-06 Chris LattnerUse the std namespace explicitly
2002-10-13 Chris Lattner - Rename Instruction::First*Op to *OpsBegin, and...
2002-09-13 Chris LattnerChange the MallocInst & AllocaInst ctors to take the...
2002-08-22 Chris LattnerEliminated the MemAccessInst class, folding contents...
2002-08-22 Chris LattnerLoad & StoreInst no longer derive from MemAccessInst...
2002-08-21 Chris LattnerEmit an obnoxious warning message for bytecode that...
2002-08-17 Chris Lattner - Finally nailed: test/Regression/Assembler/2002...
2002-08-14 Chris LattnerRemove support for Not ConstantExpr. This simplifies...
2002-06-05 Chris LattnerFix constness problems now that the cast operators...
2002-05-06 Chris LattnerReplace all usages of Type::isPointerType with isa...
2002-04-04 Chris Lattners/MethodType/FunctionType
2002-01-20 Chris LattnerChanges to build successfully with GCC 3.02
2001-12-14 Chris LattnerAdd pointer indexing support
2001-12-04 Chris LattnerRenamed inst_const_iterator -> const_inst_iterator
2001-12-03 Chris LattnerRename ConstPoolVal -> Constant
2001-12-03 Chris LattnerSplit the PHINode class out from the iOther.h file...
2001-11-26 Chris LattnerImplement array indexing
2001-11-12 Chris LattnerRemove debug info :(
2001-11-12 Chris LattnerFix bug in new assertion
2001-11-12 Chris LattnerAdd an assertion check
2001-10-23 Chris LattnerFixed a LONG standing, SCARY problem with bytecode...
2001-10-21 Chris LattnerFix problem with a cast instruction that must be expand...
2001-10-13 Chris Lattner* Add real support for global variable addresses initia...
2001-10-03 Chris Lattner* Both Method & GlobalVariable now subclass GlobalValue
2001-10-02 Chris LattnerCommit more code over to new cast style
2001-10-01 Chris LattnerConvert more code to use new style casts
2001-09-10 Chris LattnergetMethodType is now just getType
2001-09-07 Chris Lattner* Remove support for internal constant pool
2001-07-28 Chris Lattner* Add calls to failure template so that it is actually...
2001-07-25 Chris LattnerAdd support for extern varargs methods & varargs method...
2001-07-08 Chris LattnerImplementation of Store & GetElementPtr
2001-07-08 Chris LattnerImplemented shl, shl, & load instructions
2001-07-08 Chris LattnerMoved Cast from being a Unary instruction to being...
2001-07-08 Chris LattnerNeg instruction removed. Cast instruction implemented.
2001-07-07 Chris LattnerConvert BinaryOperand and UnaryOperator to only take...
2001-07-07 Chris LattnerChanged the fundemental architecture of Operands for...
2001-06-25 Chris LattnerRenamed get.*Operator to create seeing that it would...
2001-06-11 Chris LattnerUpdates to support
2001-06-08 Chris LattnerMoved getBinaryOperator to the BinaryOperator class...
2001-06-06 Chris LattnerInitial revision