Added InstrSchedClass to each of the PowerPC Instructions.
[oota-llvm.git] / lib / ExecutionEngine /
2005-09-02 Jim LaskeyAdd help support for -mcpu and -mattr.
2005-09-01 Jim Laskey1. Use SubtargetFeatures in llc/lli.
2005-08-01 Andrew Lenharthone cannot allocate a global, until one is done initial...
2005-07-30 Jeff CohenKeep tabs and trailing spaces out.
2005-07-29 Andrew Lenharthsupport near allocations for the JIT
2005-07-28 Andrew LenharthLike constants, globals on some platforms are GOT relat...
2005-07-27 Jeff CohenEliminate all remaining tabs and trailing spaces.
2005-07-25 Chris Lattnerfix a warning on 32-bit systems
2005-07-22 Andrew Lenharththe JIT memory manager will construct a GOT if you...
2005-07-20 Chris Lattnercount the number of relocations performed.
2005-07-12 Reid SpencerFor PR540:
2005-07-11 Chris Lattnerfix long lines
2005-06-18 Andrew Lenharthcore changes for varargs
2005-05-12 Chris LattnerFix a really horrible problem that causes the JIT to...
2005-05-06 Chris LattnerMake the stub functions be tail calls
2005-04-22 Misha BrukmanConvert tabs to spaces
2005-04-21 Misha BrukmanRemove trailing whitespace
2005-04-21 Misha Brukman* Remove trailing whitespace
2005-04-21 Misha BrukmanRemove trailing whitespace
2005-04-18 Chris LattnerAdd support for targets that require stubs for external...
2005-03-17 Chris LattnerFix the missing symbols problem Bill was hitting. ...
2005-03-15 Chris LattnerThis mega patch converts us from using Function::a...
2005-02-27 Chris LattnerUse const iterators where possible. Patch by Evan...
2005-02-20 Chris LattnerFix problems running the HowToUseJIT on powerpc, and...
2005-02-02 Chris LattnerThis is no longer needed. Global variables with undef...
2005-01-21 Chris LattnerIf the interpreter tries to execute an external functio...
2005-01-16 Chris LattnerImprove compatiblity with HPUX on Itanium, patch by...
2005-01-10 Chris LattnerRework constant pool handling so that function constant...
2005-01-08 Chris LattnerSilence warnings
2005-01-08 Chris LattnerSilence VS warnings.
2005-01-08 Chris LattnerSilence VS warnings.
2005-01-08 Chris LattnerSilence VS warnings
2004-12-20 Reid SpencerBe double sure about including sys/stat.h by wrapping...
2004-12-17 Reid SpencerMove the #include of sys/stat.h inside the linux "hack...
2004-12-17 Reid SpencerOnly #include sys/stat.h if we're on linux where we...
2004-12-13 Reid SpencerGet rid of some leaks found by VC leak detector.
2004-12-05 Chris LattnerProperly implement a fix for PR475
2004-12-05 Chris LattnerRevert this patch, it broke a ton of programs.
2004-12-05 Alkis EvlogimenosFix PR475.
2004-12-03 Chris LattnerRemove darwin specific majik
2004-12-03 Chris LattnerDo not look here for elegance.
2004-12-01 Chris LattnerRemove unneeded cast.
2004-11-30 Chris LattnerFix the JIT when being used from llvm-db
2004-11-29 Reid SpencerUse System/DynamicLibrary instead of Support/DynamicLinker
2004-11-22 Chris LattnerRename Emitter.cpp -> JITEmitter.cpp
2004-11-22 Chris LattnerFix the FIXME, nuke the JIT specific forceCompilationOf...
2004-11-22 Chris LattnerThese methods are obsolete
2004-11-22 Chris LattnerSupport targets that require stubs for external functio...
2004-11-21 Chris LattnerClean up DEBUG output
2004-11-21 Chris LattnerAllow targets to avoid emitting a stub for EVERY lazily...
2004-11-20 Chris LattnerImplement relocation support by adding a target indepen...
2004-11-20 Chris LattnerThis method does not exist any longer.
2004-11-20 Chris LattnerAdd getCurrentPCOffset() and addRelocation() methods.
2004-11-20 Chris LattnerAdd accessor
2004-11-19 Chris LattnerMatch change in MachineCodeEmitter prototype.
2004-11-19 Chris LattnerThis is a horrible hack to work around libstdc++ bugs :(
2004-11-15 Chris LattnerNow that we have ghost linkage, we can force resolution...
2004-11-15 Chris LattnerThere is no reason to try to materialize the function...
2004-11-07 Misha BrukmanImplement ExecutionEngine::freeMachineCodeForFunction()
2004-10-29 Brian GaekeWhen emitting debug msgs for function stubs, don't...
2004-10-28 Reid SpencerFix library name.
2004-10-27 Reid SpencerChange Library Names Not To Conflict With Others When...
2004-10-27 Reid SpencerChanges to support rand48 tests
2004-10-26 Chris LattnerFix the interpreter crash that Michael McCracken found
2004-10-22 Misha BrukmanUse cleaner quoting and eliminate blank space
2004-10-22 Reid SpencerWe won't use automake
2004-10-18 Reid SpencerInitial automake generated Makefile template
2004-10-16 Chris LattnerAdd support for unreachable
2004-10-16 Chris LattnerAdd support for undef
2004-10-13 Reid SpencerUpdate to reflect changes in Makefile rules.
2004-10-10 Reid SpencerInitial version of automake Makefile.am file.
2004-09-15 Reid SpencerConvert code to compile with vc7.1.
2004-09-13 Reid SpencerSimplify the sys::Memory interface per Chris' request.
2004-09-11 Reid SpencerConvert the Emitter to use the lib/System "Memory"...
2004-09-01 Reid SpencerChanges For Bug 352
2004-08-16 Chris LattnerAdd a special case for argc,argv
2004-08-16 Chris LattnerDon't pass too many arguments into runFunction
2004-08-16 Chris LattnerFinally, add support for calling arbitrary non-varargs...
2004-08-15 Chris LattnerHandle all nullary functions, of any valid return type.
2004-08-15 Chris LattnerFine, go all of the way and check that the argument...
2004-08-15 Chris LattnerThese only really work if returning int or void
2004-08-15 Chris LattnerHandle zero arg function case
2004-08-15 Chris LattnerSimplify code a bit, print error message always instead...
2004-08-04 Alkis EvlogimenosStop using getValues().
2004-07-18 Reid Spencerbug 122:
2004-07-15 Chris LattnerFixes for PR341
2004-07-15 Chris LattnerFixes for PR341
2004-07-11 Chris LattnerThe cleanup is done. Update comment.
2004-07-11 Chris LattnerMake add constantexprs work with all types, fixing...
2004-07-11 Chris LattnerGoodbye macro hell, hello nice clean simple extensible...
2004-07-07 Reid SpencerMake error message consistent with the rest of LLVM...
2004-07-07 Reid SpencerFix for bug 391.
2004-07-04 Reid SpencerAdd #include <iostream> since Value.h does not #include...
2004-06-20 Chris LattnerMove the IntrinsicLowering header into the CodeGen...
2004-06-20 Chris LattnerMove the IntrinsicLowering header into the CodeGen...
2004-06-17 Chris LattnerRename Type::PrimitiveID to TypeId and ::getPrimitiveID...
2004-06-16 Brian GaekeAdd int ferror(FILE *)
2004-06-01 Chris LattnerImplement PR315: abort, don't warn, when missing extern...
2004-05-28 Chris LattnerUse the SystemUtils.h file to do our dirty work.
2004-05-27 Chris LattnerRemove long unused #includes
next