aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT/JIT.cpp
AgeCommit message (Expand)Author
2011-03-15Trailing whitespae.Jim Grosbach
2010-11-29Merge System into Support.Michael J. Spencer
2010-11-13Fix some more 80-col violas.Daniel Dunbar
2010-10-21Fix the cleanup process of exception information in JIT. Now JITDuncan Sands
2010-08-17When creating a JIT, try to load the program so that we can resolve symbolsNick Lewycky
2010-08-09Stop the JIT from refusing to work just because the program it was compiled intoNick Lewycky
2010-07-26Don't call __register_frame from the JIT on systems that use setjmp/longjmpBob Wilson
2010-07-11first part of JIT support for address of labels, part of PR7264,Chris Lattner
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands
2010-02-15Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands
2010-02-12Make JIT::runFunction clean up the generated stub function.Jeffrey Yasskin
2010-02-11Make it possible to create multiple JIT instances at the same time, by removingJeffrey Yasskin
2010-02-10Fix "the the" and similar typos.Dan Gohman
2010-02-05Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp.Jeffrey Yasskin
2010-01-27Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin
2010-01-05Move remaining stuff to the isInteger predicate.Benjamin Kramer
2010-01-05Convert a ton of simple integer type equality tests to the new predicate.Benjamin Kramer
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer
2009-12-22Fix a crash in JIT::recompileAndRelinkFunction(). It doesn't pass the MCIJeffrey Yasskin
2009-12-17Don't codegen available_externally functions. Fixes http://llvm.org/PR5735.Jeffrey Yasskin
2009-12-15Formatting.Eric Christopher
2009-12-13Reinstate r91208 to fix available_externally linkage for globals, withJeffrey Yasskin
2009-12-12Revert r91208. Something on Linux prevents the JIT from looking up a symbolJeffrey Yasskin
2009-12-12Fix available_externally linkage for globals. It's probably still notJeffrey 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-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-25fix PR5186: the JIT shouldn't try to codegen available_externallyChris Lattner
2009-09-20Implement the JIT side of the GDB JIT debugging interface. To enable thisReid Kleckner
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-07-29Move types back to the 2.5 API.Owen Anderson
2009-07-29Move ConstantExpr to 2.5 API.Owen Anderson
2009-07-27Move ConstantFP construction back to the 2.5-ish API.Owen Anderson
2009-07-24Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson
2009-07-22Get rid of the Pass+Context magic.Owen Anderson
2009-07-21Simplify / normalize some uses of Value::getName.Daniel Dunbar
2009-07-18Add EngineBuilder to ExecutionEngine in favor of the five optional argument E...Reid Kleckner
2009-07-14Move EVER MORE stuff over to LLVMContext.Owen Anderson
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin
2009-07-08Add an option to allocate JITed global data separately from code. ByJeffrey Yasskin
2009-07-07Introduce new error handling API.Torok Edwin
2009-07-01improve the APIs for creating struct and function types with no arguments/ele...Chris Lattner
2009-06-25Add a JITEventListener interface that gets called back when a new function isJeffrey Yasskin
2009-06-24Fix the Ocaml bindings for the ExecutionEngine: with the change to buildBob Wilson
2009-06-12After obtaining the lock, look if the function has been codegen'd byNicolas Geoffray
2009-05-30First patch in the direction of splitting MachineCodeEmitter in two subclasses:Bruno Cardoso Lopes