| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix the interpreter crash that Michael McCracken found | Chris Lattner | 2004-10-26 | 1 | -0/+1 |
* | Add support for undef | Chris Lattner | 2004-10-16 | 1 | -1/+3 |
* | Changes For Bug 352 | Reid Spencer | 2004-09-01 | 1 | -3/+3 |
* | Don't pass too many arguments into runFunction | Chris Lattner | 2004-08-16 | 1 | -8/+15 |
* | Stop using getValues(). | Alkis Evlogimenos | 2004-08-04 | 1 | -7/+4 |
* | bug 122: | Reid Spencer | 2004-07-18 | 1 | -11/+6 |
* | Fixes for PR341 | Chris Lattner | 2004-07-15 | 1 | -4/+4 |
* | Make add constantexprs work with all types, fixing the regressions from last ... | Chris Lattner | 2004-07-11 | 1 | -4/+28 |
* | Fix for bug 391. | Reid Spencer | 2004-07-07 | 1 | -0/+2 |
* | Move the IntrinsicLowering header into the CodeGen directory | Chris Lattner | 2004-06-20 | 1 | -1/+1 |
* | Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() | Chris Lattner | 2004-06-17 | 1 | -8/+8 |
* | Remove long unused #includes | Chris Lattner | 2004-05-27 | 1 | -1/+0 |
* | Fix PR296: [execution engines] Unhandled cast constant expression | Chris Lattner | 2004-03-16 | 1 | -6/+17 |
* | Make the JIT zero out globals with memset instead of an element at a time. This | Chris Lattner | 2004-02-15 | 1 | -0/+4 |
* | Print out all globals as they are emitted, not just those emitted from | Chris Lattner | 2004-02-08 | 1 | -3/+2 |
* | Print an error message if we can't materialize the bytecode file | Chris Lattner | 2004-02-01 | 1 | -5/+11 |
* | Add new ExecutionEngine::getGlobalValueAtAddress method, which can efficiently | Chris Lattner | 2003-12-31 | 1 | -5/+21 |
* | Pass around IntrinsicLowering instances as appropriate. | Chris Lattner | 2003-12-28 | 1 | -4/+8 |
* | Factor code out of LLI | Chris Lattner | 2003-12-26 | 1 | -0/+54 |
* | Implement PR135, lazy emission of global variables | Chris Lattner | 2003-12-20 | 1 | -4/+7 |
* | Simple refactorings to prepare for lazy global emission | Chris Lattner | 2003-12-20 | 1 | -2/+16 |
* | Update for changes in the JIT | Chris Lattner | 2003-12-20 | 1 | -2/+2 |
* | Use the new method, though noone currently implements it any better than before | Chris Lattner | 2003-12-08 | 1 | -1/+5 |
* | Fine grainify namespaceification | Chris Lattner | 2003-11-19 | 1 | -5/+4 |
* | Put all LLVM code into the llvm namespace, as per bug 109. | Brian Gaeke | 2003-11-11 | 1 | -0/+3 |
* | ExecutionEngine::create no longer takes a TraceMode argument. | Brian Gaeke | 2003-10-24 | 1 | -5/+4 |
* | Added LLVM project notice to the top of every C++ source file. | John Criswell | 2003-10-20 | 1 | -0/+7 |
* | Don't release the Module, as that invalidates the Module* within the | Misha Brukman | 2003-10-17 | 1 | -2/+2 |
* | * Reorder includes as per the style guide | Misha Brukman | 2003-10-16 | 1 | -6/+22 |
* | Enabling incremental bytecode loading in the JIT: | Misha Brukman | 2003-10-14 | 1 | -4/+5 |
* | * Tabs to spaces | Misha Brukman | 2003-10-10 | 1 | -8/+16 |
* | Change to use GetAddressOfSymbol instead of dlsym. | Brian Gaeke | 2003-10-10 | 1 | -8/+4 |
* | Reorder #includes to follow LLVM conventions | Chris Lattner | 2003-09-05 | 1 | -5/+5 |
* | ExecutionEngine.h, GenericValue.h --> include/llvm/ExecutionEngine/ | Brian Gaeke | 2003-09-05 | 1 | -4/+4 |
* | Make CreateArgv part of lli rather than part of ExecutionEngine. | Brian Gaeke | 2003-09-05 | 1 | -39/+0 |
* | Move EE dtor where it belongs | Brian Gaeke | 2003-09-04 | 1 | -0/+4 |
* | Interpreter cleanups: | Brian Gaeke | 2003-09-04 | 1 | -3/+3 |
* | ExecutionEngine.cpp: Move execution engine creation stuff into a new | Brian Gaeke | 2003-09-03 | 1 | -2/+16 |
* | Consult the target data, not the module, about how large the current pointer | Chris Lattner | 2003-08-24 | 1 | -4/+4 |
* | Add preliminary support for "any" pointersize/endianness. This will need | Chris Lattner | 2003-08-24 | 1 | -4/+4 |
* | no really, implement it! | Chris Lattner | 2003-08-18 | 1 | -2/+1 |
* | Add support for casting any pointer to any integer type | Chris Lattner | 2003-08-18 | 1 | -6/+8 |
* | In ExecutionEngine::getPointerToGlobal(), throw away const qualifier | Brian Gaeke | 2003-08-13 | 1 | -1/+1 |
* | Specify DEBUG_TYPE's for the JIT debug messages | Chris Lattner | 2003-08-05 | 1 | -0/+1 |
* | DEBUG got moved to Debug.h | Chris Lattner | 2003-08-01 | 1 | -3/+2 |
* | Cleaned up the code which chooses the appropriate value for the file descriptor | Misha Brukman | 2003-07-18 | 1 | -5/+4 |
* | Clean up my last checkin: code is easier to read and explains the differences in | Misha Brukman | 2003-07-15 | 1 | -4/+5 |
* | On Sparc/Solaris, the special handle RTLD_SELF is used as a handle referring to | Misha Brukman | 2003-07-15 | 1 | -1/+6 |
* | Merged in autoconf branch. This provides configuration via the autoconf | John Criswell | 2003-06-30 | 1 | -1/+1 |
* | Fix typeos | Chris Lattner | 2003-05-14 | 1 | -4/+4 |