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