aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine/ExecutionEngine.h
AgeCommit message (Expand)Author
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
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-12-14Add explicit keywords, and fix a minor typo that they uncovered.Dan Gohman
2007-12-06add a new ExecutionEngine::createJIT which can be used if you only want Chris Lattner
2007-12-06simplify creation of the interpreter, make ExecutionEngine ctor protected,Chris Lattner
2007-10-22add a mechanism for the JIT to invoke a function to lazily create functions a...Chris Lattner
2007-10-21Add a convenience method for creating EE's.Chris Lattner
2007-10-15Add removeModuleProvider()Devang Patel
2007-03-06Make StoreValueToMemory a little more efficient by not copying aReid Spencer
2007-03-06Make GenericeValue into a struct with a union instead of just a union. ThisReid Spencer
2007-03-03Make the creation functions take an error string. This will help theReid Spencer
2007-03-03Require the destination GlobalValue for LoadValueFromMemory to be passedReid Spencer
2006-11-09allow clients to indicate that they never want lazy compilation.Chris Lattner
2006-08-16add a way to have multiple modules in a JIT :)Chris Lattner
2006-08-16initial changes to support JIT'ing from multiple module providers, implicitlyChris Lattner
2006-05-08Move methods out of line so that MutexGuard.h isn't required in the header.Chris Lattner
2006-05-03Refactor TargetMachine, pushing handling of TargetData into the target-specif...Owen Anderson
2006-03-23remove the intrinsiclowering hookChris Lattner
2006-03-22wrap lines to 80 columns.Chris Lattner
2006-03-08Add a helper method for running static ctors/dtors in the module.Chris Lattner
2005-07-12For PR540:Reid Spencer
2005-04-21Remove trailing whitespaceMisha Brukman
2004-12-13Add a convenience function for clearing the two global areas.Reid Spencer
2004-11-22This is the proper code for this method, thanks to Reid for getting CVS workingChris Lattner
2004-11-22Implement a missing function called by JIT/Emitter.cpp but never defined.Reid Spencer
2004-11-07Add method to delete machine code generated for a FunctionMisha Brukman
2004-09-03Fixes to make LLVM compile with vc7.1.Alkis Evlogimenos