aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/JIT/JIT.cpp
AgeCommit message (Expand)AuthorFilesLines
2012-10-08Move TargetData to DataLayout.Micah Villmow1-7/+7
2012-08-02JIT::runFunction(): add a fast path for functions with a single argument that...Nuno Lopes1-2/+7
2012-07-25You cannot call removeModule on a JIT with no modules. Patch by VerenaChad Rosier1-1/+1
2012-03-28Move getPointerToNamedFunction() from JIT/MCJIT to JITMemoryManager.Danil Malyshev1-3/+27
2012-03-22Revert a series of commits to MCJIT to get the build working in CMakeChandler Carruth1-25/+3
2012-03-21Based on this discussion: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Wee...Danil Malyshev1-3/+25
2012-02-07Convert assert(0) to llvm_unreachableCraig Topper1-3/+2
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie1-1/+0
2011-12-12ExecutionEngine: refactor interfaceDylan Noblesmith1-3/+2
2011-12-01ExecutionEngine: honor optimization levelDylan Noblesmith1-3/+3
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner1-4/+4
2011-07-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad1-2/+1
2011-05-13ExecutionEngine: move createJIT() definition (v2)Dylan Noblesmith1-19/+0
2011-05-13ExecutionEngine: push TargetMachine creation into clients (v2)Dylan Noblesmith1-16/+7
2011-05-13ExecutionEngine: fix JIT/MCJIT selectTarget() duplication (v2)Dylan Noblesmith1-2/+9
2011-05-07Revert ExecutionEngine patches, they either failed to build or broke unit tests.Jakob Stoklund Olesen1-4/+25
2011-05-06ExecutionEngine: move createJIT() definitionDylan Noblesmith1-19/+0
2011-05-06ExecutionEngine: push TargetMachine creation into clientsDylan Noblesmith1-16/+7
2011-05-06ExecutionEngine: fix JIT/MCJIT selectTarget() duplicationDylan Noblesmith1-2/+9
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner1-1/+1
2011-03-15Trailing whitespae.Jim Grosbach1-34/+34
2010-11-29Merge System into Support.Michael J. Spencer1-1/+1
2010-11-13Fix some more 80-col violas.Daniel Dunbar1-4/+11
2010-10-21Fix the cleanup process of exception information in JIT. Now JITDuncan Sands1-0/+6
2010-08-17When creating a JIT, try to load the program so that we can resolve symbolsNick Lewycky1-0/+3
2010-08-09Stop the JIT from refusing to work just because the program it was compiled intoNick Lewycky1-5/+0
2010-07-26Don't call __register_frame from the JIT on systems that use setjmp/longjmpBob Wilson1-2/+2
2010-07-11first part of JIT support for address of labels, part of PR7264,Chris Lattner1-8/+46
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner1-6/+6
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands1-3/+3
2010-02-15Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands1-4/+4
2010-02-12Make JIT::runFunction clean up the generated stub function.Jeffrey Yasskin1-2/+6
2010-02-11Make it possible to create multiple JIT instances at the same time, by removingJeffrey Yasskin1-2/+51
2010-02-10Fix "the the" and similar typos.Dan Gohman1-1/+1
2010-02-05Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp.Jeffrey Yasskin1-4/+13
2010-01-27Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin1-79/+20
2010-01-05Move remaining stuff to the isInteger predicate.Benjamin Kramer1-1/+1
2010-01-05Convert a ton of simple integer type equality tests to the new predicate.Benjamin Kramer1-3/+3
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer1-3/+2
2009-12-22Fix a crash in JIT::recompileAndRelinkFunction(). It doesn't pass the MCIJeffrey Yasskin1-2/+4
2009-12-17Don't codegen available_externally functions. Fixes http://llvm.org/PR5735.Jeffrey Yasskin1-27/+39
2009-12-15Formatting.Eric Christopher1-1/+1
2009-12-13Reinstate r91208 to fix available_externally linkage for globals, withJeffrey Yasskin1-1/+1
2009-12-12Revert r91208. Something on Linux prevents the JIT from looking up a symbolJeffrey Yasskin1-1/+1
2009-12-12Fix available_externally linkage for globals. It's probably still notJeffrey Yasskin1-1/+1
2009-11-17Add ability to set code model within the execution engine buildersEric Christopher1-3/+6
2009-11-09Remove dlsym stubs, with Nate Begeman's permission.Jeffrey Yasskin1-8/+2
2009-10-27Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin1-2/+2
2009-10-27Automatically do the equivalent of freeMachineCodeForFunction(F) when F isJeffrey Yasskin1-2/+2
2009-10-25fix PR5186: the JIT shouldn't try to codegen available_externallyChris Lattner1-1/+1