1. 7d60b90 Add handling for GlobalAliases in ExecutionEngine::getConstantValue. by Lang Hames · 7 years ago
  2. d34e60c Rename DEBUG macro to LLVM_DEBUG. by Nicola Zaghen · 7 years ago
  3. 5f8f34e4 Remove \brief commands from doxygen comments. by Adrian Prantl · 7 years ago
  4. b72f484 [ORC] Re-apply r322913 with a fix for a read-after-free error. by Lang Hames · 8 years ago
  5. 44efd04 [ORC] Revert r322913 while I investigate an ASan failure. by Lang Hames · 8 years ago
  6. 817df9f [ORC] Redesign the JITSymbolResolver interface to support bulk queries. by Lang Hames · 8 years ago
  7. 8e328d6 [ExecutionEngine] Remove an unused variable. by Lang Hames · 8 years ago
  8. 79e238a Delete Default and JITDefault code models by Rafael Espindola · 8 years ago
  9. 00b3499 Use MutableArrayRef for APFloat::convertToInteger by Simon Pilgrim · 9 years ago
  10. 9abf242 Strip trailing whitespace by Simon Pilgrim · 9 years ago
  11. 17c7f70 Replace APFloatBase static fltSemantics data members with getter functions by Stephan Bergmann · 9 years ago
  12. 7419e94 Use StringRef instead of raw pointer in ExecutionEngine by Mehdi Amini · 9 years ago
  13. 3301c7e [ExecutionEngine] Move ObjectCache::anchor from MCJIT to ExecutionEngine. by Lang Hames · 9 years ago
  14. ad4a911 [ExecutionEngine][MCJIT][Orc] Replace RuntimeDyld::SymbolInfo with JITSymbol. by Lang Hames · 9 years ago
  15. 6d88fde IR: Introduce Module::global_objects(). by Peter Collingbourne · 9 years ago
  16. 8c34dd8 Delete Reloc::Default. by Rafael Espindola · 9 years ago
  17. 5f6eaac GlobalValue: use getValueType() instead of getType()->getPointerElementType(). by Manuel Jacob · 10 years ago
  18. da00f2f Update to use new name alignTo(). by Rui Ueyama · 10 years ago
  19. 4ead920 ExecutionEngine: Remove implicit ilist iterator conversions, NFC by Duncan P. N. Exon Smith · 10 years ago
  20. b12db0e Remove roundingMode argument in APFloat::mod by Stephen Canon · 10 years ago
  21. 774b584 -Wdeprecated-clean: Fix cases of violating the rule of 5 in ways that are deprecated in C++11 by David Blaikie · 10 years ago
  22. e3dcce9 De-constify pointers to Type since they can't be modified. NFC by Craig Topper · 10 years ago
  23. 3393cfd [MCJIT] Fix PR20656 by teaching MCJIT to honor ExecutionEngine's global mapping. by Lang Hames · 10 years ago
  24. a3fcefb Make ExecutionEngine owning a DataLayout by Mehdi Amini · 10 years ago
  25. 8c3b4f2 Revert "Make ExecutionEngine owning a DataLayout" by Michael Kuperstein · 10 years ago
  26. f2643f4 Make ExecutionEngine owning a DataLayout by Mehdi Amini · 10 years ago
  27. c233f74 Simplify the Mangler interface now that DataLayout is mandatory. by Rafael Espindola · 10 years ago
  28. 73378eb [MCJIT] Add a FindGlobalVariableNamed utility by Keno Fischer · 10 years ago
  29. bd7b1c8 [ExecutionEngine] ArrayRefize argument passing. by Benjamin Kramer · 10 years ago
  30. f5e2fc4 Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types by Benjamin Kramer · 10 years ago
  31. 3dac3f7 [ExecutionEngine] Fix MCJIT::addGlobalMapping. by Lang Hames · 10 years ago
  32. 633fe14 [MCJIT][Orc] Refactor RTDyldMemoryManager, weave RuntimeDyld::SymbolInfo through by Lang Hames · 10 years ago
  33. 298a3a0 Fold init() helpers into constructors. NFC. by Benjamin Kramer · 11 years ago
  34. 0a446fd Add missing includes. make_unique proliferated everywhere. by Benjamin Kramer · 11 years ago
  35. 5f92a08 [ExecutionEngine] FindFunctionNamed: Skip declarations by Keno Fischer · 11 years ago
  36. 93de2a1 [Orc] New JIT APIs. by Lang Hames · 11 years ago
  37. 4a5697e [MCJIT] Unique-ptrify the RTDyldMemoryManager member of MCJIT. NFC. by Lang Hames · 11 years ago
  38. 7ea98e1 [MCJIT] Replace JITEventListener::anchor (temporarily removed in r222861), and by Lang Hames · 11 years ago
  39. a662d16 [MCJIT] Remove JITEventListener's anchor until I can determine the right place by Lang Hames · 11 years ago
  40. b5c7b1f [MCJIT] Reapply r222828 and r222810-r222812 with fix for MSVC move-op issues. by Lang Hames · 11 years ago
  41. 9fb4114 Reverting r222828 and r222810-r222812 as they broke the build on Windows. by Aaron Ballman · 11 years ago
  42. 829a19a [MCJIT] Clean up RuntimeDyld's quirky object-ownership/modification scheme. by Lang Hames · 11 years ago
  43. f3cadce IR: Replace DataLayout::RoundUpAlignment with RoundUpToAlignment by David Majnemer · 11 years ago
  44. 0517424 [MCJIT] Remove a few more references to JITMemoryManager that survived r218316. by Lang Hames · 11 years ago
  45. 0f15490 [MCJIT] Delete the JTIMemoryManager and associated APIs. by Lang Hames · 11 years ago
  46. 196e323 unique_ptrify passing the TargetMachine to ExecutionEngine::MCJITCtor by David Blaikie · 11 years ago
  47. 79cc1e3 Reinstate "Nuke the old JIT." by Eric Christopher · 11 years ago
  48. 7271c19 Give ExecutionEngine of top level buffers. by Rafael Espindola · 11 years ago
  49. 4b535d1 ExecutionEngine: address review comments by Dylan Noblesmith · 11 years ago
  50. c4a9942 ExecutionEngine: unique_ptr-ify by Dylan Noblesmith · 11 years ago
  51. 48af1c2 Don't own the buffer in object::Binary. by Rafael Espindola · 11 years ago
  52. 2a8a279 Make it explicit that ExecutionEngine takes ownership of the modules. by Rafael Espindola · 11 years ago
  53. 57d9ab6 Use a range loop. NFC. by Rafael Espindola · 11 years ago
  54. b9fd9ed Temporarily Revert "Nuke the old JIT." as it's not quite ready to by Eric Christopher · 11 years ago
  55. f8b27c4 Nuke the old JIT. by Rafael Espindola · 11 years ago
  56. dd39657 Include Archive.h by Rafael Espindola · 11 years ago
  57. acfd628 Move virtual method out of line. by Rafael Espindola · 11 years ago
  58. b9a23cd Delete dead code. by Rafael Espindola · 11 years ago
  59. 8c4c021 Remove dead code. by Rafael Espindola · 11 years ago
  60. 568c31f ExecutionEngine::create(): fix interpreter fallback when JIT is unavailable by Alp Toker · 11 years ago
  61. c04b892 Revert "Replace Execution Engine's mutex with std::recursive_mutex." by Zachary Turner · 11 years ago
  62. 62ce4e8 Replace Execution Engine's mutex with std::recursive_mutex. by Zachary Turner · 11 years ago
  63. 2f825df Clean up some unnecessary mutex guards. by Zachary Turner · 11 years ago
  64. 322db9e ExecutionEngine: avoid NDEBUG in headers by Alp Toker · 11 years ago
  65. 49bb65a Use range loop. by Rafael Espindola · 11 years ago
  66. 35907d8 Fix MSVC build broken by r207580 by David Blaikie · 11 years ago
  67. f58e376 [Modules] Fix potential ODR violations by sinking the DEBUG_TYPE by Chandler Carruth · 11 years ago
  68. bc87601 [ExecutionEngine] Allow JIT clients to enable/disable module verification. by Lang Hames · 11 years ago
  69. 2617dcc [C++11] More 'nullptr' conversion. In some cases just using a boolean check instead of comparing to nullptr. by Craig Topper · 11 years ago
  70. b51ff60 [C++11] Add 'override' keyword to virtual methods that override their base class. by Craig Topper · 12 years ago
  71. 56440fd Replace OwningPtr<T> with std::unique_ptr<T>. by Ahmed Charles · 12 years ago
  72. 96c9d95 [C++11] Replace OwningPtr::take() with OwningPtr::release(). by Ahmed Charles · 12 years ago
  73. 4220e9c [Modules] Move ValueHandle into the IR library where Value itself lives. by Chandler Carruth · 12 years ago
  74. 7c68beb Rename some member variables from TD to DL. by Rafael Espindola · 12 years ago
  75. 7157bb7 Decouple dllexport/dllimport from linkage by Nico Rieck · 12 years ago
  76. 9d2e0df Revert "Decouple dllexport/dllimport from linkage" by Nico Rieck · 12 years ago
  77. e43aaf7 Decouple dllexport/dllimport from linkage by Nico Rieck · 12 years ago
  78. 8a8cd2b Re-sort all of the includes with ./utils/sort_includes.py so that by Chandler Carruth · 12 years ago
  79. d12ccbd [weak vtables] Remove a bunch of weak vtables by Juergen Ributzka · 12 years ago
  80. 49109a2 Revert r194865 and r194874. by Alexey Samsonov · 12 years ago
  81. dbedae8 [weak vtables] Remove a bunch of weak vtables by Juergen Ributzka · 12 years ago
  82. 3b44237 Don't try to initialize memory for a global if the allocation failed in ExecutionEngine. by Andrew Kaylor · 12 years ago
  83. 7ef22b8 Remove dead code. by Rafael Espindola · 12 years ago
  84. 8e97f01 LLVM Interpreter: implementation of "insertvalue" and "extractvalue"; by Elena Demikhovsky · 12 years ago
  85. af0dea1 Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid specifying the vector size. by Craig Topper · 12 years ago
  86. 9bc53e8 SectionMemoryManager shouldn't be a JITMemoryManager. Previously, the by Filip Pizlo · 12 years ago
  87. 41cb64f Make the host endianness check an integer constant expression. by Rafael Espindola · 12 years ago
  88. be79a7a Add support for vector data types in the LLVM interpreter. by Nadav Rotem · 12 years ago
  89. 29178a3 Make APFloat constructor require explicit semantics. by Tim Northover · 13 years ago
  90. 82b6357 Fix Casting by David Greene · 13 years ago
  91. 9fb823b Move all of the header files which are involved in modelling the LLVM IR by Chandler Carruth · 13 years ago
  92. b6ad982 convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumulateConstantOffset(). by Nuno Lopes · 13 years ago
  93. ed0881b Use the new script to sort the includes of every file under lib. by Chandler Carruth · 13 years ago
  94. 5da3f05 Revert the majority of the next patch in the address space series: by Chandler Carruth · 13 years ago
  95. fc1f2cd Fix regression in old-style JIT. by Eli Friedman · 13 years ago
  96. bf3eeb2 Add some cleanup to the DataLayout changes requested by Chandler. by Micah Villmow · 13 years ago
  97. 4bb926d Resubmit the changes to llvm core to update the functions to support different pointer sizes on a per address space basis. by Micah Villmow · 13 years ago
  98. 0c61134 Revert 165732 for further review. by Micah Villmow · 13 years ago
  99. 0831897 Add in the first iteration of support for llvm/clang/lldb to allow variable per address space pointer sizes to be optimized correctly. by Micah Villmow · 13 years ago
  100. cdfe20b Move TargetData to DataLayout. by Micah Villmow · 13 years ago