- b76ea74 Fix the build on my old and busted version of OS X by Nate Begeman · 19 years ago
- b82ab94 Forgot to #ifdef __APPLE__ by Evan Cheng · 19 years ago
- 5f42c55 Resolve __dso_handle. by Evan Cheng · 19 years ago
- 21c39a6 Remove non-portable optimization that isn't worth it by Chris Lattner · 19 years ago
- 5c72a3a Adapt to new interface function materialization interface by Chris Lattner · 19 years ago
- 870286a Fix -pedantic warnings. by Chris Lattner · 19 years ago
- 07000c6 Refactor a bunch of includes so that TargetMachine.h doesn't have to include by Owen Anderson · 19 years ago
- e7fd553 Move some methods out of line so that MutexGuard.h isn't needed in a public header. by Chris Lattner · 19 years ago
- b93b034 Adjust to use proper TargetData copy ctor by Chris Lattner · 19 years ago
- a69571c Refactor TargetMachine, pushing handling of TargetData into the target-specific subclasses. This has one caller-visible change: getTargetData() now returns a pointer instead of a reference. by Owen Anderson · 19 years ago
- f5d438c Do not make the JIT memory manager manage the memory for globals. Instead by Chris Lattner · 19 years ago
- 2f51914 Get JIT/Interpreter working on Windows again. by Jeff Cohen · 19 years ago
- 2fe4bb0 Eliminate the dependency of ExecutionEngine on the JIT/Interpreter libraries. by Chris Lattner · 19 years ago
- 51e6a38 wrap long line by Chris Lattner · 20 years ago
- 6a97461 Like constants, globals on some platforms are GOT relative. This means they have to be allocated by Andrew Lenharth · 20 years ago
- 00b16889 Eliminate all remaining tabs and trailing spaces. by Jeff Cohen · 20 years ago
- ee44863 For PR540: by Reid Spencer · 20 years ago
- a471e04 Make the stub functions be tail calls by Chris Lattner · 20 years ago
- f976c85 Remove trailing whitespace by Misha Brukman · 20 years ago
- a8101c1 Silence VS warnings. by Chris Lattner · 21 years ago
- e518b71 Properly implement a fix for PR475 by Chris Lattner · 21 years ago
- 6d316f8 Revert this patch, it broke a ton of programs. by Chris Lattner · 21 years ago
- 9d272d4 Fix PR475. by Alkis Evlogimenos · 21 years ago
- df5a37e Use System/DynamicLibrary instead of Support/DynamicLinker by Reid Spencer · 21 years ago
- 3c600c8 This method does not exist any longer. by Chris Lattner · 21 years ago
- 0050ef8 There is no reason to try to materialize the function from bytecode if it by Chris Lattner · 21 years ago
- 895eddf Implement ExecutionEngine::freeMachineCodeForFunction() by Misha Brukman · 21 years ago
- ec84302 Use cleaner quoting and eliminate blank space by Misha Brukman · 21 years ago
- 551ccae Changes For Bug 352 by Reid Spencer · 21 years ago
- 174f226 Add a special case for argc,argv by Chris Lattner · 21 years ago
- cc22e9f Finally, add support for calling arbitrary non-varargs functions. by Chris Lattner · 21 years ago
- e5eab14 Handle all nullary functions, of any valid return type. by Chris Lattner · 21 years ago
- f7bedf4 Fine, go all of the way and check that the argument types are correct as well. by Chris Lattner · 21 years ago
- d297aea These only really work if returning int or void by Chris Lattner · 21 years ago
- 7c45d78 Handle zero arg function case by Chris Lattner · 21 years ago
- b47130c Simplify code a bit, print error message always instead of asserting. by Chris Lattner · 21 years ago
- f86cafd Make error message consistent with the rest of LLVM by saying that bytecode by Reid Spencer · 21 years ago
- e294753 Fix for bug 391. Improve exeception handling around bcreader invocations. by Reid Spencer · 21 years ago
- 954da37 Add #include <iostream> since Value.h does not #include it any more. by Reid Spencer · 21 years ago
- 50872d5 Add a TargetData to the PassManager regardless of the TargetMachine. by Brian Gaeke · 21 years ago
- da79bd2 Print an error message if there is an error materialize the bc file. by Chris Lattner · 22 years ago
- ff0f1bb No longer run atExit functions from run() by Chris Lattner · 22 years ago
- 028565b This should not be needed anymore by Chris Lattner · 22 years ago
- c07ed13 Implement PR135, lazy emission of global variables by Chris Lattner · 22 years ago
- 4d326fa Cleanup the JIT as per PR176. This renames the VM class to JIT, and merges the by Chris Lattner · 22 years ago
- 1e60a91 Rip JIT specific stuff out of TargetMachine, as per PR176 by Chris Lattner · 22 years ago
- c19aade Finegrainify namespacification by Chris Lattner · 22 years ago
- d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
- 0bb3c2b Remove #include of PassManager.h which was marked FIXME, and apparently is no by Brian Gaeke · 22 years ago
- cb93d8d Remove the *BIG UGLY HACK* from the JIT: PreSelection is now a FunctionPass. by Misha Brukman · 22 years ago
- 11911ab In VM::create(), comment out almost the whole function if NO_JITS_ENABLED, by Brian Gaeke · 22 years ago
- b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
- 0f4f7d9 JIT.cpp: by Misha Brukman · 22 years ago
- 005e5e9 Enabling incremental bytecode loading in the JIT: by Misha Brukman · 22 years ago
- 9722294 ExecutionEngine.h, GenericValue.h --> include/llvm/ExecutionEngine/ by Brian Gaeke · 22 years ago
- 70975ee Make CreateArgv part of lli rather than part of ExecutionEngine. by Brian Gaeke · 22 years ago
- 82d8277 ExecutionEngine.cpp: Move execution engine creation stuff into a new by Brian Gaeke · 22 years ago
- 39c0726 Targets now configure themselves based on the source module, not on the by Chris Lattner · 22 years ago
- 05a1a30 Minor cleanups: wrap at 80 lines. Convert file comment to doxygen format and by Chris Lattner · 22 years ago
- 69582b3 The JIT now passes the environment pointer to the main() function when it by John Criswell · 22 years ago
- a84983e Fix space by Chris Lattner · 22 years ago
- 8274291 * If compiling on X86 or Sparc, automagically enable the JIT for that arch by Misha Brukman · 22 years ago
- de3209b Apparently "sparc" is a macro on sparcs. Ugh. :) by Chris Lattner · 22 years ago
- 97ac14f Use more structured command line option processing by Chris Lattner · 22 years ago
- 7aefa96 #ifdef out code that only applies when the HOSTARCH = sparc by Chris Lattner · 22 years ago
- 4e8c999 ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: by Misha Brukman · 22 years ago
- 906f5fa * Removed SparcEmitter.cpp; rolled into lib/Target/Sparc/SparcV9CodeEmitter.cpp by Misha Brukman · 22 years ago
- bba1b6d Move target specific code to target files. The new MachineCodeEmitter by Chris Lattner · 22 years ago
- abb027c Allow for specification of which JIT to run on the commandline. by Misha Brukman · 22 years ago
- 22080f9 Add support for atexit handlers to the JIT, fixing 2003-05-14-AtExit.c by Chris Lattner · 22 years ago
- 56adf15 Make sure that globals are emitted AFTER the passmanager is set up for the JIT, by Chris Lattner · 22 years ago
- bd199fb Initial checkin of new LLI with JIT compiler by Chris Lattner · 23 years ago