Age | Commit message (Expand) | Author |
2004-11-20 | This method does not exist any longer. | Chris Lattner |
2004-11-15 | There is no reason to try to materialize the function from bytecode if it | Chris Lattner |
2004-11-07 | Implement ExecutionEngine::freeMachineCodeForFunction() | Misha Brukman |
2004-10-22 | Use cleaner quoting and eliminate blank space | Misha Brukman |
2004-09-01 | Changes For Bug 352 | Reid Spencer |
2004-08-16 | Add a special case for argc,argv | Chris Lattner |
2004-08-16 | Finally, add support for calling arbitrary non-varargs functions. | Chris Lattner |
2004-08-15 | Handle all nullary functions, of any valid return type. | Chris Lattner |
2004-08-15 | Fine, go all of the way and check that the argument types are correct as well. | Chris Lattner |
2004-08-15 | These only really work if returning int or void | Chris Lattner |
2004-08-15 | Handle zero arg function case | Chris Lattner |
2004-08-15 | Simplify code a bit, print error message always instead of asserting. | Chris Lattner |
2004-07-07 | Make error message consistent with the rest of LLVM by saying that bytecode | Reid Spencer |
2004-07-07 | Fix for bug 391. | Reid Spencer |
2004-07-04 | Add #include <iostream> since Value.h does not #include it any more. | Reid Spencer |
2004-04-14 | Add a TargetData to the PassManager regardless of the TargetMachine. | Brian Gaeke |
2004-02-01 | Print an error message if there is an error materialize the bc file. | Chris Lattner |
2003-12-26 | No longer run atExit functions from run() | Chris Lattner |
2003-12-20 | This should not be needed anymore | Chris Lattner |
2003-12-20 | Implement PR135, lazy emission of global variables | Chris Lattner |
2003-12-20 | Cleanup the JIT as per PR176. This renames the VM class to JIT, and merges the | Chris Lattner |
2003-12-20 | Rip JIT specific stuff out of TargetMachine, as per PR176 | Chris Lattner |
2003-12-08 | Finegrainify namespacification | Chris Lattner |
2003-11-11 | Put all LLVM code into the llvm namespace, as per bug 109. | Brian Gaeke |
2003-11-09 | Remove #include of PassManager.h which was marked FIXME, and apparently is no | Brian Gaeke |
2003-11-07 | Remove the *BIG UGLY HACK* from the JIT: PreSelection is now a FunctionPass. | Misha Brukman |
2003-10-29 | In VM::create(), comment out almost the whole function if NO_JITS_ENABLED, | Brian Gaeke |
2003-10-20 | Added LLVM project notice to the top of every C++ source file. | John Criswell |
2003-10-16 | JIT.cpp: | Misha Brukman |
2003-10-14 | Enabling incremental bytecode loading in the JIT: | Misha Brukman |
2003-09-05 | ExecutionEngine.h, GenericValue.h --> include/llvm/ExecutionEngine/ | Brian Gaeke |
2003-09-05 | Make CreateArgv part of lli rather than part of ExecutionEngine. | Brian Gaeke |
2003-09-03 | ExecutionEngine.cpp: Move execution engine creation stuff into a new | Brian Gaeke |
2003-08-24 | Targets now configure themselves based on the source module, not on the | Chris Lattner |
2003-08-21 | Minor cleanups: wrap at 80 lines. Convert file comment to doxygen format and | Chris Lattner |
2003-08-21 | The JIT now passes the environment pointer to the main() function when it | John Criswell |
2003-07-23 | Fix space | Chris Lattner |
2003-07-02 | * If compiling on X86 or Sparc, automagically enable the JIT for that arch | Misha Brukman |
2003-06-17 | Apparently "sparc" is a macro on sparcs. Ugh. :) | Chris Lattner |
2003-06-17 | Use more structured command line option processing | Chris Lattner |
2003-06-17 | #ifdef out code that only applies when the HOSTARCH = sparc | Chris Lattner |
2003-06-06 | ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: | Misha Brukman |
2003-06-02 | * Removed SparcEmitter.cpp; rolled into lib/Target/Sparc/SparcV9CodeEmitter.cpp | Misha Brukman |
2003-06-01 | Move target specific code to target files. The new MachineCodeEmitter | Chris Lattner |
2003-05-27 | Allow for specification of which JIT to run on the commandline. | Misha Brukman |
2003-05-14 | Add support for atexit handlers to the JIT, fixing 2003-05-14-AtExit.c | Chris Lattner |
2003-05-12 | Make sure that globals are emitted AFTER the passmanager is set up for the JIT, | Chris Lattner |
2002-12-24 | Initial checkin of new LLI with JIT compiler | Chris Lattner |