aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine/ExecutionEngine.h
AgeCommit message (Expand)Author
2011-05-13ExecutionEngine: push TargetMachine creation into clients (v2)Dylan Noblesmith
2011-05-13ExecutionEngine: fix JIT/MCJIT selectTarget() duplication (v2)Dylan Noblesmith
2011-05-07Revert ExecutionEngine patches, they either failed to build or broke unit tests.Jakob Stoklund Olesen
2011-05-06ExecutionEngine: push TargetMachine creation into clientsDylan Noblesmith
2011-05-06ExecutionEngine: fix JIT/MCJIT selectTarget() duplicationDylan Noblesmith
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner
2011-04-06EngineBuilder setter method for UseMCJIT was missing return value.Jim Grosbach
2011-03-30Tidy up. Whitespace and 80-columns.Jim Grosbach
2011-03-04Support unregistering exception frames of functions when they are removed.Eric Christopher
2010-11-29Merge System into Support.Michael J. Spencer
2010-11-17lli: Add stub -use-mcjit option, which doesn't currently do anything.Daniel Dunbar
2010-11-13JIT: More nitty style tweakage, aka territory marking.Daniel Dunbar
2010-10-21Fix the cleanup process of exception information in JIT. Now JITDuncan Sands
2010-07-12Convert some tab stops into spaces.Duncan Sands
2010-02-05Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp.Jeffrey Yasskin
2010-02-03r94686 changed all ModuleProvider parameters to Modules, which made theJeffrey Yasskin
2010-01-27Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin
2009-11-17Add ability to set code model within the execution engine buildersEric Christopher
2009-11-09Remove dlsym stubs, with Nate Begeman's permission.Jeffrey Yasskin
2009-10-29add interpreter support for indirect goto / blockaddress. The interpreterChris Lattner
2009-10-27Revert the API changes from r85295 to make it easier for people to buildJeffrey Yasskin
2009-10-27Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin
2009-10-27Automatically do the equivalent of freeMachineCodeForFunction(F) when F isJeffrey Yasskin
2009-10-23Fix http://llvm.org/PR4822: allow module deletion after a function has beenJeffrey Yasskin
2009-10-13Make the ExecutionEngine automatically remove global mappings on when theirJeffrey Yasskin
2009-10-09ExecutionEngine::clearGlobalMappingsFromModule failed to remove reverseJeffrey Yasskin
2009-08-07To catch bugs like the one fixed inJeffrey Yasskin
2009-07-18Add EngineBuilder to ExecutionEngine in favor of the five optional argument E...Reid Kleckner
2009-07-16Switch llc and createJIT to use simpler command line parsing for -march.Daniel Dunbar
2009-07-08Add an option to allocate JITed global data separately from code. ByJeffrey Yasskin
2009-07-07Remove unused parameter.Bill Wendling
2009-06-25Add a JITEventListener interface that gets called back when a new function isJeffrey Yasskin
2009-06-11Remove unused parameter warnings.Bill Wendling
2009-05-18Allow the JIT ExecutionEngine to report details about the generated machine c...Argyrios Kyrtzidis
2009-04-29Instead of passing in an unsigned value for the optimization level, use an enum,Bill Wendling
2009-04-29The second part of the change from -fast to -O#. This changes the JIT to acceptBill Wendling
2009-04-25improve documentation around memory lifetimes, Chris Lattner
2009-02-18Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman
2009-01-23Add support for deleting a module provider from a JIT in such a way that it d...Nate Begeman
2009-01-05Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman
2008-12-09DisableGVCompilation should not abort on internal GlobalValue's.Evan Cheng
2008-10-25Support for allocation of TLS variables in the JIT. Allocation of a globalNicolas Geoffray
2008-09-30Add runStaticConstructorsDestructors which runs ctors / dtors of a single mod...Evan Cheng
2008-09-24Add DisableGVCompilation which forces the JIT to assert when it tries to allo...Evan Cheng
2008-08-08Add new parameter Fast to createJIT to enable the fast codegen path.Evan Cheng
2008-06-16Add a new flag that disables symbol lookup with dlsym when set. This allowsChris Lattner
2008-05-21Fix a couple issues with the JIT and multiple modules:Nate Begeman
2008-05-19Remove warnings about unused parameters and shadowed variables.Bill Wendling
2008-04-04Make ExecutionEngine::updateGlobalMapping return the old mapping.Chris Lattner
2008-02-13Enable exception handling int JITNicolas Geoffray