Add mfasr and mtasr
[oota-llvm.git] / lib / ExecutionEngine / JIT / JITEmitter.cpp
2014-07-17 Alp TokerDrop the udis86 wrapper from llvm::sys
2014-06-20 Zachary TurnerRevert "Replace Execution Engine's mutex with std:...
2014-06-18 Zachary TurnerReplace Execution Engine's mutex with std::recursive_mutex.
2014-06-17 Zachary TurnerRemove more occurrences of the unused-mutex-parameter...
2014-06-16 Zachary TurnerCleanup more unreferenced MutexGuard parameters on...
2014-06-04 Rafael EspindolaAdd a Constant version of stripPointerCasts.
2014-06-03 Rafael EspindolaAllow alias to point to an arbitrary ConstantExpr.
2014-05-16 Rafael EspindolaDelete getAliasedGlobal.
2014-04-24 Craig Topper[C++] Use 'nullptr'.
2014-04-22 Chandler Carruth[Modules] Fix potential ODR violations by sinking the...
2014-03-27 Rafael EspindolaPrevent alias from pointing to weak aliases.
2014-03-26 Rafael EspindolaRevert "Prevent alias from pointing to weak aliases."
2014-03-26 Rafael EspindolaPrevent alias from pointing to weak aliases.
2014-03-08 Craig Topper[C++11] Add 'override' keyword to virtual methods that...
2014-03-06 Ahmed CharlesReplace OwningPtr<T> with std::unique_ptr<T>.
2014-03-06 Chandler Carruth[Layering] Move DebugInfo.h into the IR library where...
2014-03-04 Chandler Carruth[Modules] Move ValueMap to the IR library. While this...
2014-03-04 Chandler Carruth[Modules] Move ValueHandle into the IR library where...
2013-05-10 Rafael EspindolaRemove dead code.
2013-05-07 Rafael EspindolaRemove exception handling support from the old JIT.
2013-01-11 Eli BenderskyFix bug in exception table allocation (PR13678)
2013-01-02 Chandler CarruthMove all of the header files which are involved in...
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-10-11 Sean SilvaRemove buggy classof().
2012-10-08 Micah VillmowMove TargetData to DataLayout.
2012-08-22 Craig TopperAdd a getName function to MachineFunction. Use it in...
2012-06-28 Bill WendlingMove lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo...
2012-06-16 Benjamin KramerDisable the right instance of TheJIT, this one is only...
2012-06-16 Benjamin KramerGuard private fields that are unused in Release builds...
2012-02-07 Craig TopperConvert assert(0) to llvm_unreachable
2012-02-03 Akira HatanakaAdd a new MachineJumpTableInfo entry type, EK_GPRel64Bl...
2012-01-05 Rafael EspindolaRemove the old ELF writer.
2011-12-02 Nick LewyckyMove global variables in TargetMachine into new TargetO...
2011-08-12 Duncan SandsSilence a bunch (but not all) "variable written but...
2011-07-18 Chris Lattnerland David Blaikie's patch to de-constify Type, with...
2011-04-13 Jay FoadLike the coding standards say, do not use "using namesp...
2011-03-16 Jim GrosbachTidy up. Whitespace and 80 column.
2011-03-04 Eric ChristopherSupport unregistering exception frames of functions...
2010-11-29 Michael J. SpencerMerge System into Support.
2010-08-23 Chris Lattnerremove some dead code.
2010-07-22 Chris Lattnerremove the JIT "NeedsExactSize" feature and supporting...
2010-07-11 Chris Lattnerfirst part of JIT support for address of labels, part...
2010-05-02 Duncan SandsRemove the -enable-sjlj-eh option, which doesn't do...
2010-04-18 Bill WendlingFormatting changes. No functionality change.
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-07 Chris Lattnerrename llvm::llvm_report_error -> llvm::report_fatal_error
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-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-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-02-11 Jeffrey YasskinMake it possible to create multiple JIT instances at...
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-19 Devang PatelAvoid including DebugInfo.h in AsmPrinter.h
2010-01-16 Devang PatelReplace DebugLocTuple with DILocation.
2010-01-05 David GreeneChange errs() to dbgs().
2009-12-22 Jeffrey YasskinPartially revert r91626. Materializing extra functions...
2009-12-17 Jeffrey YasskinDon't codegen available_externally functions. Fixes...
2009-12-15 Jeffrey YasskinChange indirect-globals to use a dedicated allocIndirec...
2009-11-23 Jeffrey Yasskin* Move stub allocation inside the JITEmitter, instead...
2009-11-23 Jeffrey YasskinAllow more than one stub to be being generated at the...
2009-11-19 Jeffrey YasskinTry to fix JITTest.FarCallToKnownFunction on ARM and...
2009-11-16 Jeffrey YasskinMake X86-64 in the Large model always emit 64-bit calls.
2009-11-12 Eric ChristopherUse stubs when we have them, otherwise use code we...
2009-11-09 Jeffrey YasskinRemove dlsym stubs, with Nate Begeman's permission.
2009-11-07 Jeffrey YasskinMake the need-stub variables accurate and consistent...
2009-11-07 Jeffrey YasskinGive the JITResolver a direct pointer to its JITEmitter...
2009-10-27 Jeffrey YasskinChange the JIT to compile eagerly by default as agreed in
2009-10-27 Jeffrey YasskinAutomatically do the equivalent of freeMachineCodeForFu...
2009-10-23 Jeffrey YasskinFix llvm.org/PR4822: allow module deletion after a...
2009-10-20 Jeffrey YasskinMove the Function*->allocated blocks map from the JITMe...
2009-10-19 Jeffrey YasskinClean up the JITResolver stub/callsite<->function maps.
2009-10-13 Devang Patels/DebugLoc.CompileUnit/DebugLoc.Scope/g
2009-10-13 Jeffrey YasskinKeep track of stubs that are created. This fixes PR5162...
2009-10-06 Devang PatelUpdate processDebugLoc() to handle requests to process...
2009-10-06 Jeffrey YasskinFix llvm.org/PR5116 by rolling back r60822. This passe...
2009-09-20 Reid KlecknerImplement the JIT side of the GDB JIT debugging interfa...
2009-08-25 Xerxes RanbyFix PR4772 ARM JIT.GlobalInFuction unittest by explicit...
2009-08-23 Chris Lattnerremove a few DOUTs here and there.
2009-08-12 Dan GohmanThis void is implicit in C++.
2009-08-11 Jim GrosbachSjLj based exception handling unwinding support. This...
2009-07-25 Daniel DunbarMore migration to raw_ostream, the water has dried...
2009-07-23 Reid KlecknerRe-committing r76828 with the JIT memory manager change...
2009-07-23 Reid KlecknerReverting r76825 and r76828, since they caused clang...
2009-07-23 Reid KlecknerMake the JIT code emitter properly retry and ask for...
2009-07-21 Daniel DunbarSimplify / normalize some uses of Value::getName.
2009-07-16 Jeffrey YasskinAdd line numbers to OProfile. To do this, I added a...
2009-07-11 Torok EdwinConvert more assert(0)+abort() -> LLVM_UNREACHABLE,
2009-07-08 Jeffrey YasskinAdd an option to allocate JITed global data separately...
2009-06-25 Jeffrey YasskinAdd a JITEventListener interface that gets called back...
2009-06-04 Dan GohmanSplit the Add, Sub, and Mul instruction opcodes into...
2009-06-04 Bruno Cardoso LopesUse uint8_t and int32_t in {JIT,Machine}CodeEmiters
2009-06-03 Bruno Cardoso LopesRevert 72650
next