1. f045b7a Support unregistering exception frames of functions when they are removed. by Eric Christopher · 15 years ago
  2. 31920b0 Remove unneeded zero arrays. by Benjamin Kramer · 15 years ago
  3. 447762d Merge System into Support. by Michael J. Spencer · 15 years ago
  4. 3447fb0 PR5207: change APInt::doubleToBits() and APInt::floatToBits() to be by Jay Foad · 15 years ago
  5. 70ff8b0 lli: Add stub -use-mcjit option, which doesn't currently do anything. by Daniel Dunbar · 15 years ago
  6. 868e3f0 JIT: More nitty style tweakage, aka territory marking. by Daniel Dunbar · 15 years ago
  7. e4f4743 Fix 80-col violation / non-sensicalness. by Daniel Dunbar · 15 years ago
  8. abc7901 Fix the cleanup process of exception information in JIT. Now JIT by Duncan Sands · 15 years ago
  9. 93cd0f1c improve portability to systems that don't have powf/modf (e.g. solaris 9) by Chris Lattner · 15 years ago
  10. 2104b8d rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 16 years ago
  11. a404433 Avoid leaking the memory allocated for GlobalVariables in the interpreter, by by Jeffrey Yasskin · 16 years ago
  12. bfd38ab Avoid leaking argv and env arrays from lli. by Jeffrey Yasskin · 16 years ago
  13. 19d0b47 There are two ways of checking for a given type, for example isa<PointerType>(T) by Duncan Sands · 16 years ago
  14. 9dff9be Uniformize the names of type predicates: rather than having isFloatTy and by Duncan Sands · 16 years ago
  15. 31faeff Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp. by Jeffrey Yasskin · 16 years ago
  16. 099552a r94686 changed all ModuleProvider parameters to Modules, which made the by Jeffrey Yasskin · 16 years ago
  17. 091217b Kill ModuleProvider and ghost linkage by inverting the relationship between by Jeffrey Yasskin · 16 years ago
  18. bcbdbfb Fix http://llvm.org/PR6028, an assertion failure when an UndefValue of by Jay Foad · 16 years ago
  19. d2564e3 Move remaining stuff to the isInteger predicate. by Benjamin Kramer · 16 years ago
  20. ccce8ba Avoid going through the LLVMContext for type equality where it's safe to dereference the type pointer. by Benjamin Kramer · 16 years ago
  21. 0967d2d Change errs() to dbgs(). by David Greene · 16 years ago
  22. 700d08e Add ability to set code model within the execution engine builders by Eric Christopher · 16 years ago
  23. 8483f12 Remove dlsym stubs, with Nate Begeman's permission. by Jeffrey Yasskin · 16 years ago
  24. 0c778f7 add interpreter support for indirect goto / blockaddress. The interpreter by Chris Lattner · 16 years ago
  25. 4567db4 Change the JIT to compile eagerly by default as agreed in by Jeffrey Yasskin · 16 years ago
  26. d0fc8f8 Fix http://llvm.org/PR4822: allow module deletion after a function has been by Jeffrey Yasskin · 16 years ago
  27. f98e981 Make the ExecutionEngine automatically remove global mappings on when their by Jeffrey Yasskin · 16 years ago
  28. 307c053 ExecutionEngine::clearGlobalMappingsFromModule failed to remove reverse by Jeffrey Yasskin · 16 years ago
  29. 9ed7b16 Introduce and use convenience methods for getting pointer types by Duncan Sands · 16 years ago
  30. fdd8790 strength reduce a ton of type equality tests to check the typeid (Through by Chris Lattner · 16 years ago
  31. 8bcc644 errorstr can be null, don't unconditionally set it. Only report that by Chris Lattner · 16 years ago
  32. 41fa2bd Make EngineBuilder return more error codes, by KS Sreeram. by Chris Lattner · 16 years ago
  33. f6f5b5b just remove interpreter support for endianness mismatches. This was by Chris Lattner · 16 years ago
  34. 390d78b remove use of alloca.h by Chris Lattner · 16 years ago
  35. 4dc3edd remove a few DOUTs here and there. by Chris Lattner · 16 years ago
  36. 3924bb5 remove the std::ostream version of module and type printing. by Chris Lattner · 16 years ago
  37. 55f1c09 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 16 years ago
  38. 6bf87df To catch bugs like the one fixed in by Jeffrey Yasskin · 16 years ago
  39. 337b124 Make ExecutionEngine::updateGlobalMapping(GV, NULL) properly remove GV's old by Jeffrey Yasskin · 16 years ago
  40. 9813b0b Eliminate some uses of DOUT, cerr, and getNameStart(). by Daniel Dunbar · 16 years ago
  41. 5899e34 Simplify / normalize some uses of Value::getName. by Daniel Dunbar · 16 years ago
  42. fc8a2d5 Add EngineBuilder to ExecutionEngine in favor of the five optional argument EE::create(). by Reid Kleckner · 16 years ago
  43. fbcc663 llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  44. 56d0659 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
  45. ccb29cd Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
  46. 70415d9 Add an option to allocate JITed global data separately from code. By by Jeffrey Yasskin · 16 years ago
  47. 6c2d233 Introduce new error handling API. by Torok Edwin · 16 years ago
  48. a5b9645 Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 16 years ago
  49. af9eaa8 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
  50. 026e5d7 Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 17 years ago
  51. 9f79513 The second part of the change from -fast to -O#. This changes the JIT to accept by Bill Wendling · 17 years ago
  52. 4d7e4ee fix one more fp80 case (used only by Interpreter) by Dale Johannesen · 17 years ago
  53. f259f3f Change JIT for different layout of fp80. by Dale Johannesen · 17 years ago
  54. 18d85e7 Add support to the JIT for true non-lazy operation. When a call to a function by Nate Begeman · 17 years ago
  55. 370ec10 allow main to have any integer type. by Chris Lattner · 17 years ago
  56. 617001d 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
  57. aa12122 rename methods in System/Host to be more consistent. by Chris Lattner · 17 years ago
  58. 6de96a1 Add the private linkage. by Rafael Espindola · 17 years ago
  59. dc020f9 Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
  60. 077f686 More debug output. by Evan Cheng · 17 years ago
  61. 972fd1a Improve JIT debugging outputs format consistency. by Evan Cheng · 17 years ago
  62. 33ba5e7 Debugging output tweak. by Evan Cheng · 17 years ago
  63. 09053e6 80 col violation. by Evan Cheng · 17 years ago
  64. 5457ce9 Support for allocation of TLS variables in the JIT. Allocation of a global by Nicolas Geoffray · 17 years ago
  65. a67f06b little optimization: reuse getPointerToGlobalIfAvailable(CGV) value in emitGlobals() by Nuno Lopes · 17 years ago
  66. 4f0bd68 Add a "loses information" return value to APFloat::convert by Dale Johannesen · 17 years ago
  67. 54306fe Rename APFloat::convertToAPInt to bitcastToAPInt to by Dale Johannesen · 17 years ago
  68. 1a9a0b7 Add runStaticConstructorsDestructors which runs ctors / dtors of a single module. Patch by David Chisnall. by Evan Cheng · 17 years ago
  69. cdc0060 Add DisableGVCompilation which forces the JIT to assert when it tries to allocate space for a GlobalVariable. by Evan Cheng · 17 years ago
  70. 5cc53c3 Preliminary support for systems which require changing JIT memory regions privilege from read / write to read / executable. by Evan Cheng · 17 years ago
  71. cf3e301 Avoid a warning about isTargetNullPtr being unused in release builds. by Dan Gohman · 17 years ago
  72. 7ff05bf Add new parameter Fast to createJIT to enable the fast codegen path. by Evan Cheng · 17 years ago
  73. b086d38 Rewrite JIT handling of GlobalVariables so they by Dale Johannesen · 17 years ago
  74. 84a9055 Don't forget to initialize SymbolSearchingDisabled. by Evan Cheng · 17 years ago
  75. 8f83fc4 Fix a couple issues with the JIT and multiple modules: by Nate Begeman · 17 years ago
  76. 69ddfbf Fix ExecutionEngine's constant code to work properly when structs and arrays by Dan Gohman · 17 years ago
  77. ce4396b Add CommonLinkage; currently tentative definitions by Dale Johannesen · 17 years ago
  78. ee18173 Make ExecutionEngine::updateGlobalMapping return the old mapping. by Chris Lattner · 18 years ago
  79. cd4a6be Fix formatting. by Duncan Sands · 18 years ago
  80. a53414f Load the symbols first so that the interpreter constructor can find them when by Nick Lewycky · 18 years ago
  81. ca24fd9 Simplify code using convertFromZeroExtendedInteger with an APInt by Dan Gohman · 18 years ago
  82. 579f071 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 18 years ago
  83. 1dd86b1 Support vector constant zeros, thanks to Zack Rusin for the testcase. by Chris Lattner · 18 years ago
  84. 21ad494 Enable exception handling int JIT by Nicolas Geoffray · 18 years ago
  85. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  86. edf0788 Change the PointerType api for creating pointer types. The old functionality of PointerType::get() has become PointerType::getUnqual(), which returns a pointer in the generic address space. The new prototype of PointerType::get() requires both a type and an address space. by Christopher Lamb · 18 years ago
  87. 26d6539 These are more correctly called signaling NaNs. by Duncan Sands · 18 years ago
  88. 1202d1b Teach the interpreter to read and write memory in the by Duncan Sands · 18 years ago
  89. fde5567 Remove host endianness info from TargetData and by Duncan Sands · 18 years ago
  90. 5c65cb4 Fix PR1836: in the interpreter, read and write apints by Duncan Sands · 18 years ago
  91. dc351b9 simplify creation of the interpreter, make ExecutionEngine ctor protected, by Chris Lattner · 18 years ago
  92. ff30628 My compiler complains that "x always evaluates to true" in this call: by Duncan Sands · 18 years ago
  93. 44b8721 Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. by Duncan Sands · 18 years ago
  94. fd6f325 add a mechanism for the JIT to invoke a function to lazily create functions as they are referenced. by Chris Lattner · 18 years ago
  95. edaf0b4 LoadLibraryPermanently doesn't throw. by Chris Lattner · 18 years ago
  96. b5163bb Add a convenience method for creating EE's. by Chris Lattner · 18 years ago
  97. 324fe89 Add removeModuleProvider() by Devang Patel · 18 years ago
  98. 5f00973 convertFromInteger, as originally written, expected sign-extended by Neil Booth · 18 years ago
  99. 9150652 Constant fold int-to-long-double conversions; by Dale Johannesen · 18 years ago
  100. 4230512 Change APFloat::convertFromInteger to take the incoming by Dale Johannesen · 18 years ago