1. 1f6efa3 Merge System into Support. by Michael J. Spencer · 14 years ago
  2. e4d19c9 PR5207: change APInt::doubleToBits() and APInt::floatToBits() to be by Jay Foad · 14 years ago
  3. d9e3385 Move getInitialFrameState() to TargetFrameInfo by Anton Korobeynikov · 14 years ago
  4. 6aec298 MCJIT: Stub out MCJIT implementation, still doesn't do anything useful. by Daniel Dunbar · 14 years ago
  5. 6d13597 lli: Add stub -use-mcjit option, which doesn't currently do anything. by Daniel Dunbar · 14 years ago
  6. 48dd875 JIT: More nitty style tweakage, aka territory marking. by Daniel Dunbar · 14 years ago
  7. 32c7a5e Fix some more 80-col violas. by Daniel Dunbar · 14 years ago
  8. ab19da4 Fix 80-col violation / non-sensicalness. by Daniel Dunbar · 14 years ago
  9. 19e5702 Move the remaining attribute macros to systematic names based on the attribute by Chandler Carruth · 14 years ago
  10. b35fd44 Fix the cleanup process of exception information in JIT. Now JIT by Duncan Sands · 14 years ago
  11. 3a210e2 Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally." by Michael J. Spencer · 14 years ago
  12. 4e9c939 CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally. by Michael J. Spencer · 14 years ago
  13. 17f9bfa Fix a comment. by NAKAMURA Takumi · 14 years ago
  14. 37ce565 EE/JIT: Do not invoke parent's ctors/dtors from main()! (PR3897) by NAKAMURA Takumi · 14 years ago
  15. c6a39aa remove some dead code. by Chris Lattner · 14 years ago
  16. 83a82ac When creating a JIT, try to load the program so that we can resolve symbols by Nick Lewycky · 14 years ago
  17. 1f74ad7 Stop the JIT from refusing to work just because the program it was compiled into by Nick Lewycky · 14 years ago
  18. e4373b0 Don't call __register_frame from the JIT on systems that use setjmp/longjmp by Bob Wilson · 14 years ago
  19. 77beeae remove the dwarf sizing stuff which is now dead, it was by Chris Lattner · 14 years ago
  20. 134d8ee remove the JIT "NeedsExactSize" feature and supporting logic. by Chris Lattner · 14 years ago
  21. e117b63 Fix indentation. by Duncan Sands · 14 years ago
  22. d90fee9 Expose JIT::recompileAndRelinkFunction for use through the C API. by Duncan Sands · 14 years ago
  23. 10bb421 Get rid of a bunch of duplicated ELF enum values. by Eli Friedman · 14 years ago
  24. 3472766 Convert some tab stops into spaces. by Duncan Sands · 14 years ago
  25. 68feb22 first part of JIT support for address of labels, part of PR7264, patch by Yuri! by Chris Lattner · 14 years ago
  26. 9634331 Handle execution entrypoints with non-integer return types. by Dan Gohman · 14 years ago
  27. 87565c1 improve portability to systems that don't have powf/modf (e.g. solaris 9) by Chris Lattner · 14 years ago
  28. 57b6e9e Remove the -enable-sjlj-eh option, which doesn't do anything. by Duncan Sands · 14 years ago
  29. 4781e30 Fix an ancient FIXME. by Dan Gohman · 14 years ago
  30. 8c818fc Fix the OProfileJITEventListener build after r101844 removed by Jeffrey Yasskin · 14 years ago
  31. 091fc4b Don't rely upon the MCSymbol "isDefined" method to indicate if a label has been by Bill Wendling · 14 years ago
  32. 69c128f Formatting changes. No functionality change. by Bill Wendling · 14 years ago
  33. 3fb150a Fix -Wcast-qual warnings. by Dan Gohman · 14 years ago
  34. 47639fc The JIT calls TidyLandingPads to tidy up the landing pads. However, because the by Bill Wendling · 14 years ago
  35. 46510a7 Add const qualifiers to CodeGen's use of LLVM IR constructs. by Dan Gohman · 14 years ago
  36. 4eb3739 Don't use DILocation when processing a DebugLoc. by Nicolas Geoffray · 14 years ago
  37. 1bd7335 Use twines to simplify calls to report_fatal_error. For code size and readability. by Benjamin Kramer · 14 years ago
  38. 75361b6 rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 14 years ago
  39. 376ac43 Fix OProfileJITEventListener build for new DebugLoc. by Jeffrey Yasskin · 14 years ago
  40. 9041ae2 CurFn is only used for relocations. Use EmissionDetails.MF->getFunction() instead. by Nicolas Geoffray · 14 years ago
  41. de4845c Switch the code generator (except the JIT) onto the new DebugLoc by Chris Lattner · 14 years ago
  42. 820580d Typo noticed by Duncan. by Torok Edwin · 14 years ago
  43. fb70e7d Don't overwrite previous value, if it succeeded. by Torok Edwin · 14 years ago
  44. e38bc14 Honour addGlobalMapping() in the interpreter, if it was used to add mappings for by Torok Edwin · 14 years ago
  45. 47b7112 Avoid leaking the memory allocated for GlobalVariables in the interpreter, by by Jeffrey Yasskin · 14 years ago
  46. b193838 Avoid leaking argv and env arrays from lli. by Jeffrey Yasskin · 14 years ago
  47. 6efed73 Avoid a memory leak in JITDebugRegisterer. by Jeffrey Yasskin · 15 years ago
  48. 6b4205a fix these two get the mcsymbol operand instead of imm operand. by Chris Lattner · 15 years ago
  49. 2e9919a Now that DBG_LABEL is updated, we can finally make MachineMove by Chris Lattner · 15 years ago
  50. 1611273 change EH related stuff (other than EH_LABEL) to use MCSymbol by Chris Lattner · 15 years ago
  51. 95da605 Add a new jump table encoding to indicate jump tables entries by Richard Osborne · 15 years ago
  52. a34ec229 strength reduce MMI::MappedLabel to MMI::isLabelDeleted, by Chris Lattner · 15 years ago
  53. 39c75f2 Fix PR6360. It's easy for a stub's address to escape to user code, so we can't by Jeffrey Yasskin · 15 years ago
  54. e57898c Fix PR5291, in which a SmallPtrSet iterator was held across an insertion into by Jeffrey Yasskin · 15 years ago
  55. 8e98d12 Make sure JITResolvers don't leave any stubs behind. When a JITResolver was by Jeffrey Yasskin · 15 years ago
  56. df7df07 Add Module functions in place of module providers. by Erick Tryzelaar · 15 years ago
  57. 1df9859 There are two ways of checking for a given type, for example isa<PointerType>(T) by Duncan Sands · 15 years ago
  58. 89ee706 Apply patch from http://llvm.org/bugs/attachment.cgi?id=4136 now that PR5004 is by Bill Wendling · 15 years ago
  59. b0bc6c3 Uniformize the names of type predicates: rather than having isFloatTy and by Duncan Sands · 15 years ago
  60. 3174f67 Make JIT::runFunction clean up the generated stub function. by Jeffrey Yasskin · 15 years ago
  61. 40966a7 Make it possible to create multiple JIT instances at the same time, by removing by Jeffrey Yasskin · 15 years ago
  62. f451cb8 Fix "the the" and similar typos. by Dan Gohman · 15 years ago
  63. 4688261 Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp. by Jeffrey Yasskin · 15 years ago
  64. 3a813dc r94686 changed all ModuleProvider parameters to Modules, which made the by Jeffrey Yasskin · 15 years ago
  65. 12ea66a Replace strcpy with memcpy when we have the length around anyway. by Benjamin Kramer · 15 years ago
  66. f0356fe Kill ModuleProvider and ghost linkage by inverting the relationship between by Jeffrey Yasskin · 15 years ago
  67. 85fe078 Add support for target-specific 32-bit custom-lowered jump table entries. by Chris Lattner · 15 years ago
  68. 13af11a make jit jump table emission be based on the EntryKind instead of magic variables. by Chris Lattner · 15 years ago
  69. 071c62f Rearrange handling of jump tables. Highlights: by Chris Lattner · 15 years ago
  70. 43b5f93 make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. by Chris Lattner · 15 years ago
  71. bf1f76b Make OProfile support compile again after r93630 removed by Jeffrey Yasskin · 15 years ago
  72. e73a31f Stop building RTTI information for *most* llvm libraries. Notable by Chris Lattner · 15 years ago
  73. c99fd87 Avoid including DebugInfo.h in AsmPrinter.h by Devang Patel · 15 years ago
  74. 6b61f58 Replace DebugLocTuple with DILocation. by Devang Patel · 15 years ago
  75. 5b37012 Fix http://llvm.org/PR6028, an assertion failure when an UndefValue of by Jay Foad · 15 years ago
  76. d686c8e "In order to ease automatic bindings generation, it would be helpful if boolean values were distinguishable from integers. The attached patch introduces "typedef int LLVMBool;", and uses LLVMBool instead of int throughout the C API, wherever a boolean value is called for." by Chris Lattner · 15 years ago
  77. 8c65f6e Move remaining stuff to the isInteger predicate. by Benjamin Kramer · 15 years ago
  78. 11acaa3 Convert a ton of simple integer type equality tests to the new predicate. by Benjamin Kramer · 15 years ago
  79. f012705 Avoid going through the LLVMContext for type equality where it's safe to dereference the type pointer. by Benjamin Kramer · 15 years ago
  80. c74fe78 by David Greene · 15 years ago
  81. ae7c59a Change errs() to dbgs(). by David Greene · 15 years ago
  82. 4ac99a8 Change errs() to dbgs(). by David Greene · 15 years ago
  83. ef573a3 Change errs() to dbgs(). by David Greene · 15 years ago
  84. bd8c8af Change errs() to dbgs(). by David Greene · 15 years ago
  85. c9ec993 Change errs() to dbgs(). by David Greene · 15 years ago
  86. 4a54016 Change errs() to dbgs(). by David Greene · 15 years ago
  87. abeca44 Remove dead store and simplify code. by Bill Wendling · 15 years ago
  88. c5818fb Partially revert r91626. Materializing extra functions to determine whether by Jeffrey Yasskin · 15 years ago
  89. 92fdf45 Fix a crash in JIT::recompileAndRelinkFunction(). It doesn't pass the MCI by Jeffrey Yasskin · 15 years ago
  90. aad0d52 Don't codegen available_externally functions. Fixes http://llvm.org/PR5735. by Jeffrey Yasskin · 15 years ago
  91. 32d7e6e Change indirect-globals to use a dedicated allocIndirectGV. This lets us by Jeffrey Yasskin · 15 years ago
  92. 4bbf4ee Remove isPod() from DenseMapInfo, splitting it out to its own by Chris Lattner · 15 years ago
  93. 0c479d3 Formatting. by Eric Christopher · 15 years ago
  94. 898e9df Reinstate r91208 to fix available_externally linkage for globals, with by Jeffrey Yasskin · 15 years ago
  95. 9b8ff28 Revert r91208. Something on Linux prevents the JIT from looking up a symbol by Jeffrey Yasskin · 15 years ago
  96. 5cc966a Fix available_externally linkage for globals. It's probably still not by Jeffrey Yasskin · 15 years ago
  97. f05e45e Comparing std::string with NULL is a bad idea, so just check whether its empty. by Torok Edwin · 15 years ago
  98. 1302764 Fix the OProfileJITEventListener for StringRef being returned from debug info. by Jeffrey Yasskin · 15 years ago
  99. 108c838 * Move stub allocation inside the JITEmitter, instead of exposing a by Jeffrey Yasskin · 15 years ago
  100. 0261d79 Allow more than one stub to be being generated at the same time. by Jeffrey Yasskin · 15 years ago