aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ExecutionEngine
Commit message (Expand)AuthorAgeFilesLines
* ExecutionEngine: push TargetMachine creation into clients (v2)Dylan Noblesmith2011-05-131-8/+2
* ExecutionEngine: fix JIT/MCJIT selectTarget() duplication (v2)Dylan Noblesmith2011-05-131-0/+8
* Revert ExecutionEngine patches, they either failed to build or broke unit tests.Jakob Stoklund Olesen2011-05-071-10/+8
* ExecutionEngine: push TargetMachine creation into clientsDylan Noblesmith2011-05-061-8/+2
* ExecutionEngine: fix JIT/MCJIT selectTarget() duplicationDylan Noblesmith2011-05-061-0/+8
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-151-1/+1
* MCJIT lazy relocation resolution and symbol address re-assignment.Jim Grosbach2011-04-121-1/+5
* Tidy up a bit now that we're using the MemoryManager interface.Jim Grosbach2011-04-121-3/+0
* Refactor MCJIT 32-bit section loading.Jim Grosbach2011-04-081-1/+4
* EngineBuilder setter method for UseMCJIT was missing return value.Jim Grosbach2011-04-061-1/+2
* RuntimeDyld should use the memory manager API.Jim Grosbach2011-04-061-3/+3
* Make the virtual destructor out-of-line so we have a key function.Chandler Carruth2011-04-051-1/+1
* Provide an empty virtual destructor to go with the virtual methods inChandler Carruth2011-04-051-0/+1
* Layer the memory manager between the JIT and the runtime Dyld.Jim Grosbach2011-04-041-3/+26
* Tidy up. Whitespace and 80-columns.Jim Grosbach2011-03-302-26/+28
* Instantiate a JITMemoryManager for MCJIT DyldJim Grosbach2011-03-291-1/+2
* Propogate the error message, not just the error state.Jim Grosbach2011-03-221-0/+1
* Library-ize the dyld components of llvm-rtdyld.Jim Grosbach2011-03-211-0/+45
* Support unregistering exception frames of functions when they are removed.Eric Christopher2011-03-041-3/+17
* Merge System into Support.Michael J. Spencer2010-11-294-4/+4
* MCJIT: Stub out MCJIT implementation, still doesn't do anything useful.Daniel Dunbar2010-11-171-0/+38
* lli: Add stub -use-mcjit option, which doesn't currently do anything.Daniel Dunbar2010-11-171-2/+20
* JIT: More nitty style tweakage, aka territory marking.Daniel Dunbar2010-11-131-56/+67
* More style nittiness.Daniel Dunbar2010-11-131-8/+2
* Clean up some doxyments/style.Daniel Dunbar2010-11-131-23/+27
* Fix the cleanup process of exception information in JIT. Now JITDuncan Sands2010-10-211-6/+17
* remove the JIT "NeedsExactSize" feature and supporting logic.Chris Lattner2010-07-221-8/+1
* Convert some tab stops into spaces.Duncan Sands2010-07-121-2/+2
* Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp.Jeffrey Yasskin2010-02-051-6/+34
* r94686 changed all ModuleProvider parameters to Modules, which made theJeffrey Yasskin2010-02-031-5/+0
* Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin2010-01-271-34/+21
* Add ability to set code model within the execution engine buildersEric Christopher2009-11-171-2/+14
* Remove dlsym stubs, with Nate Begeman's permission.Jeffrey Yasskin2009-11-092-21/+1
* add interpreter support for indirect goto / blockaddress. The interpreterChris Lattner2009-10-291-0/+6
* Revert the API changes from r85295 to make it easier for people to buildJeffrey Yasskin2009-10-271-3/+8
* Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin2009-10-271-7/+18
* Automatically do the equivalent of freeMachineCodeForFunction(F) when F isJeffrey Yasskin2009-10-272-5/+7
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-263-3/+3
* Fix http://llvm.org/PR4822: allow module deletion after a function has beenJeffrey Yasskin2009-10-231-26/+13
* Delete the MacOSJITEventListener per echristo's request. It was disabled byJeffrey Yasskin2009-10-211-2/+1
* Move the Function*->allocated blocks map from the JITMemoryManager to theJeffrey Yasskin2009-10-201-3/+11
* Remove a bunch of unused arguments from functions, silencing aEric Christopher2009-10-141-1/+1
* Make the ExecutionEngine automatically remove global mappings on when theirJeffrey Yasskin2009-10-131-21/+44
* ExecutionEngine::clearGlobalMappingsFromModule failed to remove reverseJeffrey Yasskin2009-10-091-0/+3
* This void is implicit in C++.Dan Gohman2009-08-121-2/+2
* To catch bugs like the one fixed inJeffrey Yasskin2009-08-071-4/+5
* Re-committing r76828 with the JIT memory manager changes now that the buildReid Kleckner2009-07-231-9/+60
* Reverting r76825 and r76828, since they caused clang runtime errors and some ...Reid Kleckner2009-07-231-60/+9
* Make the JIT code emitter properly retry and ask for more memory when it runsReid Kleckner2009-07-231-9/+60
* Add EngineBuilder to ExecutionEngine in favor of the five optional argument E...Reid Kleckner2009-07-181-4/+99