XFAIL vg_leak the new test as the rest.
[oota-llvm.git] / lib / ExecutionEngine /
2010-12-04 Benjamin KramerRemove unneeded zero arrays.
2010-11-29 Michael J. SpencerMerge System into Support.
2010-11-28 Jay FoadPR5207: change APInt::doubleToBits() and APInt::floatTo...
2010-11-18 Anton KorobeynikovMove getInitialFrameState() to TargetFrameInfo
2010-11-17 Daniel DunbarMCJIT: Stub out MCJIT implementation, still doesn't...
2010-11-17 Daniel Dunbarlli: Add stub -use-mcjit option, which doesn't currentl...
2010-11-13 Daniel DunbarJIT: More nitty style tweakage, aka territory marking.
2010-11-13 Daniel DunbarFix some more 80-col violas.
2010-11-13 Daniel DunbarFix 80-col violation / non-sensicalness.
2010-10-23 Chandler CarruthMove the remaining attribute macros to systematic names...
2010-10-21 Duncan SandsFix the cleanup process of exception information in...
2010-09-13 Michael J. SpencerRevert "CMake: Get rid of LLVMLibDeps.cmake and export...
2010-09-10 Michael J. SpencerCMake: Get rid of LLVMLibDeps.cmake and export the...
2010-08-30 NAKAMURA TakumiFix a comment.
2010-08-30 NAKAMURA TakumiEE/JIT: Do not invoke parent's ctors/dtors from main...
2010-08-23 Chris Lattnerremove some dead code.
2010-08-17 Nick LewyckyWhen creating a JIT, try to load the program so that...
2010-08-09 Nick LewyckyStop the JIT from refusing to work just because the...
2010-07-26 Bob WilsonDon't call __register_frame from the JIT on systems...
2010-07-22 Chris Lattnerremove the dwarf sizing stuff which is now dead, it was
2010-07-22 Chris Lattnerremove the JIT "NeedsExactSize" feature and supporting...
2010-07-19 Duncan SandsFix indentation.
2010-07-19 Duncan SandsExpose JIT::recompileAndRelinkFunction for use through...
2010-07-16 Eli FriedmanGet rid of a bunch of duplicated ELF enum values.
2010-07-12 Duncan SandsConvert some tab stops into spaces.
2010-07-11 Chris Lattnerfirst part of JIT support for address of labels, part...
2010-06-18 Dan GohmanHandle execution entrypoints with non-integer return...
2010-05-15 Chris Lattnerimprove portability to systems that don't have powf...
2010-05-02 Duncan SandsRemove the -enable-sjlj-eh option, which doesn't do...
2010-05-01 Dan GohmanFix an ancient FIXME.
2010-04-30 Jeffrey YasskinFix the OProfileJITEventListener build after r101844...
2010-04-18 Bill WendlingDon't rely upon the MCSymbol "isDefined" method to...
2010-04-18 Bill WendlingFormatting changes. No functionality change.
2010-04-17 Dan GohmanFix -Wcast-qual warnings.
2010-04-16 Bill WendlingThe JIT calls TidyLandingPads to tidy up the landing...
2010-04-15 Dan GohmanAdd const qualifiers to CodeGen's use of LLVM IR constr...
2010-04-14 Nicolas GeoffrayDon't use DILocation when processing a DebugLoc.
2010-04-08 Benjamin KramerUse twines to simplify calls to report_fatal_error...
2010-04-07 Chris Lattnerrename llvm::llvm_report_error -> llvm::report_fatal_error
2010-04-05 Jeffrey YasskinFix OProfileJITEventListener build for new DebugLoc.
2010-04-04 Nicolas GeoffrayCurFn is only used for relocations. Use EmissionDetails...
2010-04-02 Chris LattnerSwitch the code generator (except the JIT) onto the...
2010-03-30 Torok EdwinTypo noticed by Duncan.
2010-03-30 Torok EdwinDon't overwrite previous value, if it succeeded.
2010-03-30 Torok EdwinHonour addGlobalMapping() in the interpreter, if it...
2010-03-27 Jeffrey YasskinAvoid leaking the memory allocated for GlobalVariables...
2010-03-26 Jeffrey YasskinAvoid leaking argv and env arrays from lli.
2010-03-16 Jeffrey YasskinAvoid a memory leak in JITDebugRegisterer.
2010-03-14 Chris Lattnerfix these two get the mcsymbol operand instead of imm...
2010-03-14 Chris LattnerNow that DBG_LABEL is updated, we can finally make...
2010-03-14 Chris Lattnerchange EH related stuff (other than EH_LABEL) to use...
2010-03-11 Richard OsborneAdd a new jump table encoding to indicate jump tables...
2010-03-09 Chris Lattnerstrength reduce MMI::MappedLabel to MMI::isLabelDeleted,
2010-03-04 Jeffrey YasskinFix PR6360. It's easy for a stub's address to escape...
2010-03-04 Jeffrey YasskinFix PR5291, in which a SmallPtrSet iterator was held...
2010-03-04 Jeffrey YasskinMake sure JITResolvers don't leave any stubs behind...
2010-03-02 Erick TryzelaarAdd Module functions in place of module providers.
2010-02-16 Duncan SandsThere are two ways of checking for a given type, for...
2010-02-16 Bill WendlingApply patch from llvm.org/bugs/attachment.cgi?id=4136...
2010-02-15 Duncan SandsUniformize the names of type predicates: rather than...
2010-02-12 Jeffrey YasskinMake JIT::runFunction clean up the generated stub function.
2010-02-11 Jeffrey YasskinMake it possible to create multiple JIT instances at...
2010-02-10 Dan GohmanFix "the the" and similar typos.
2010-02-05 Jeffrey YasskinMove --march, --mcpu, and --mattr from JIT/TargetSelect...
2010-02-03 Jeffrey Yasskinr94686 changed all ModuleProvider parameters to Modules...
2010-01-28 Benjamin KramerReplace strcpy with memcpy when we have the length...
2010-01-27 Jeffrey YasskinKill ModuleProvider and ghost linkage by inverting...
2010-01-26 Chris LattnerAdd support for target-specific 32-bit custom-lowered
2010-01-26 Chris Lattnermake jit jump table emission be based on the EntryKind...
2010-01-25 Chris LattnerRearrange handling of jump tables. Highlights:
2010-01-24 Chris Lattnermake -fno-rtti the default unless a directory builds...
2010-01-22 Jeffrey YasskinMake OProfile support compile again after r93630 removed
2010-01-22 Chris LattnerStop building RTTI information for *most* llvm librarie...
2010-01-19 Devang PatelAvoid including DebugInfo.h in AsmPrinter.h
2010-01-16 Devang PatelReplace DebugLocTuple with DILocation.
2010-01-15 Jay FoadFix llvm.org/PR6028, an assertion failure when an Undef...
2010-01-09 Chris Lattner"In order to ease automatic bindings generation, it...
2010-01-05 Benjamin KramerMove remaining stuff to the isInteger predicate.
2010-01-05 Benjamin KramerConvert a ton of simple integer type equality tests...
2010-01-05 Benjamin KramerAvoid going through the LLVMContext for type equality...
2010-01-05 David GreeneThese should probably be errs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2009-12-28 Bill WendlingRemove dead store and simplify code.
2009-12-22 Jeffrey YasskinPartially revert r91626. Materializing extra functions...
2009-12-22 Jeffrey YasskinFix a crash in JIT::recompileAndRelinkFunction(). It...
2009-12-17 Jeffrey YasskinDon't codegen available_externally functions. Fixes...
2009-12-15 Jeffrey YasskinChange indirect-globals to use a dedicated allocIndirec...
2009-12-15 Chris LattnerRemove isPod() from DenseMapInfo, splitting it out...
2009-12-15 Eric ChristopherFormatting.
2009-12-13 Jeffrey YasskinReinstate r91208 to fix available_externally linkage...
2009-12-12 Jeffrey YasskinRevert r91208. Something on Linux prevents the JIT...
2009-12-12 Jeffrey YasskinFix available_externally linkage for globals. It's...
2009-12-10 Torok EdwinComparing std::string with NULL is a bad idea, so just...
2009-12-07 Jeffrey YasskinFix the OProfileJITEventListener for StringRef being...
2009-11-23 Jeffrey Yasskin* Move stub allocation inside the JITEmitter, instead...
next