1. df5a7da Add a JITEventListener interface that gets called back when a new function is by Jeffrey Yasskin · 15 years ago
  2. e46161f Fix the Ocaml bindings for the ExecutionEngine: with the change to build by Bob Wilson · 15 years ago
  3. e91208c After obtaining the lock, look if the function has been codegen'd by by Nicolas Geoffray · 15 years ago
  4. a3f99f9 First patch in the direction of splitting MachineCodeEmitter in two subclasses: by Bruno Cardoso Lopes · 15 years ago
  5. b3a847d Allow the JIT ExecutionEngine to report details about the generated machine code. by Argyrios Kyrtzidis · 15 years ago
  6. 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 15 years ago
  7. 98a366d Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 15 years ago
  8. 5e5cb79 The second part of the change from -fast to -O#. This changes the JIT to accept by Bill Wendling · 15 years ago
  9. 3f91bb3ce make sure to unlock keymgr if the JIT is created and destroyed, all by Chris Lattner · 15 years ago
  10. 00f1628 Mac OS X 10.6 and above do not use key manager to register EH frames. by Evan Cheng · 15 years ago
  11. 667d4b8 Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 15 years ago
  12. b9c6c9b Finish cross-process JIT work, and clean up previous work. by Nate Begeman · 15 years ago
  13. 6694198 Fix a thinko in the JIT where the address of a GV was only recorded in the map by Nate Begeman · 15 years ago
  14. 44e3dd1 don't #include a header into the middle of an anon namespace. by Chris Lattner · 15 years ago
  15. 07ab52b Fix the logic in this assertion to properly validate the number of arguments. by Dan Gohman · 15 years ago
  16. a3ac0c1 Reapply r57340. VMKit does not presently rely on materializeFunction by Dan Gohman · 15 years ago
  17. d6b7a24 Add support to the JIT for true non-lazy operation. When a call to a function by Nate Begeman · 15 years ago
  18. 21afcda Split the locking out of JIT::runJITOnFunction so that callers by Dan Gohman · 16 years ago
  19. 2d5424d Fix PR3423: Link llvm on ARM EABI machines. Patch by Robert Schuster. by Evan Cheng · 16 years ago
  20. 60789e4 Add support for deleting a module provider from a JIT in such a way that it does not cause the owned module to be fully materialized. by Nate Begeman · 16 years ago
  21. 4d544a2 Change isGVCompilationDisabled() semantics again. It should abort on any GV that's not constant whether it's "internal" or not. In a server / client environment, GV is returned in the same block of memory as code. However, the memory might not be writable. by Evan Cheng · 16 years ago
  22. bb46f52 Add the private linkage. by Rafael Espindola · 16 years ago
  23. ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 16 years ago
  24. 69f9378 Handle weak_extern in the JIT. This fixes by Dan Gohman · 16 years ago
  25. 77f86ad DisableGVCompilation should not abort on internal GlobalValue's. by Evan Cheng · 16 years ago
  26. cdfc51f Make JIT::runFunction handle functions with non-C calling conventions. by Chris Lattner · 16 years ago
  27. b0b5349 For some targets, it's not possible to place GVs in the same memory buffer as the MachineCodeEmitter allocated memory. Code and data has different read / write / execution privilege requirements. by Evan Cheng · 16 years ago
  28. 46fa139 Support for allocation of TLS variables in the JIT. Allocation of a global by Nicolas Geoffray · 16 years ago
  29. 77fcca8 Revert r57340 move guard mutex in getPointerToFunction as this can cause by Mon P Wang · 16 years ago
  30. 1c341c8 Moved guard mutex upwards to guard materializing a function by Mon P Wang · 16 years ago
  31. 446531e Add DisableGVCompilation which forces the JIT to assert when it tries to allocate space for a GlobalVariable. by Evan Cheng · 16 years ago
  32. d046fc6 Add support for JIT exceptions on Darwin. Since we're dealing with libgcc, by Nicolas Geoffray · 16 years ago
  33. a7ec87c Register the frame register function when allocating the JIT, by Nicolas Geoffray · 16 years ago
  34. 502f20b Add new parameter Fast to createJIT to enable the fast codegen path. by Evan Cheng · 16 years ago
  35. dd947ea Rewrite JIT handling of GlobalVariables so they by Dale Johannesen · 16 years ago
  36. 2dad025 Prune a few dependencies on MachineFunction.h. by Dan Gohman · 16 years ago
  37. f049e07 Fix a couple issues with the JIT and multiple modules: by Nate Begeman · 16 years ago
  38. b1dbcd8 Fix a bunch of 80col violations that arose from the Create API change. Tweak makefile targets to find these better. by Gabor Greif · 16 years ago
  39. 844731a Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 16 years ago
  40. fd7d991 Do not hold the JIT lock when materializing a function and verify if the by Nicolas Geoffray · 16 years ago
  41. 02a260a Switch to using Simplified ConstantFP::get API. by Chris Lattner · 16 years ago
  42. 051a950 API changes for class Use size reduction, wave 1. by Gabor Greif · 16 years ago
  43. 299d9d7 Register EH frames emitted in JIT when using gcc unwinding runtime by Anton Korobeynikov · 16 years ago
  44. d102593 Use getPreferredAlignmentLog or getPreferredAlignment by Duncan Sands · 17 years ago
  45. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  46. 34c9433 add a new ExecutionEngine::createJIT which can be used if you only want by Chris Lattner · 17 years ago
  47. 9f2f142 simplify creation of the interpreter, make ExecutionEngine ctor protected, by Chris Lattner · 17 years ago
  48. 514ab34 Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. by Duncan Sands · 17 years ago
  49. 1abac0d Implement x86 long double in jit (not really complete, but common cases work) by Dale Johannesen · 17 years ago
  50. 43421b3 Next round of APFloat changes. by Dale Johannesen · 17 years ago
  51. 17f218e move assertion into mutex guard, a partial fix for PR1606. by Chris Lattner · 17 years ago
  52. 79e038a eliminate redundant conditions from the signless types conversion. by Chris Lattner · 17 years ago
  53. 52eec54 by David Greene · 17 years ago
  54. 3b30a6e Add detection of __dso_handle presence during configure. Use this information in the by Anton Korobeynikov · 17 years ago
  55. a99be51 Here is the bulk of the sanitizing. by Gabor Greif · 17 years ago
  56. 2c639ad rename JIT::state -> JIT::jitstate to avoid shadowing ExecutionEngine::state by Chris Lattner · 17 years ago
  57. 38f6a15 Simplify code as a result of the change in GenericValue to have a single by Reid Spencer · 17 years ago
  58. d2b7cec Generalize TargetData strings, to support more interesting forms of data. by Chris Lattner · 17 years ago
  59. 990b849 eliminate vector-related allocations by Chris Lattner · 18 years ago
  60. 5cbf985 For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoid by Reid Spencer · 18 years ago
  61. 58092e3 Teach TargetData to handle 'preferred' alignment for each target, and use by Chris Lattner · 18 years ago
  62. a54b7cb For PR1064: by Reid Spencer · 18 years ago
  63. 579dca1 Implement review feedback for the ConstantBool->ConstantInt merge. Chris by Reid Spencer · 18 years ago
  64. 4fe16d6 Rename BoolTy as Int1Ty. Patch by Sheng Zhou. by Reid Spencer · 18 years ago
  65. 6b6b6ef For PR1043: by Zhou Sheng · 18 years ago
  66. e49661b For PR950: Convert signed integer types to signless ones. by Reid Spencer · 18 years ago
  67. c1f400c Fix PR1057 (compilation on macos 10.3), patch by Scott Michel! by Chris Lattner · 18 years ago
  68. 15f46d6 Change inferred cast creation calls to more specific cast creations. by Reid Spencer · 18 years ago
  69. 832171c Removing even more <iostream> includes. by Bill Wendling · 18 years ago
  70. b83eb64 For PR950: by Reid Spencer · 18 years ago
  71. 1911fd4 Completely rearchitect the interface between targets and the pass manager. by Chris Lattner · 18 years ago
  72. c50b76f eliminate use of TM.getName() by Chris Lattner · 18 years ago
  73. b5aaee0 Remove extra spaces. by Evan Cheng · 18 years ago
  74. 78050d6 Last check-in was a mistake... by Evan Cheng · 18 years ago
  75. 4f260b4 *** empty log message *** by Evan Cheng · 18 years ago
  76. fb9c0d7 Better comments. by Evan Cheng · 18 years ago
  77. 5f271af Yikes. This requires checking apple gcc version. by Evan Cheng · 18 years ago
  78. fe85403 initial changes to support JIT'ing from multiple module providers, implicitly by Chris Lattner · 18 years ago
  79. b76ea74 Fix the build on my old and busted version of OS X by Nate Begeman · 18 years ago
  80. b82ab94 Forgot to #ifdef __APPLE__ by Evan Cheng · 18 years ago
  81. 5f42c55 Resolve __dso_handle. by Evan Cheng · 18 years ago
  82. 21c39a6 Remove non-portable optimization that isn't worth it by Chris Lattner · 18 years ago
  83. 5c72a3a Adapt to new interface function materialization interface by Chris Lattner · 18 years ago
  84. 870286a Fix -pedantic warnings. by Chris Lattner · 18 years ago
  85. 07000c6 Refactor a bunch of includes so that TargetMachine.h doesn't have to include by Owen Anderson · 18 years ago
  86. e7fd553 Move some methods out of line so that MutexGuard.h isn't needed in a public header. by Chris Lattner · 18 years ago
  87. b93b034 Adjust to use proper TargetData copy ctor by Chris Lattner · 18 years ago
  88. 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 · 18 years ago
  89. f5d438c Do not make the JIT memory manager manage the memory for globals. Instead by Chris Lattner · 18 years ago
  90. 2f51914 Get JIT/Interpreter working on Windows again. by Jeff Cohen · 18 years ago
  91. 2fe4bb0 Eliminate the dependency of ExecutionEngine on the JIT/Interpreter libraries. by Chris Lattner · 18 years ago
  92. 51e6a38 wrap long line by Chris Lattner · 19 years ago
  93. 6a97461 Like constants, globals on some platforms are GOT relative. This means they have to be allocated by Andrew Lenharth · 19 years ago
  94. 00b16889 Eliminate all remaining tabs and trailing spaces. by Jeff Cohen · 19 years ago
  95. ee44863 For PR540: by Reid Spencer · 19 years ago
  96. a471e04 Make the stub functions be tail calls by Chris Lattner · 19 years ago
  97. f976c85 Remove trailing whitespace by Misha Brukman · 19 years ago
  98. a8101c1 Silence VS warnings. by Chris Lattner · 20 years ago
  99. e518b71 Properly implement a fix for PR475 by Chris Lattner · 20 years ago
  100. 6d316f8 Revert this patch, it broke a ton of programs. by Chris Lattner · 20 years ago