Added targets that force users to re-run autoconf when the script has been
[oota-llvm.git] / lib / ExecutionEngine /
2003-10-06 Chris LattnerActually _PASS IN_ NO_RESERVE if we have it.
2003-09-22 Chris LattnerSquelch warning
2003-09-17 Chris LattnerChange FunctionInfo from being an annotation put on...
2003-09-10 Misha Brukman* Move include files from middle of file to the top...
2003-09-10 Misha BrukmanFix warning when _POSIX_MAPPED_FILES is already defined...
2003-09-08 Chris LattnerRemove a bunch of unneeded stuph
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 printOperandInfo(), and simplify run().
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 GaekeMove EE dtor where it belongs
2003-09-04 Brian GaekeInterpreter cleanups:
2003-09-03 Brian GaekeExecutionEngine.cpp: Move execution engine creation...
2003-09-01 Chris LattnerPreselection is now integrated into the Sparc target...
2003-09-01 Chris LattnerSparc peephole optimizer moved out of post-opts library...
2003-08-24 Chris LattnerConsult the target data, not the module, about how...
2003-08-24 Chris LattnerTargets now configure themselves based on the source...
2003-08-24 Chris LattnerAdd preliminary support for "any" pointersize/endiannes...
2003-08-21 Chris LattnerMinor cleanups: wrap at 80 lines. Convert file comment...
2003-08-21 John CriswellThe JIT now passes the environment pointer to the main...
2003-08-18 Chris Lattnerno really, implement it!
2003-08-18 Chris LattnerAdd support for casting any pointer to any integer...
2003-08-18 Misha BrukmanSpell `necessary' correctly.
2003-08-15 Chris Lattnerrename selection library to selectiondag
2003-08-14 Chris LattnerImplement a _REAL_ memory manager for the code generate...
2003-08-13 Brian GaekeDeconstify parameter to getPointerToFunction().
2003-08-13 Brian GaekeDeconstify parameter to getPointerToFunction().
2003-08-13 Brian GaekeDeconstify parameter to getPointerToFunction().
2003-08-13 Brian GaekeIn ExecutionEngine::getPointerToGlobal(), throw away...
2003-08-13 Chris LattnerIncorporate mapping library into the sparc library
2003-08-11 Chris LattnerInclude the new selection library for the X86 target
2003-08-05 Chris LattnerSpecify DEBUG_TYPE's for the JIT debug messages
2003-08-01 Chris LattnerDEBUG got moved to Debug.h
2003-07-29 Misha Brukman* Stop hard-coding a value for beginning of emitted...
2003-07-28 Misha BrukmanAdd rationale for the MAP_ANONYMOUS vs. MAP_ANON flags.
2003-07-28 Misha BrukmanAdd ability for external C code to get pointers to...
2003-07-28 Misha BrukmanClean up code dealing with RTLD_SELF differences on...
2003-07-28 Misha BrukmanFix reference to architecture.
2003-07-28 Misha BrukmanAdd in support to load shared objects (-load is provide...
2003-07-23 Chris LattnerFix space
2003-07-23 Chris LattnerRemove redundant const qualifier
2003-07-18 Misha BrukmanCleaned up the code which chooses the appropriate value...
2003-07-15 Misha BrukmanClean up my last checkin: code is easier to read and...
2003-07-15 Misha BrukmanOn Sparc/Solaris, the special handle RTLD_SELF is used...
2003-07-02 Misha Brukman* If compiling on X86 or Sparc, automagically enable...
2003-06-30 John CriswellMerged in autoconf branch. This provides configuration...
2003-06-30 Brian GaekeGet rid of the duplicate '0x' in debug mode.
2003-06-23 Brian GaekeInclude <cmath> instead of <math.h>
2003-06-17 Brian GaekeAdd #ifdef hack for MAP_ANONYMOUS being spelled MAP_ANO...
2003-06-17 Brian GaekeUse $(PLATFORMLIBDL) to selectively bring in -ldl only...
2003-06-17 Brian GaekeUse std::isnan instead of isnan. Brought back to you...
2003-06-17 Chris LattnerLife is too short. Link in too much stuff on Linux...
2003-06-17 Chris LattnerThe never-ending odyssey trying to get sparc to link
2003-06-17 Chris LattnerMake sure to get the value of ARCH before we use it
2003-06-17 Chris LattnerDo not link in the Sparc JIT when building on X86....
2003-06-17 Chris LattnerApparently "sparc" is a macro on sparcs. Ugh. :)
2003-06-17 Chris LattnerWhoops, didn't mean to check that in :(
2003-06-17 Chris LattnerUse more structured command line option processing
2003-06-17 Chris Lattner#ifdef out code that only applies when the HOSTARCH...
2003-06-08 Chris LattnerAdd #include for older GCC's
2003-06-06 Misha Brukman::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: HACK...
2003-06-06 Misha BrukmanOutput function address as hex.
2003-06-06 Misha BrukmanRemoved debug print statement.
2003-06-04 Misha Brukman* Institute a hack for the Sparc call to mmap() to...
2003-06-04 Misha BrukmanSparc's dlsym() requires the special operand RTLD_SELF...
2003-06-02 Misha Brukman* Removed SparcEmitter.cpp; rolled into lib/Target...
2003-06-02 Brian GaekeThe flag modifications weren't picking up the old value...
2003-06-02 Chris LattnerRemove obsolete code
2003-06-01 Chris LattnerMove target specific code to target files. The new...
2003-06-01 Brian GaekeFix induction variable name clash in for loops, in...
2003-05-31 Misha BrukmanFixed rewriting of branches -- they now work forward...
2003-05-30 Misha BrukmanSince malloc is no longer used, no need to free() memory.
2003-05-30 Brian GaekeFix call to mmap, so that it can be used on sparc.
2003-05-28 Misha Brukmanmmap() seems to be failing on Sparc, so just use malloc...
2003-05-27 Misha BrukmanLink in Sparc libs for the JIT, even on X86 to be able...
2003-05-27 Misha BrukmanAllow for specification of which JIT to run on the...
2003-05-14 Chris LattnerFix typeos
2003-05-14 Chris LattnerAdd support for more constant expressions
2003-05-14 Chris LattnerAdd support for atexit function, remove support for...
2003-05-14 Chris LattnerAdd support for atexit handlers to the JIT, fixing...
2003-05-14 Chris LattnerFix compilation problems with previous checking *blush*
2003-05-14 Chris LattnerAdd a framework for intercepting system calls
2003-05-13 Chris LattnerClean up cast
2003-05-12 Chris LattnerMake sure that globals are emitted AFTER the passmanage...
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-09 Chris LattnerAdd support for function stubs, which allow calling...
2003-05-08 Chris LattnerMinor speedup by avoiding callbacks to functions alread...
2003-05-08 Chris LattnerImprove efficiency of JIT by having it use direct funct...
2003-05-08 Chris Lattnerassert early instead of late for unimplemented feature
2003-05-08 Chris LattnerImplement varargs support for LLI!
2003-05-08 Chris LattnerAdd a pointersize/endianness safe load routine to match...
2003-05-08 Chris LattnerA large number of simple changes:
2003-05-08 Chris LattnerAdd support for recording arguments passed through...
2003-05-07 Chris LattnerFix bug: Jello/2003-05-07-ArgumentTest.llx
2003-04-26 Chris LattnerRemove two fields from TargetData which are target...
next