Change getConstantValue to throw an exception on error, not return null
[oota-llvm.git] / lib / Bytecode / Reader / Reader.cpp
2003-10-09 Chris LattnerChange getConstantValue to throw an exception on error...
2003-10-09 Chris LattnerRemove potentially N^2 algorithm from symbol table...
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-09 Chris LattnerEliminate the instruction placeholder. Simplify a...
2003-10-09 Chris LattnerEliminate the old LateResolveValues data structure...
2003-10-09 Chris LattnerRemove a dead method
2003-10-08 Chris LattnerThis patch substantially simplifies and cleans up handl...
2003-10-08 Chris LattnerInline the postResolveValues method. It was poorly...
2003-10-08 Chris LattnerVarious cleanups and simplifications. This speeds...
2003-10-04 Chris LattnerTransform two methods to return pointers directly inste...
2003-10-04 Chris LattnerUse V for values, not D.
2003-09-26 Chris LattnerJust rethrow previous exception instead of making a...
2003-09-23 Misha BrukmanSuggestions made by Chris:
2003-09-22 Misha Brukman* Cleaned up code:
2003-09-11 Misha BrukmanFixed spelling and grammar.
2003-09-08 Chris LattnerRemove a gross hack that was there to support bytecode...
2003-08-24 Chris LattnerAllow modules to have 'any' pointer size and endianness...
2003-08-18 Misha BrukmanSpell `necessary' correctly.
2003-06-30 John CriswellMerged in autoconf branch. This provides configuration...
2003-05-22 Chris LattnerDo not assert fail or crash when a bytecode parse fails!
2003-05-22 Chris LattnerEliminate the uchar typedef, use unsigned char explicitly
2003-04-22 Chris LattnerAdd support for reading and writing pointersize/endiann...
2003-04-22 Chris LattnerPreserve module source information in the ModuleID
2003-04-19 Chris LattnerAdd support for reading unaligned bytecode buffers
2003-04-18 Chris LattnerFix a big bad bug I checked in yesterday :(
2003-04-16 Chris LattnerAdd support to the bytecode reader/writer for the new...
2003-04-16 Chris LattnerAdd new linkage types to support a real frontend
2003-03-19 Chris Lattner* Bug fixes:
2003-03-06 Chris LattnerInfrastructure for more compact bytecode files and...
2003-03-06 Chris Lattners/Method/Function in variable and method names
2003-03-06 Chris LattnerContinue simplifying error handling, s/method/function
2003-03-06 Chris LattnerCleanup error handling constructs
2003-03-06 Chris LattnerPull common code out
2003-03-06 Chris LattnerUse the std namespace explicitly
2002-11-20 Chris Lattner - Eliminated the deferred symbol table stuff in Modul...
2002-10-23 Chris Lattner - Fix a really nasty bug in the bytecode reader that...
2002-10-22 Chris LattnerWow, for some reason, when reading bytecode from stdin...
2002-10-14 Chris LattnerThere is no way to guarantee that constants are not...
2002-10-13 Chris Lattner - Change Function's so that their argument list is...
2002-09-20 Anand ShuklaChanged uchar to unsigned char in function ParseBytecod...
2002-08-21 Chris LattnerEmit an obnoxious warning message for bytecode that...
2002-08-18 Chris LattnerTurn off a debugging optimization that just slows bytec...
2002-08-17 Chris Lattner - Finally nailed: test/Regression/Assembler/2002...
2002-07-16 Anand Shuklaadded std:: to pair
2002-07-14 Vikram S. AdveAdd support for reading ConstantExpr nodes.
2002-06-25 Chris LattnerMEGAPATCH checkin.
2002-05-06 Chris LattnerReplace all usages of Type::isPointerType with isa...
2002-04-29 Chris LattnerEliminate duplicate or unneccesary #include's
2002-04-28 Chris LattnerSplit ConstantVals.h into Constant.h and Constants.h
2002-04-09 Chris LattnerMove FunctionArgument out of iOther.h into Argument...
2002-03-29 Chris Lattners/Method/Function
2002-03-26 Chris LattnerChange references from Method to Function
2002-01-21 Chris LattnerChuck fixed the GCC problems so this hack is now unnecc...
2002-01-20 Chris LattnerChanges to build successfully with GCC 3.02
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 internal method support
2001-11-12 Chris LattnerI don't know what I was thinking
2001-10-24 Chris LattnerChanges to get some meaningful feedback from the byteco...
2001-10-15 Chris LattnerRename ConstPoolPointerReference to ConstPoolPointerRef...
2001-10-14 Chris LattnerExternal methods shouldn't have argument lists
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-10-01 Chris LattnerAdd more support for new style casts
2001-09-18 Chris LattnerAdd support for global constants, and for initializers...
2001-09-14 Chris LattnerFix a bug with not removing method level types after...
2001-09-10 Chris LattnerImplement global variable support
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-23 Chris LattnerDoh! Wrong accessor. Caused 'can not read bytecode...
2001-06-27 Chris LattnerMiscellaneous cleanups:
2001-06-06 Chris LattnerInitial revision