aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/ExecutionEngine.cpp
AgeCommit message (Expand)Author
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
2003-10-16* Reorder includes as per the style guideMisha Brukman
2003-10-14Enabling incremental bytecode loading in the JIT:Misha Brukman
2003-10-10* Tabs to spacesMisha Brukman
2003-10-10Change to use GetAddressOfSymbol instead of dlsym.Brian Gaeke
2003-09-05Reorder #includes to follow LLVM conventionsChris Lattner
2003-09-05ExecutionEngine.h, GenericValue.h --> include/llvm/ExecutionEngine/Brian Gaeke
2003-09-05Make CreateArgv part of lli rather than part of ExecutionEngine.Brian Gaeke
2003-09-04Move EE dtor where it belongsBrian Gaeke
2003-09-04Interpreter cleanups:Brian Gaeke
2003-09-03ExecutionEngine.cpp: Move execution engine creation stuff into a newBrian Gaeke
2003-08-24Consult the target data, not the module, about how large the current pointerChris Lattner
2003-08-24Add preliminary support for "any" pointersize/endianness. This will needChris Lattner