1. fbee579 Simplify / normalize some uses of Value::getName. by Daniel Dunbar · 16 years ago
  2. 4b1511b Add EngineBuilder to ExecutionEngine in favor of the five optional argument EE::create(). by Reid Kleckner · 16 years ago
  3. 32360a7 Add line numbers to OProfile. To do this, I added a processDebugLoc() by Jeffrey Yasskin · 16 years ago
  4. 1da8be2 Remove unused header. by Daniel Dunbar · 16 years ago
  5. 1d92921 Switch llc and createJIT to use simpler command line parsing for -march. by Daniel Dunbar · 16 years ago
  6. 51b198a Reapply TargetRegistry refactoring commits. by Daniel Dunbar · 16 years ago
  7. 2286f8d Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repair broken LLVM-GCC build. by Stuart Hastings · 16 years ago
  8. 54785e6 Migrate llc and the JIT to using the TargetRegistry for lookups. by Daniel Dunbar · 16 years ago
  9. 9adc0ab Move EVER MORE stuff over to LLVMContext. by Owen Anderson · 16 years ago
  10. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  11. deb052a Match declaration to definition. by Daniel Dunbar · 16 years ago
  12. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
  13. 7d696d8 Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
  14. dd9f8bb Oops. s/#if defined(USE_OPROFILE)/#if USE_OPROFILE/. We #define by Jeffrey Yasskin · 16 years ago
  15. 8f6d9a7 Add a --with-oprofile flag to configure, which uses OProfile's agent by Jeffrey Yasskin · 16 years ago
  16. 489393d Add an option to allocate JITed global data separately from code. By by Jeffrey Yasskin · 16 years ago
  17. 31e2466 Introduce new error handling API. by Torok Edwin · 16 years ago
  18. 0fd3806 improve the APIs for creating struct and function types with no arguments/elements by Chris Lattner · 16 years ago
  19. f2641eb add file to cmake by Chris Lattner · 16 years ago
  20. df5a7da Add a JITEventListener interface that gets called back when a new function is by Jeffrey Yasskin · 16 years ago
  21. e46161f Fix the Ocaml bindings for the ExecutionEngine: with the change to build by Bob Wilson · 16 years ago
  22. 7e9e36a Eliminate object-relinking support from CMake. Fixes PR 4429 and by Douglas Gregor · 16 years ago
  23. e91208c After obtaining the lock, look if the function has been codegen'd by by Nicolas Geoffray · 16 years ago
  24. ae3a0be Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 16 years ago
  25. 186c670 Use uint8_t and int32_t in {JIT,Machine}CodeEmiters by Bruno Cardoso Lopes · 16 years ago
  26. bae049c Revert 72650 by Bruno Cardoso Lopes · 16 years ago
  27. 434dd4f Fix new CodeEmitter stuff to follow LLVM codying style. Patch by Aaron Gray by Bruno Cardoso Lopes · 16 years ago
  28. af90a1c Use uint8_t and int32_t in {JIT,Machine}CodeEmiters by Bruno Cardoso Lopes · 16 years ago
  29. a3f99f9 First patch in the direction of splitting MachineCodeEmitter in two subclasses: by Bruno Cardoso Lopes · 16 years ago
  30. 1f04462 stat64/open64/lseek64 for the interpreter by Torok Edwin · 16 years ago
  31. b3a847d Allow the JIT ExecutionEngine to report details about the generated machine code. by Argyrios Kyrtzidis · 16 years ago
  32. 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
  33. 19fee41 Set FnEnd in JITEmitter::finishFunction to point strictly to the end of function's machine code. by Argyrios Kyrtzidis · 16 years ago
  34. 98a366d Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 16 years ago
  35. 5e5cb79 The second part of the change from -fast to -O#. This changes the JIT to accept by Bill Wendling · 16 years ago
  36. e2bcf13 Under unusual circumstances (jitting a function that causes the creation of by Nick Lewycky · 16 years ago
  37. 848b314 Use an AssertingVH to detect the case where the Function was deleted but by Nick Lewycky · 16 years ago
  38. 3f91bb3ce make sure to unlock keymgr if the JIT is created and destroyed, all by Chris Lattner · 16 years ago
  39. 00f1628 Mac OS X 10.6 and above do not use key manager to register EH frames. by Evan Cheng · 16 years ago
  40. de551f9 Use CHAR_BIT instead of hard-coding 8 in several places where it by Dan Gohman · 16 years ago
  41. 1606e8e Fix some significant problems with constant pools that resulted in unnecessary paddings between constant pool entries, larger than necessary alignments (e.g. 8 byte alignment for .literal4 sections), and potentially other issues. by Evan Cheng · 16 years ago
  42. 841c6a4 Allow cross-process JIT to handle MachineRelocations of the ExternalSymbol by Nate Begeman · 16 years ago
  43. 96c96b4 Fix PR3724 by searching for the largest free block when by Chris Lattner · 16 years ago
  44. 667d4b8 Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 16 years ago
  45. b9c6c9b Finish cross-process JIT work, and clean up previous work. by Nate Begeman · 16 years ago
  46. be3ae8e switch this message back to only being in -debug mode. by Chris Lattner · 16 years ago
  47. 50cd6fd When allocating stubs, keep track of which Functions are referencing the stub. by Nate Begeman · 16 years ago
  48. 6694198 Fix a thinko in the JIT where the address of a GV was only recorded in the map by Nate Begeman · 16 years ago
  49. 44e3dd1 don't #include a header into the middle of an anon namespace. by Chris Lattner · 16 years ago
  50. 0b82f77 Fix the calculation for how big the allocated stub needs to be. by Nate Begeman · 16 years ago
  51. 07ab52b Fix the logic in this assertion to properly validate the number of arguments. by Dan Gohman · 16 years ago
  52. a3ac0c1 Reapply r57340. VMKit does not presently rely on materializeFunction by Dan Gohman · 16 years ago
  53. d6b7a24 Add support to the JIT for true non-lazy operation. When a call to a function by Nate Begeman · 16 years ago
  54. 42cc8f1 On 64bit we may have a personality function which requires 64 bits to by Nicolas Geoffray · 16 years ago
  55. 21afcda Split the locking out of JIT::runJITOnFunction so that callers by Dan Gohman · 17 years ago
  56. 2d5424d Fix PR3423: Link llvm on ARM EABI machines. Patch by Robert Schuster. by Evan Cheng · 17 years ago
  57. 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 · 17 years ago
  58. 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 · 17 years ago
  59. 2388a58 Registry.h should not depend on CommandLine.h. by Mikhail Glushenkov · 17 years ago
  60. 5c1799b Delete trailing whitespace. by Mikhail Glushenkov · 17 years ago
  61. bb46f52 Add the private linkage. by Rafael Espindola · 17 years ago
  62. ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
  63. 9b8f542 Removed trailing whitespace from Makefiles. by Misha Brukman · 17 years ago
  64. 5951368 Fix misplaced right parentheses. by Evan Cheng · 17 years ago
  65. 69f9378 Handle weak_extern in the JIT. This fixes by Dan Gohman · 17 years ago
  66. 5788d1a Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some overflow issues. Patch by Thomas Jablin. by Evan Cheng · 17 years ago
  67. 369e02d Fix a bug introduced by r59265. If lazy compilation is disabled, return actual function ptr instead of ptr to stub if function is already compiled. by Evan Cheng · 17 years ago
  68. 77f86ad DisableGVCompilation should not abort on internal GlobalValue's. by Evan Cheng · 17 years ago
  69. cdfc51f Make JIT::runFunction handle functions with non-C calling conventions. by Chris Lattner · 17 years ago
  70. 67c8c4c Implement support for JIT exceptions on X86_64. Relative offsets are by Nicolas Geoffray · 17 years ago
  71. 704bff9 Always emit a function pointer as a pointer to the function stub (if there is one). This makes it possible to compare function pointer values in lazy compilation mode. This fixes PR3043. by Evan Cheng · 17 years ago
  72. e7c3551 Change binary dump format. by Evan Cheng · 17 years ago
  73. e4d783d Comments and indentation. by Evan Cheng · 17 years ago
  74. 5594f12 Forgot these. by Evan Cheng · 17 years ago
  75. fff484f Remove a InvalidateInstructionCache call with incorrect size. by Evan Cheng · 17 years ago
  76. ce4a70b Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ptr. by Evan Cheng · 17 years ago
  77. d7398c9 Rename isString -> isExternalSymbol; getString -> getExternalSymbol since these work on externsym machine relocations. by Evan Cheng · 17 years ago
  78. ca66b08 More debug output. by Evan Cheng · 17 years ago
  79. 366cf29 More debug output. by Evan Cheng · 17 years ago
  80. 47c01a0 Jump tables may be emitted by target. by Evan Cheng · 17 years ago
  81. eb5d95a Improve JIT debugging outputs format consistency. by Evan Cheng · 17 years ago
  82. 6863fb0 Need a \n. by Evan Cheng · 17 years ago
  83. a7916f5 Undo 58778 but makes the binary dump prettier. by Evan Cheng · 17 years ago
  84. 5e136c0 Remove debug output that's not really useful. by Evan Cheng · 17 years ago
  85. c96a8e7 Rename isGVLazyPtr to isGVNonLazyPtr relocation. This represents Mac OS X by Evan Cheng · 17 years ago
  86. 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 · 17 years ago
  87. 9200605 Silence a compiler warning. by Evan Cheng · 17 years ago
  88. 8fe9535 Revert errant deletion. The target needs to be able to specify that it doesn't want the generic constant pool to be emitted. by Jim Grosbach · 17 years ago
  89. ef5784e Let target resolve some relocation results. by Evan Cheng · 17 years ago
  90. bc6d876 Support for constant islands in the ARM JIT. by Jim Grosbach · 17 years ago
  91. 46fa139 Support for allocation of TLS variables in the JIT. Allocation of a global by Nicolas Geoffray · 17 years ago
  92. cef7527 fix a tricky bug in the JIT global variable emitter, that was triggered when JITing a variable independently of a function. This lead to sharing memory memory between functions and GVs thus changing the value of a GV could change the code in execution. more details on the ML. by Nuno Lopes · 17 years ago
  93. 77fcca8 Revert r57340 move guard mutex in getPointerToFunction as this can cause by Mon P Wang · 17 years ago
  94. 1c341c8 Moved guard mutex upwards to guard materializing a function by Mon P Wang · 17 years ago
  95. 4520dd2 Add <cstdio> include where needed by gcc-4.4. Patch by Samuel Tardieu. by Duncan Sands · 17 years ago
  96. 489032a Unbreak build. by Daniel Dunbar · 17 years ago
  97. cce6c29 On Darwin ARM, memory needs special handling to do JIT. This patch expands by Jim Grosbach · 17 years ago
  98. d735b80 Switch the MachineOperand accessors back to the short names like by Dan Gohman · 17 years ago
  99. dcb31e1 Acquire the lock only when necessary. More precisely, do not acquire by Nicolas Geoffray · 17 years ago
  100. 446531e Add DisableGVCompilation which forces the JIT to assert when it tries to allocate space for a GlobalVariable. by Evan Cheng · 17 years ago