aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ExecutionEngine/ExecutionEngine.h
Commit message (Expand)AuthorAgeFilesLines
...
* Fix the cleanup process of exception information in JIT. Now JITDuncan Sands2010-10-211-6/+17
* 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-091-10/+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-271-3/+2
* Fix http://llvm.org/PR4822: allow module deletion after a function has beenJeffrey Yasskin2009-10-231-26/+13
* 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
* To catch bugs like the one fixed inJeffrey Yasskin2009-08-071-4/+5
* Add EngineBuilder to ExecutionEngine in favor of the five optional argument E...Reid Kleckner2009-07-181-4/+99
* Switch llc and createJIT to use simpler command line parsing for -march.Daniel Dunbar2009-07-161-0/+3
* Add an option to allocate JITed global data separately from code. ByJeffrey Yasskin2009-07-081-4/+16
* Remove unused parameter.Bill Wendling2009-07-071-2/+2
* Add a JITEventListener interface that gets called back when a new function isJeffrey Yasskin2009-06-251-4/+12
* Remove unused parameter warnings.Bill Wendling2009-06-111-1/+1
* Allow the JIT ExecutionEngine to report details about the generated machine c...Argyrios Kyrtzidis2009-05-181-0/+4
* Instead of passing in an unsigned value for the optimization level, use an enum,Bill Wendling2009-04-291-7/+8
* The second part of the change from -fast to -O#. This changes the JIT to acceptBill Wendling2009-04-291-3/+3
* improve documentation around memory lifetimes, Chris Lattner2009-04-251-5/+17
* Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman2009-02-181-0/+8
* Add support for deleting a module provider from a JIT in such a way that it d...Nate Begeman2009-01-231-1/+7
* Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman2009-01-051-1/+0
* DisableGVCompilation should not abort on internal GlobalValue's.Evan Cheng2008-12-091-2/+3
* Support for allocation of TLS variables in the JIT. Allocation of a globalNicolas Geoffray2008-10-251-0/+3
* Add runStaticConstructorsDestructors which runs ctors / dtors of a single mod...Evan Cheng2008-09-301-1/+5
* Add DisableGVCompilation which forces the JIT to assert when it tries to allo...Evan Cheng2008-09-241-0/+11
* Add new parameter Fast to createJIT to enable the fast codegen path.Evan Cheng2008-08-081-3/+6
* Add a new flag that disables symbol lookup with dlsym when set. This allowsChris Lattner2008-06-161-3/+13
* Fix a couple issues with the JIT and multiple modules:Nate Begeman2008-05-211-2/+7
* Remove warnings about unused parameters and shadowed variables.Bill Wendling2008-05-191-2/+2
* Make ExecutionEngine::updateGlobalMapping return the old mapping.Chris Lattner2008-04-041-5/+7
* Enable exception handling int JITNicolas Geoffray2008-02-131-0/+18
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Add explicit keywords, and fix a minor typo that they uncovered.Dan Gohman2007-12-141-1/+1
* add a new ExecutionEngine::createJIT which can be used if you only want Chris Lattner2007-12-061-0/+8
* simplify creation of the interpreter, make ExecutionEngine ctor protected,Chris Lattner2007-12-061-18/+27
* add a mechanism for the JIT to invoke a function to lazily create functions a...Chris Lattner2007-10-221-1/+14
* Add a convenience method for creating EE's.Chris Lattner2007-10-211-1/+7
* Add removeModuleProvider()Devang Patel2007-10-151-1/+5
* Make StoreValueToMemory a little more efficient by not copying aReid Spencer2007-03-061-1/+1
* Make GenericeValue into a struct with a union instead of just a union. ThisReid Spencer2007-03-061-1/+1
* Make the creation functions take an error string. This will help theReid Spencer2007-03-031-2/+3
* Require the destination GlobalValue for LoadValueFromMemory to be passedReid Spencer2007-03-031-1/+2
* allow clients to indicate that they never want lazy compilation.Chris Lattner2006-11-091-0/+10