1. 32c7a5e Fix some more 80-col violas. by Daniel Dunbar · 14 years ago
  2. b35fd44 Fix the cleanup process of exception information in JIT. Now JIT by Duncan Sands · 14 years ago
  3. 83a82ac When creating a JIT, try to load the program so that we can resolve symbols by Nick Lewycky · 14 years ago
  4. 1f74ad7 Stop the JIT from refusing to work just because the program it was compiled into by Nick Lewycky · 14 years ago
  5. e4373b0 Don't call __register_frame from the JIT on systems that use setjmp/longjmp by Bob Wilson · 14 years ago
  6. 68feb22 first part of JIT support for address of labels, part of PR7264, patch by Yuri! by Chris Lattner · 14 years ago
  7. 75361b6 rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 15 years ago
  8. 1df9859 There are two ways of checking for a given type, for example isa<PointerType>(T) by Duncan Sands · 15 years ago
  9. b0bc6c3 Uniformize the names of type predicates: rather than having isFloatTy and by Duncan Sands · 15 years ago
  10. 3174f67 Make JIT::runFunction clean up the generated stub function. by Jeffrey Yasskin · 15 years ago
  11. 40966a7 Make it possible to create multiple JIT instances at the same time, by removing by Jeffrey Yasskin · 15 years ago
  12. f451cb8 Fix "the the" and similar typos. by Dan Gohman · 15 years ago
  13. 4688261 Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp. by Jeffrey Yasskin · 15 years ago
  14. f0356fe Kill ModuleProvider and ghost linkage by inverting the relationship between by Jeffrey Yasskin · 15 years ago
  15. 8c65f6e Move remaining stuff to the isInteger predicate. by Benjamin Kramer · 15 years ago
  16. 11acaa3 Convert a ton of simple integer type equality tests to the new predicate. by Benjamin Kramer · 15 years ago
  17. f012705 Avoid going through the LLVMContext for type equality where it's safe to dereference the type pointer. by Benjamin Kramer · 15 years ago
  18. 92fdf45 Fix a crash in JIT::recompileAndRelinkFunction(). It doesn't pass the MCI by Jeffrey Yasskin · 15 years ago
  19. aad0d52 Don't codegen available_externally functions. Fixes http://llvm.org/PR5735. by Jeffrey Yasskin · 15 years ago
  20. 0c479d3 Formatting. by Eric Christopher · 15 years ago
  21. 898e9df Reinstate r91208 to fix available_externally linkage for globals, with by Jeffrey Yasskin · 15 years ago
  22. 9b8ff28 Revert r91208. Something on Linux prevents the JIT from looking up a symbol by Jeffrey Yasskin · 15 years ago
  23. 5cc966a Fix available_externally linkage for globals. It's probably still not by Jeffrey Yasskin · 15 years ago
  24. 88b5aca Add ability to set code model within the execution engine builders by Eric Christopher · 15 years ago
  25. 6f348e4 Remove dlsym stubs, with Nate Begeman's permission. by Jeffrey Yasskin · 15 years ago
  26. dc85724 Change the JIT to compile eagerly by default as agreed in by Jeffrey Yasskin · 15 years ago
  27. 7a9034c Automatically do the equivalent of freeMachineCodeForFunction(F) when F is by Jeffrey Yasskin · 15 years ago
  28. 46264f0 fix PR5186: the JIT shouldn't try to codegen available_externally by Chris Lattner · 15 years ago
  29. 2763217 Implement the JIT side of the GDB JIT debugging interface. To enable this by Reid Kleckner · 15 years ago
  30. 1d0be15 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 15 years ago
  31. debcb01 Move types back to the 2.5 API. by Owen Anderson · 15 years ago
  32. baf3c40 Move ConstantExpr to 2.5 API. by Owen Anderson · 15 years ago
  33. 6f83c9c Move ConstantFP construction back to the 2.5-ish API. by Owen Anderson · 15 years ago
  34. eed707b Revert the ConstantInt constructors back to their 2.5 forms where possible, thanks to contexts-on-types. More to come. by Owen Anderson · 15 years ago
  35. e922c02 Get rid of the Pass+Context magic. by Owen Anderson · 15 years ago
  36. fbee579 Simplify / normalize some uses of Value::getName. by Daniel Dunbar · 15 years ago
  37. 4b1511b Add EngineBuilder to ExecutionEngine in favor of the five optional argument EE::create(). by Reid Kleckner · 15 years ago
  38. 9adc0ab Move EVER MORE stuff over to LLVMContext. by Owen Anderson · 15 years ago
  39. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 15 years ago
  40. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 15 years ago
  41. 7d696d8 Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 15 years ago
  42. 489393d Add an option to allocate JITed global data separately from code. By by Jeffrey Yasskin · 15 years ago
  43. 31e2466 Introduce new error handling API. by Torok Edwin · 15 years ago
  44. 0fd3806 improve the APIs for creating struct and function types with no arguments/elements by Chris Lattner · 15 years ago
  45. df5a7da Add a JITEventListener interface that gets called back when a new function is by Jeffrey Yasskin · 15 years ago
  46. e46161f Fix the Ocaml bindings for the ExecutionEngine: with the change to build by Bob Wilson · 15 years ago
  47. e91208c After obtaining the lock, look if the function has been codegen'd by by Nicolas Geoffray · 15 years ago
  48. a3f99f9 First patch in the direction of splitting MachineCodeEmitter in two subclasses: by Bruno Cardoso Lopes · 15 years ago
  49. b3a847d Allow the JIT ExecutionEngine to report details about the generated machine code. by Argyrios Kyrtzidis · 15 years ago
  50. 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
  51. 98a366d Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 16 years ago
  52. 5e5cb79 The second part of the change from -fast to -O#. This changes the JIT to accept by Bill Wendling · 16 years ago
  53. 3f91bb3ce make sure to unlock keymgr if the JIT is created and destroyed, all by Chris Lattner · 16 years ago
  54. 00f1628 Mac OS X 10.6 and above do not use key manager to register EH frames. by Evan Cheng · 16 years ago
  55. 667d4b8 Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 16 years ago
  56. b9c6c9b Finish cross-process JIT work, and clean up previous work. by Nate Begeman · 16 years ago
  57. 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
  58. 44e3dd1 don't #include a header into the middle of an anon namespace. by Chris Lattner · 16 years ago
  59. 07ab52b Fix the logic in this assertion to properly validate the number of arguments. by Dan Gohman · 16 years ago
  60. a3ac0c1 Reapply r57340. VMKit does not presently rely on materializeFunction by Dan Gohman · 16 years ago
  61. d6b7a24 Add support to the JIT for true non-lazy operation. When a call to a function by Nate Begeman · 16 years ago
  62. 21afcda Split the locking out of JIT::runJITOnFunction so that callers by Dan Gohman · 16 years ago
  63. 2d5424d Fix PR3423: Link llvm on ARM EABI machines. Patch by Robert Schuster. by Evan Cheng · 16 years ago
  64. 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
  65. 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
  66. bb46f52 Add the private linkage. by Rafael Espindola · 16 years ago
  67. ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 16 years ago
  68. 69f9378 Handle weak_extern in the JIT. This fixes by Dan Gohman · 16 years ago
  69. 77f86ad DisableGVCompilation should not abort on internal GlobalValue's. by Evan Cheng · 16 years ago
  70. cdfc51f Make JIT::runFunction handle functions with non-C calling conventions. by Chris Lattner · 16 years ago
  71. 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
  72. 46fa139 Support for allocation of TLS variables in the JIT. Allocation of a global by Nicolas Geoffray · 16 years ago
  73. 77fcca8 Revert r57340 move guard mutex in getPointerToFunction as this can cause by Mon P Wang · 16 years ago
  74. 1c341c8 Moved guard mutex upwards to guard materializing a function by Mon P Wang · 16 years ago
  75. 446531e Add DisableGVCompilation which forces the JIT to assert when it tries to allocate space for a GlobalVariable. by Evan Cheng · 16 years ago
  76. d046fc6 Add support for JIT exceptions on Darwin. Since we're dealing with libgcc, by Nicolas Geoffray · 16 years ago
  77. a7ec87c Register the frame register function when allocating the JIT, by Nicolas Geoffray · 16 years ago
  78. 502f20b Add new parameter Fast to createJIT to enable the fast codegen path. by Evan Cheng · 16 years ago
  79. dd947ea Rewrite JIT handling of GlobalVariables so they by Dale Johannesen · 16 years ago
  80. 2dad025 Prune a few dependencies on MachineFunction.h. by Dan Gohman · 16 years ago
  81. f049e07 Fix a couple issues with the JIT and multiple modules: by Nate Begeman · 16 years ago
  82. 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
  83. 844731a Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 16 years ago
  84. fd7d991 Do not hold the JIT lock when materializing a function and verify if the by Nicolas Geoffray · 17 years ago
  85. 02a260a Switch to using Simplified ConstantFP::get API. by Chris Lattner · 17 years ago
  86. 051a950 API changes for class Use size reduction, wave 1. by Gabor Greif · 17 years ago
  87. 299d9d7 Register EH frames emitted in JIT when using gcc unwinding runtime by Anton Korobeynikov · 17 years ago
  88. d102593 Use getPreferredAlignmentLog or getPreferredAlignment by Duncan Sands · 17 years ago
  89. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  90. 34c9433 add a new ExecutionEngine::createJIT which can be used if you only want by Chris Lattner · 17 years ago
  91. 9f2f142 simplify creation of the interpreter, make ExecutionEngine ctor protected, by Chris Lattner · 17 years ago
  92. 514ab34 Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. by Duncan Sands · 17 years ago
  93. 1abac0d Implement x86 long double in jit (not really complete, but common cases work) by Dale Johannesen · 17 years ago
  94. 43421b3 Next round of APFloat changes. by Dale Johannesen · 17 years ago
  95. 17f218e move assertion into mutex guard, a partial fix for PR1606. by Chris Lattner · 17 years ago
  96. 79e038a eliminate redundant conditions from the signless types conversion. by Chris Lattner · 17 years ago
  97. 52eec54 by David Greene · 17 years ago
  98. 3b30a6e Add detection of __dso_handle presence during configure. Use this information in the by Anton Korobeynikov · 17 years ago
  99. a99be51 Here is the bulk of the sanitizing. by Gabor Greif · 17 years ago
  100. 2c639ad rename JIT::state -> JIT::jitstate to avoid shadowing ExecutionEngine::state by Chris Lattner · 18 years ago