summaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine
AgeCommit message (Expand)AuthorFilesLines
2010-11-29Merge System into Support.Michael J. Spencer4-4/+4
2010-11-17MCJIT: Stub out MCJIT implementation, still doesn't do anything useful.Daniel Dunbar1-0/+38
2010-11-17lli: Add stub -use-mcjit option, which doesn't currently do anything.Daniel Dunbar1-2/+20
2010-11-13JIT: More nitty style tweakage, aka territory marking.Daniel Dunbar1-56/+67
2010-11-13More style nittiness.Daniel Dunbar1-8/+2
2010-11-13Clean up some doxyments/style.Daniel Dunbar1-23/+27
2010-10-21Fix the cleanup process of exception information in JIT. Now JITDuncan Sands1-6/+17
2010-07-22remove the JIT "NeedsExactSize" feature and supporting logic.Chris Lattner1-8/+1
2010-07-12Convert some tab stops into spaces.Duncan Sands1-2/+2
2010-02-05Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp.Jeffrey Yasskin1-6/+34
2010-02-03r94686 changed all ModuleProvider parameters to Modules, which made theJeffrey Yasskin1-5/+0
2010-01-27Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin1-34/+21
2009-11-17Add ability to set code model within the execution engine buildersEric Christopher1-2/+14
2009-11-09Remove dlsym stubs, with Nate Begeman's permission.Jeffrey Yasskin2-21/+1
2009-10-29add interpreter support for indirect goto / blockaddress. The interpreterChris Lattner1-0/+6
2009-10-27Revert the API changes from r85295 to make it easier for people to buildJeffrey Yasskin1-3/+8
2009-10-27Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin1-7/+18
2009-10-27Automatically do the equivalent of freeMachineCodeForFunction(F) when F isJeffrey Yasskin2-5/+7
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth3-3/+3
2009-10-23Fix http://llvm.org/PR4822: allow module deletion after a function has beenJeffrey Yasskin1-26/+13
2009-10-21Delete the MacOSJITEventListener per echristo's request. It was disabled byJeffrey Yasskin1-2/+1
2009-10-20Move the Function*->allocated blocks map from the JITMemoryManager to theJeffrey Yasskin1-3/+11
2009-10-14Remove a bunch of unused arguments from functions, silencing aEric Christopher1-1/+1
2009-10-13Make the ExecutionEngine automatically remove global mappings on when theirJeffrey Yasskin1-21/+44
2009-10-09ExecutionEngine::clearGlobalMappingsFromModule failed to remove reverseJeffrey Yasskin1-0/+3
2009-08-12This void is implicit in C++.Dan Gohman1-2/+2
2009-08-07To catch bugs like the one fixed inJeffrey Yasskin1-4/+5
2009-07-23Re-committing r76828 with the JIT memory manager changes now that the buildReid Kleckner1-9/+60
2009-07-23Reverting r76825 and r76828, since they caused clang runtime errors and some ...Reid Kleckner1-60/+9
2009-07-23Make the JIT code emitter properly retry and ask for more memory when it runsReid Kleckner1-9/+60
2009-07-18Add EngineBuilder to ExecutionEngine in favor of the five optional argument E...Reid Kleckner1-4/+99
2009-07-16Add line numbers to OProfile. To do this, I added a processDebugLoc()Jeffrey Yasskin1-0/+15
2009-07-16Switch llc and createJIT to use simpler command line parsing for -march.Daniel Dunbar1-0/+3
2009-07-10Add a --with-oprofile flag to configure, which uses OProfile's agentJeffrey Yasskin1-0/+2
2009-07-08Add an option to allocate JITed global data separately from code. ByJeffrey Yasskin2-5/+26
2009-07-07Remove unused parameter.Bill Wendling1-2/+2
2009-06-25Add a JITEventListener interface that gets called back when a new function isJeffrey Yasskin2-4/+71
2009-06-24Fix the Ocaml bindings for the ExecutionEngine: with the change to buildBob Wilson2-8/+4
2009-06-11Remove unused parameter warnings.Bill Wendling1-1/+1
2009-06-04Use uint8_t and int32_t in {JIT,Machine}CodeEmitersBruno Cardoso Lopes1-14/+12
2009-06-03Revert 72650Bruno Cardoso Lopes1-12/+14
2009-05-30Use uint8_t and int32_t in {JIT,Machine}CodeEmitersBruno Cardoso Lopes1-14/+12
2009-05-18Allow the JIT ExecutionEngine to report details about the generated machine c...Argyrios Kyrtzidis1-0/+4
2009-04-29Instead of passing in an unsigned value for the optimization level, use an enum,Bill Wendling1-7/+8
2009-04-29The second part of the change from -fast to -O#. This changes the JIT to acceptBill Wendling1-3/+3
2009-04-25improve documentation around memory lifetimes, Chris Lattner1-5/+17
2009-02-18Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman2-0/+19
2009-01-23Add support for deleting a module provider from a JIT in such a way that it d...Nate Begeman1-1/+7
2009-01-05Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman1-1/+0
2008-12-09DisableGVCompilation should not abort on internal GlobalValue's.Evan Cheng1-2/+3