aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/ExecutionEngine.cpp
Commit message (Expand)AuthorAgeFilesLines
* JumpTable support! What this represents is working asm and jit support forNate Begeman2006-04-221-1/+4
* Fix JIT support for static ctors, which was apparently completely broken!Chris Lattner2006-04-221-1/+5
* prune #includesChris Lattner2006-03-231-1/+0
* remove the intrinsiclowering hookChris Lattner2006-03-231-7/+5
* Eliminate the dependency of ExecutionEngine on the JIT/Interpreter libraries.Chris Lattner2006-03-221-18/+8
* Add a helper method for running static ctors/dtors in the module.Chris Lattner2006-03-081-2/+31
* Teach the interpreter to handle global variables that are added to a module a...Jeff Cohen2006-02-071-1/+10
* Fixed InitializeMemory to handle ConstantPacked.Robert Bocchino2006-01-201-0/+6
* Fix a nasty bug that was causing miscompilation of global variablesChris Lattner2005-10-231-1/+4
* For PR540:Reid Spencer2005-07-121-7/+10
* fix long linesChris Lattner2005-07-111-3/+4
* Fix a really horrible problem that causes the JIT to miscompile any programChris Lattner2005-05-121-2/+2
* Remove trailing whitespaceMisha Brukman2005-04-211-21/+21
* This mega patch converts us from using Function::a{iterator|begin|end} toChris Lattner2005-03-151-2/+2
* Use const iterators where possible. Patch by Evan Jones!Chris Lattner2005-02-271-2/+2
* This is no longer needed. Global variables with undef initializers can beChris Lattner2005-02-021-2/+0
* Silence VS warnings.Chris Lattner2005-01-081-37/+37
* Use System/DynamicLibrary instead of Support/DynamicLinkerReid Spencer2004-11-291-5/+12
* This is a horrible hack to work around libstdc++ bugs :(Chris Lattner2004-11-191-2/+6
* Fix the interpreter crash that Michael McCracken foundChris Lattner2004-10-261-0/+1
* Add support for undefChris Lattner2004-10-161-1/+3
* Changes For Bug 352Reid Spencer2004-09-011-3/+3
* Don't pass too many arguments into runFunctionChris Lattner2004-08-161-8/+15
* Stop using getValues().Alkis Evlogimenos2004-08-041-7/+4
* bug 122:Reid Spencer2004-07-181-11/+6
* Fixes for PR341Chris Lattner2004-07-151-4/+4
* Make add constantexprs work with all types, fixing the regressions from last ...Chris Lattner2004-07-111-4/+28
* Fix for bug 391.Reid Spencer2004-07-071-0/+2
* Move the IntrinsicLowering header into the CodeGen directoryChris Lattner2004-06-201-1/+1
* Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID()Chris Lattner2004-06-171-8/+8
* Remove long unused #includesChris Lattner2004-05-271-1/+0
* Fix PR296: [execution engines] Unhandled cast constant expressionChris Lattner2004-03-161-6/+17
* Make the JIT zero out globals with memset instead of an element at a time. ThisChris Lattner2004-02-151-0/+4
* Print out all globals as they are emitted, not just those emitted fromChris Lattner2004-02-081-3/+2
* Print an error message if we can't materialize the bytecode fileChris Lattner2004-02-011-5/+11
* Add new ExecutionEngine::getGlobalValueAtAddress method, which can efficientlyChris Lattner2003-12-311-5/+21
* Pass around IntrinsicLowering instances as appropriate.Chris Lattner2003-12-281-4/+8
* Factor code out of LLIChris Lattner2003-12-261-0/+54
* Implement PR135, lazy emission of global variablesChris Lattner2003-12-201-4/+7
* Simple refactorings to prepare for lazy global emissionChris Lattner2003-12-201-2/+16
* Update for changes in the JITChris Lattner2003-12-201-2/+2
* Use the new method, though noone currently implements it any better than beforeChris Lattner2003-12-081-1/+5
* Fine grainify namespaceificationChris Lattner2003-11-191-5/+4
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+3
* ExecutionEngine::create no longer takes a TraceMode argument.Brian Gaeke2003-10-241-5/+4
* Added LLVM project notice to the top of every C++ source file.John Criswell2003-10-201-0/+7
* Don't release the Module, as that invalidates the Module* within theMisha Brukman2003-10-171-2/+2
* * Reorder includes as per the style guideMisha Brukman2003-10-161-6/+22
* Enabling incremental bytecode loading in the JIT:Misha Brukman2003-10-141-4/+5
* * Tabs to spacesMisha Brukman2003-10-101-8/+16