aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/ExecutionEngine.cpp
AgeCommit message (Expand)Author
2006-05-14LoadLibraryPermanently can theoretically throw an exception. Do not propagateChris Lattner
2006-05-08Move some methods out of line so that MutexGuard.h isn't needed in a public h...Chris Lattner
2006-05-03Refactor TargetMachine, pushing handling of TargetData into the target-specif...Owen Anderson
2006-04-22JumpTable support! What this represents is working asm and jit support forNate Begeman
2006-04-22Fix JIT support for static ctors, which was apparently completely broken!Chris Lattner
2006-03-23prune #includesChris Lattner
2006-03-23remove the intrinsiclowering hookChris Lattner
2006-03-22Eliminate the dependency of ExecutionEngine on the JIT/Interpreter libraries.Chris Lattner
2006-03-08Add a helper method for running static ctors/dtors in the module.Chris Lattner
2006-02-07Teach the interpreter to handle global variables that are added to a module a...Jeff Cohen
2006-01-20Fixed InitializeMemory to handle ConstantPacked.Robert Bocchino
2005-10-23Fix a nasty bug that was causing miscompilation of global variablesChris Lattner
2005-07-12For PR540:Reid Spencer
2005-07-11fix long linesChris Lattner
2005-05-12Fix a really horrible problem that causes the JIT to miscompile any programChris Lattner
2005-04-21Remove trailing whitespaceMisha Brukman
2005-03-15This mega patch converts us from using Function::a{iterator|begin|end} toChris Lattner
2005-02-27Use const iterators where possible. Patch by Evan Jones!Chris Lattner
2005-02-02This is no longer needed. Global variables with undef initializers can beChris Lattner
2005-01-08Silence VS warnings.Chris Lattner
2004-11-29Use System/DynamicLibrary instead of Support/DynamicLinkerReid Spencer
2004-11-19This is a horrible hack to work around libstdc++ bugs :(Chris Lattner
2004-10-26Fix the interpreter crash that Michael McCracken foundChris Lattner
2004-10-16Add support for undefChris Lattner
2004-09-01Changes For Bug 352Reid Spencer
2004-08-16Don't pass too many arguments into runFunctionChris Lattner
2004-08-04Stop using getValues().Alkis Evlogimenos
2004-07-18bug 122:Reid Spencer
2004-07-15Fixes for PR341Chris Lattner
2004-07-11Make add constantexprs work with all types, fixing the regressions from last ...Chris Lattner
2004-07-07Fix for bug 391.Reid Spencer
2004-06-20Move the IntrinsicLowering header into the CodeGen directoryChris Lattner
2004-06-17Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID()Chris Lattner
2004-05-27Remove long unused #includesChris Lattner
2004-03-16Fix PR296: [execution engines] Unhandled cast constant expressionChris Lattner
2004-02-15Make the JIT zero out globals with memset instead of an element at a time. ThisChris Lattner
2004-02-08Print out all globals as they are emitted, not just those emitted fromChris Lattner
2004-02-01Print an error message if we can't materialize the bytecode fileChris Lattner
2003-12-31Add new ExecutionEngine::getGlobalValueAtAddress method, which can efficientlyChris Lattner
2003-12-28Pass around IntrinsicLowering instances as appropriate.Chris Lattner
2003-12-26Factor code out of LLIChris Lattner
2003-12-20Implement PR135, lazy emission of global variablesChris Lattner
2003-12-20Simple refactorings to prepare for lazy global emissionChris Lattner
2003-12-20Update for changes in the JITChris Lattner
2003-12-08Use the new method, though noone currently implements it any better than beforeChris Lattner
2003-11-19Fine grainify namespaceificationChris Lattner
2003-11-11Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke
2003-10-24ExecutionEngine::create no longer takes a TraceMode argument.Brian Gaeke
2003-10-20Added LLVM project notice to the top of every C++ source file.John Criswell
2003-10-17Don't release the Module, as that invalidates the Module* within theMisha Brukman