aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine
Commit message (Expand)AuthorAgeFilesLines
* Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID()Chris Lattner2004-06-173-29/+29
* Add int ferror(FILE *)Brian Gaeke2004-06-161-0/+8
* Implement PR315: abort, don't warn, when missing external functions encounteredChris Lattner2004-06-011-9/+17
* Use the SystemUtils.h file to do our dirty work.Chris Lattner2004-05-281-52/+2
* Remove long unused #includesChris Lattner2004-05-271-1/+0
* These #includes are long deadChris Lattner2004-05-271-2/+0
* This code is a real mess, but at least get the JIT *building* on platformsChris Lattner2004-05-271-0/+8
* Get rid of a wart: useless getFILE function is now a cast macro.Reid Spencer2004-05-251-42/+2
* Generalize the strlen size_t hack, for the benefit of the other externalBrian Gaeke2004-05-011-17/+33
* Go back to the interpreter main loop after performing intrinsic lowering,Brian Gaeke2004-04-231-0/+1
* Implement emitWordAt() for the JIT emitter.Brian Gaeke2004-04-231-0/+5
* Add support for the select instructionChris Lattner2004-04-202-2/+24
* Add a TargetData to the PassManager regardless of the TargetMachine.Brian Gaeke2004-04-141-0/+3
* Adjust to new interfaceChris Lattner2004-04-041-1/+1
* Adjust to new gep_type_iterator prototypes.Chris Lattner2004-04-041-1/+3
* Fix PR296: [execution engines] Unhandled cast constant expressionChris Lattner2004-03-161-6/+17
* Rename the intrinsic enum values for llvm.va_* from Intrinsic::va_* toChris Lattner2004-03-131-3/+3
* My fix for PR274 broke the build on Darwin/PPC. As I'm fairly certain thisBrian Gaeke2004-03-101-2/+4
* Address PR274 - '[JIT] Programs cannot resolve the fstat function'Brian Gaeke2004-03-091-0/+18
* remove obsolete commentChris Lattner2004-02-261-1/+1
* Represent va_list in interpreter as a (ec-stack-depth . var-arg-index)Brian Gaeke2004-02-251-11/+14
* Great sparc renaming fallout IV: Sparc --> SparcV9.Brian Gaeke2004-02-251-1/+1
* Great renaming part II: Sparc --> SparcV9 (also includes command-line options...Brian Gaeke2004-02-251-5/+5
* Make the JIT zero out globals with memset instead of an element at a time. ThisChris Lattner2004-02-151-0/+4
* Fix off-by-one in Interpreter::getFirstVarArg(), which was punishingBrian Gaeke2004-02-131-1/+1
* The Interpreter was failing the AtExit UnitTest. This fixes it.Brian Gaeke2004-02-131-0/+4
* Start using the new and improve interface to FunctionType argumentsChris Lattner2004-02-091-2/+2
* rename the "exceptional" destination of an invoke instruction to the 'unwind'...Chris Lattner2004-02-081-2/+1
* Print out all globals as they are emitted, not just those emitted fromChris Lattner2004-02-081-3/+2
* There is no reason to #define fdChris Lattner2004-02-081-3/+2
* Print an error message if we can't materialize the bytecode fileChris Lattner2004-02-011-5/+11
* Print an error message if there is an error materialize the bc file.Chris Lattner2004-02-011-1/+6
* Don't pass anything to the IntrinsicLowering class that is not_intrinsic,Brian Gaeke2004-01-141-1/+4
* Add new ExecutionEngine::getGlobalValueAtAddress method, which can efficientlyChris Lattner2003-12-311-5/+21
* Clean up a lot of the code I added yesterday by exposing the IntrinsicLoweringChris Lattner2003-12-281-1/+0
* Pass around IntrinsicLowering instances as appropriate.Chris Lattner2003-12-287-50/+74
* Factor code out of LLIChris Lattner2003-12-261-0/+54
* No longer run atExit functions from run()Chris Lattner2003-12-263-23/+27
* No longer run atExit functions from run()Chris Lattner2003-12-262-10/+6
* This should not be needed anymoreChris Lattner2003-12-201-4/+0
* Implement PR135, lazy emission of global variablesChris Lattner2003-12-204-19/+85
* Simple refactorings to prepare for lazy global emissionChris Lattner2003-12-201-2/+16
* Cleanup the JIT as per PR176. This renames the VM class to JIT, and merges theChris Lattner2003-12-207-315/+217
* Update for changes in the JITChris Lattner2003-12-201-2/+2
* Rip JIT specific stuff out of TargetMachine, as per PR176Chris Lattner2003-12-204-16/+20
* Finegrainify namespacificationChris Lattner2003-12-142-24/+2
* Dynamically get the right-sized member of a GenericValue to hold a size_t, andBrian Gaeke2003-12-121-2/+8
* Implement the ExecutionEngine::getPointerToFunctionOrStub by forwarding theChris Lattner2003-12-123-0/+29
* Since we are using a gep_type_iterator, we apparently must get the typeBrian Gaeke2003-12-121-2/+1
* Fix typo in comment. Add prototype for getConstantExprValue().Brian Gaeke2003-12-111-1/+3