Changes For Bug 352
[oota-llvm.git] / lib / ExecutionEngine / Interpreter / Interpreter.h
2004-09-01 Reid SpencerChanges For Bug 352
2004-07-04 Reid SpencerAdd #include <iostream> since Value.h does not #include...
2004-04-20 Chris LattnerAdd support for the select instruction
2004-04-04 Chris LattnerAdjust to new interface
2004-04-04 Chris LattnerAdjust to new gep_type_iterator prototypes.
2004-02-26 Chris Lattnerremove obsolete comment
2004-02-13 Brian GaekeFix off-by-one in Interpreter::getFirstVarArg(), which...
2003-12-28 Chris LattnerPass around IntrinsicLowering instances as appropriate.
2003-12-26 Chris LattnerNo longer run atExit functions from run()
2003-12-11 Brian GaekeFix typo in comment. Add prototype for getConstantExpr...
2003-12-08 Chris Lattnerimplement method
2003-11-25 Chris LattnerDo not depend on structure elements being of type UByteTy
2003-11-13 Brian GaekeChange LLI's internal representation of va_list to...
2003-11-11 Brian GaekePut all LLVM code into the llvm namespace, as per bug...
2003-11-07 Brian GaekeImplement vaarg instruction. This is not quite perfect...
2003-11-07 Brian GaekeAdd stub version of unwind support
2003-11-07 Brian GaekevisitCallInst --> visitCallSite.
2003-11-07 Brian GaekeUse CallSites for call sites, instead of CallInsts...
2003-11-07 Brian GaekeRefactor the return-from-function code into popStackAnd...
2003-11-05 Chris LattnerBe friendly to gcc 3.4... good compiler. Nice compiler.
2003-10-24 Brian GaekeExecutionEngine::create no longer takes a TraceMode...
2003-10-21 John CriswellAdded LLVM copyright header.
2003-10-18 Chris LattnerInterpret the new varargs intrinsics correctly
2003-09-17 Chris LattnerChange FunctionInfo from being an annotation put on...
2003-09-05 Chris LattnerReorder #includes to follow LLVM conventions
2003-09-05 Brian GaekeExecutionEngine.h, GenericValue.h --> include/llvm...
2003-09-05 Brian GaekeMake getOperandValue and executeCastOperation methods...
2003-09-05 Brian GaekeMake CreateArgv part of lli rather than part of Executi...
2003-09-05 Brian GaekeRemove support for printing values from a module by...
2003-09-05 Brian GaekeRemove support for interactive (step finish next) instr...
2003-09-04 Brian GaekeRemove support for breakpoints (not used).
2003-09-04 Brian GaekeInterpreter cleanups:
2003-09-03 Brian GaekeExecutionEngine.cpp: Move execution engine creation...
2003-08-24 Chris LattnerTargets now configure themselves based on the source...
2003-08-21 John CriswellThe JIT now passes the environment pointer to the main...
2003-08-13 Brian GaekeDeconstify parameter to getPointerToFunction().
2003-05-14 Chris LattnerAdd support for atexit function, remove support for...
2003-05-10 Chris Lattnerswitch main LLI core execution to use an InstVisitor...
2003-05-10 Chris LattnerFix testcase: SingleSource/UnitTests/2003-05-02-Dependa...
2003-05-08 Chris LattnerA large number of simple changes:
2003-05-08 Chris LattnerAdd support for recording arguments passed through...
2002-12-23 Chris LattnerSubstantial changes to refactor LLI to incorporate...
2002-11-07 Chris LattnerMake command line arguments setup be endian correct!!
2002-10-15 Chris Lattner - Fix LLI so that it simulates the endianness of...
2002-10-02 Chris LattnerCleanup #includes, expose module
2002-06-25 Chris LattnerMEGAPATCH checkin.
2002-04-07 Chris LattnerChange references to the Method class to be references...
2002-02-19 Chris LattnerKeep track of memory allocated by alloca so that it...
2002-02-12 Chris LattnerMethod.h no longer includes BasicBlock.h
2002-01-20 Chris LattnerChanges to build successfully with GCC 3.02
2001-11-26 Chris LattnerMove DataTypes.h from llvm/Support to just Support
2001-11-12 Chris LattnerHack a structure profiling option together
2001-11-07 Chris Lattner* Switch to operation on pointers with PointerTy more...
2001-11-07 Chris Lattner*Print Stack traces better.
2001-11-07 Chris Lattner* Use cached writer to speed up printing and get symbol...
2001-10-30 Chris LattnercallExternalMethod now returns the return value of...
2001-10-27 Chris LattnerImplement a -trace command line option and a trace...
2001-10-27 Chris Lattner* Make pointer values work better by treating them...
2001-10-27 Chris LattnerProvide argv for commands
2001-10-27 Chris Lattner* Implement exit() builtin function
2001-10-18 Chris LattnerEnhancements to pass argc & argv to main if required
2001-10-15 Chris LattnerImplement ulong & long support
2001-10-15 Chris LattnerImplement global variables. Struct and Pointer initial...
2001-09-10 Chris LattnerGenericize support for calling functions a bit
2001-08-27 Chris LattnerLots of new functionality
2001-08-23 Chris LattnerInitial checkin of interpreter