1. df5a7da Add a JITEventListener interface that gets called back when a new function is by Jeffrey Yasskin · 15 years ago
  2. ae3a0be Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 15 years ago
  3. 186c670 Use uint8_t and int32_t in {JIT,Machine}CodeEmiters by Bruno Cardoso Lopes · 15 years ago
  4. bae049c Revert 72650 by Bruno Cardoso Lopes · 15 years ago
  5. af90a1c Use uint8_t and int32_t in {JIT,Machine}CodeEmiters by Bruno Cardoso Lopes · 15 years ago
  6. a3f99f9 First patch in the direction of splitting MachineCodeEmitter in two subclasses: by Bruno Cardoso Lopes · 15 years ago
  7. b3a847d Allow the JIT ExecutionEngine to report details about the generated machine code. by Argyrios Kyrtzidis · 15 years ago
  8. 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 15 years ago
  9. 19fee41 Set FnEnd in JITEmitter::finishFunction to point strictly to the end of function's machine code. by Argyrios Kyrtzidis · 15 years ago
  10. e2bcf13 Under unusual circumstances (jitting a function that causes the creation of by Nick Lewycky · 15 years ago
  11. 848b314 Use an AssertingVH to detect the case where the Function was deleted but by Nick Lewycky · 15 years ago
  12. 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 · 15 years ago
  13. 841c6a4 Allow cross-process JIT to handle MachineRelocations of the ExternalSymbol by Nate Begeman · 15 years ago
  14. b9c6c9b Finish cross-process JIT work, and clean up previous work. by Nate Begeman · 15 years ago
  15. be3ae8e switch this message back to only being in -debug mode. by Chris Lattner · 15 years ago
  16. 50cd6fd When allocating stubs, keep track of which Functions are referencing the stub. by Nate Begeman · 15 years ago
  17. 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
  18. 0b82f77 Fix the calculation for how big the allocated stub needs to be. by Nate Begeman · 15 years ago
  19. d6b7a24 Add support to the JIT for true non-lazy operation. When a call to a function by Nate Begeman · 15 years ago
  20. ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 16 years ago
  21. 69f9378 Handle weak_extern in the JIT. This fixes by Dan Gohman · 16 years ago
  22. 5788d1a Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some overflow issues. Patch by Thomas Jablin. by Evan Cheng · 16 years ago
  23. 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 · 16 years ago
  24. 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 · 16 years ago
  25. e7c3551 Change binary dump format. by Evan Cheng · 16 years ago
  26. e4d783d Comments and indentation. by Evan Cheng · 16 years ago
  27. 5594f12 Forgot these. by Evan Cheng · 16 years ago
  28. fff484f Remove a InvalidateInstructionCache call with incorrect size. by Evan Cheng · 16 years ago
  29. ce4a70b Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ptr. by Evan Cheng · 16 years ago
  30. d7398c9 Rename isString -> isExternalSymbol; getString -> getExternalSymbol since these work on externsym machine relocations. by Evan Cheng · 16 years ago
  31. ca66b08 More debug output. by Evan Cheng · 16 years ago
  32. 366cf29 More debug output. by Evan Cheng · 16 years ago
  33. 47c01a0 Jump tables may be emitted by target. by Evan Cheng · 16 years ago
  34. eb5d95a Improve JIT debugging outputs format consistency. by Evan Cheng · 16 years ago
  35. 6863fb0 Need a \n. by Evan Cheng · 16 years ago
  36. a7916f5 Undo 58778 but makes the binary dump prettier. by Evan Cheng · 16 years ago
  37. 5e136c0 Remove debug output that's not really useful. by Evan Cheng · 16 years ago
  38. c96a8e7 Rename isGVLazyPtr to isGVNonLazyPtr relocation. This represents Mac OS X by Evan Cheng · 16 years ago
  39. 9200605 Silence a compiler warning. by Evan Cheng · 16 years ago
  40. 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 · 16 years ago
  41. ef5784e Let target resolve some relocation results. by Evan Cheng · 16 years ago
  42. bc6d876 Support for constant islands in the ARM JIT. by Jim Grosbach · 16 years ago
  43. 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 · 16 years ago
  44. cce6c29 On Darwin ARM, memory needs special handling to do JIT. This patch expands by Jim Grosbach · 16 years ago
  45. d735b80 Switch the MachineOperand accessors back to the short names like by Dan Gohman · 16 years ago
  46. dcb31e1 Acquire the lock only when necessary. More precisely, do not acquire by Nicolas Geoffray · 16 years ago
  47. bc4707a Preliminary support for systems which require changing JIT memory regions privilege from read / write to read / executable. by Evan Cheng · 16 years ago
  48. 19e861a Make safer variant of alias resolution routine to be default by Anton Korobeynikov · 16 years ago
  49. 252ddfb MMI may be null. by Evan Cheng · 16 years ago
  50. a044dfc Get rid of a couple of dynamic_cast. by Evan Cheng · 16 years ago
  51. 50dd1d0 Some fixes for x86-64 JIT. Make it use small code by Dale Johannesen · 16 years ago
  52. dd947ea Rewrite JIT handling of GlobalVariables so they by Dale Johannesen · 16 years ago
  53. 18e0459 Implement JIT support for global aliases, patch by David Chisnall! by Chris Lattner · 16 years ago
  54. bc52cad Switch the PPC backend and target-independent JIT to use the libsystem by Chris Lattner · 16 years ago
  55. 210539e Provide generic hooks for icache invalidation. Add PPC implementation. by Anton Korobeynikov · 16 years ago
  56. f44085a Fix a backwards check in the JIT symbol table code by Nate Begeman · 16 years ago
  57. bdb6ca1 Disable JIT symbol table for now. by Evan Cheng · 16 years ago
  58. 580631a Be pessimistic in computing the buffer size when aligning. by Nicolas Geoffray · 16 years ago
  59. 5913e6c Cosmetic changes, as suggested by Evan. No functionality changes. by Nicolas Geoffray · 16 years ago
  60. dc17ab2 Enable jitting with a known memory size. by Nicolas Geoffray · 16 years ago
  61. 51cc3c1 Correlate stubs with functions in JIT: when emitting a stub, the JIT tells the memory manager which function by Nicolas Geoffray · 16 years ago
  62. 3b37448 Fix some serious logic errors that broke the jit on darwin/x86-64. by Chris Lattner · 16 years ago
  63. 97b8c40 Add debugging code. by Evan Cheng · 16 years ago
  64. 6098e4b Reenable JIT symbol table. by Chris Lattner · 16 years ago
  65. e524191 disable this for now. by Chris Lattner · 16 years ago
  66. 8ac66c1 Provide an initial cut at exposing JIT compiled symbols to performance by Chris Lattner · 16 years ago
  67. 950a4c4 Add explicit keywords. by Dan Gohman · 16 years ago
  68. 0fdaa0b fix 80 col violations by Chris Lattner · 16 years ago
  69. afe6c2b Enable exception handling int JIT by Nicolas Geoffray · 16 years ago
  70. 1910e2f JITEmitter.cpp was trying to sync the icache for function stubs, but by Chris Lattner · 17 years ago
  71. 2a3e08b X86 JIT PIC jumptable support. by Evan Cheng · 17 years ago
  72. be8c03f X86 PIC JIT support fixes: encoding bugs, add lazy pointer stubs support. by Evan Cheng · 17 years ago
  73. 02aabbf Change MachineRelocation::DoesntNeedFnStub to NeedStub. This fields will be used by Evan Cheng · 17 years ago
  74. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  75. 9f2f142 simplify creation of the interpreter, make ExecutionEngine ctor protected, by Chris Lattner · 17 years ago
  76. 8907b4b split the JIT memory management code out from the main JIT logic into its by Chris Lattner · 17 years ago
  77. 514ab34 Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. by Duncan Sands · 17 years ago
  78. 087b72d Hush a noisy warning from GCC 4.2 about overflow during conversion by using by Reid Spencer · 17 years ago
  79. e510b3a fix typos by Gabor Greif · 17 years ago
  80. a99be51 Here is the bulk of the sanitizing. by Gabor Greif · 17 years ago
  81. 9da60f9 (For Chris): Fix failure where we rejected compiling stubs when lazy compilation is disabled. by Evan Cheng · 17 years ago
  82. c6551ff Implement PR1240 by Anton Korobeynikov · 17 years ago
  83. e748401 Fix PR1216 by cleaning up the ownership of JITResolver. by Chris Lattner · 17 years ago
  84. 5cbf985 For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoid by Reid Spencer · 18 years ago
  85. fd58e6e Moved disassembler to libSystem by Anton Korobeynikov · 18 years ago
  86. c5633c2 DOUT still evaluates side effects, even though it doesn't print. This means by Chris Lattner · 18 years ago
  87. a9ebd2b fix build on amd64 by Andrew Lenharth · 18 years ago
  88. 8cd4c3e Adding disassembler interface and external hook to udis86 library. by Anton Korobeynikov · 18 years ago
  89. 3634373 remove static ctors from Statistic objects by Chris Lattner · 18 years ago
  90. b92767a Simplify the fetching of relocation mode. by Jim Laskey · 18 years ago
  91. acd80ac 1. Tidy up jump table info. by Jim Laskey · 18 years ago
  92. 832171c Removing even more <iostream> includes. by Bill Wendling · 18 years ago
  93. ac0b6ae Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 18 years ago
  94. 9a1e9b9 Allow target to specify alignment for function stub. by Evan Cheng · 18 years ago
  95. 9cab56d if lazy compilation is disabled, print an error message and abort if by Chris Lattner · 18 years ago
  96. 3ed469c For PR786: by Reid Spencer · 18 years ago
  97. c633627 Unbreak the JIT by Chris Lattner · 18 years ago
  98. b74ed07 Adding dllimport, dllexport and external weak linkage types. by Anton Korobeynikov · 18 years ago
  99. 8a65009 Fix a ton of jit failures by Chris Lattner · 18 years ago
  100. cd5731d Reflect MachineConstantPoolEntry changes. by Evan Cheng · 18 years ago