1. cbbb096 Begin adding experimental support for preserving use-list ordering of bitcode by Chad Rosier · 14 years ago
  2. d782bae build/CMake: Finish removal of add_llvm_library_dependencies. by Daniel Dunbar · 14 years ago
  3. a7e6f74 remove autoupgrade support for really old-style debug info intrinsics. by Chris Lattner · 14 years ago
  4. 9d5f6cc remove autoupgrade support for LLVM 2.9 exception stuff. Mainline supports by Chris Lattner · 14 years ago
  5. dbc8849 remove support for reading llvm 2.9 .bc files. LLVM 3.1 is only compatible back to 3.0 by Chris Lattner · 14 years ago
  6. a3a2dfd build: Add initial cut at LLVMBuild.txt files. by Daniel Dunbar · 14 years ago
  7. cde5464 Remove some cruft from the BitcodeWriter, while still maintaining backward by Chad Rosier · 14 years ago
  8. e9b88cb Also update the EH with bitcode. I missed this earlier. Thanks to Duncan for pointing it out. by Bill Wendling · 14 years ago
  9. c3d3598 Fix a typo in the bitcode reader in the handling of atomic stores. Reported by David Meyer on llvmdev. by Eli Friedman · 14 years ago
  10. 35726bf Don't forget to add the landingpad and resume instructions to the InstructionList. by Bill Wendling · 14 years ago
  11. e6e8826 Initial commit of the 'landingpad' instruction. by Bill Wendling · 14 years ago
  12. 3ebb649 switch to use the new api for structtypes. by Chris Lattner · 14 years ago
  13. 21006d4 Representation of 'atomic load' and 'atomic store' in IR. by Eli Friedman · 14 years ago
  14. 6ff9aa2 Fix 80-column violations. by Chad Rosier · 14 years ago
  15. dccc03b Add the 'resume' instruction for the new EH rewrite. by Bill Wendling · 14 years ago
  16. 10c6d12 Revert r136253, r136263, r136269, r136313, r136325, r136326, r136329, r136338, by Bill Wendling · 14 years ago
  17. ac03e73 Rewrite the CMake build to use explicit dependencies between libraries, by Chandler Carruth · 14 years ago
  18. ff03048 LangRef and basic memory-representation/reading/writing for 'cmpxchg' and by Eli Friedman · 14 years ago
  19. 7379b66 The personality function should be a Function* and not just a Value*. by Bill Wendling · 14 years ago
  20. 28d7352 Make sure that the landingpad instruction takes a Constant* as the clause's value. by Bill Wendling · 14 years ago
  21. 772fe17 Merge the contents from exception-handling-rewrite to the mainline. by Bill Wendling · 14 years ago
  22. 47f3513 Initial implementation of 'fence' instruction, the new C++0x-style replacement for llvm.memory.barrier. by Eli Friedman · 14 years ago
  23. a920310 Convert GetElementPtrInst to use ArrayRef. by Jay Foad · 14 years ago
  24. 4b5e207 Make better use of ConstantExpr::getGetElementPtr's InBounds parameter. by Jay Foad · 14 years ago
  25. dab3d29 Convert ConstantExpr::getGetElementPtr and by Jay Foad · 14 years ago
  26. 3ba292d Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future ambiguity by Jeffrey Yasskin · 14 years ago
  27. db125cf land David Blaikie's patch to de-constify Type, with a few tweaks. by Chris Lattner · 14 years ago
  28. a3efbb1 Convert CallInst and InvokeInst APIs to use ArrayRef. by Jay Foad · 14 years ago
  29. fc6d3a4 Convert InsertValueInst and ExtractValueInst APIs to use ArrayRef. by Jay Foad · 14 years ago
  30. 5fdd6c8 Second attempt at de-constifying LLVM Types in FunctionType::get(), by Jay Foad · 14 years ago
  31. 2280ebd Revert r134893 and r134888 (and related patches in other trees). It was causing by Bill Wendling · 14 years ago
  32. f362aff De-constify Types in FunctionType::get(). by Jay Foad · 14 years ago
  33. 1afcace Land the long talked about "type system rewrite" patch. This by Chris Lattner · 14 years ago
  34. cbd40f8 type can be null by Chris Lattner · 14 years ago
  35. 7af453a use a more efficient check for 'is metadata' by Chris Lattner · 14 years ago
  36. 2670108 Replace the existing forms of ConstantArray::get() with a single form by Jay Foad · 14 years ago
  37. b065b06 Revamp the "ConstantStruct::get" methods. Previously, these were scattered by Chris Lattner · 14 years ago
  38. 4f6bab9 Drop the "2" suffix on some enums. by Chris Lattner · 14 years ago
  39. 96a74c5 remove support for a bunch of obsolete instruction encodings by Chris Lattner · 14 years ago
  40. 9d61dd9 Remove some "2" suffixes from the metadata enums now that "1" is gone. by Chris Lattner · 14 years ago
  41. 020a5a4 remove bitcode reader support for LLVM 2.7 metadata encoding. by Chris Lattner · 14 years ago
  42. 3d26f23 Whitespace and other cleanup. Functionallity unchanged. by Chad Rosier · 14 years ago
  43. c9687b3 Fix LTO builds with xcode 4. by Rafael Espindola · 14 years ago
  44. ec9186b PR9214: Convert Metadata API to use ArrayRef. by Jay Foad · 14 years ago
  45. b81e457 PR9214: Convert ConstantExpr::getWithOperands() to use ArrayRef. by Jay Foad · 14 years ago
  46. 5d7a5a4 Revert r129235 pending a vetting of the EH rewrite. by Bill Wendling · 14 years ago
  47. d7bb295 Beginning of the Great Exception Handling Rewrite. by Bill Wendling · 14 years ago
  48. 3ecfc86 Remove PHINode::reserveOperandSpace(). Instead, add a parameter to by Jay Foad · 14 years ago
  49. 2ca5c86 convert ConstantVector::get to use ArrayRef. by Chris Lattner · 14 years ago
  50. 7583190 revert my ConstantVector patch, it seems to have made the llvm-gcc by Chris Lattner · 14 years ago
  51. 283c8ca Switch ConstantVector::get to use ArrayRef instead of a pointer+size by Chris Lattner · 15 years ago
  52. f067d58 implement .ll and .bc support for nsw/nuw on shl and exact on lshr/ashr. by Chris Lattner · 15 years ago
  53. 35bda89 enhance vmcore to know that udiv's can be exact, and add a trivial by Chris Lattner · 15 years ago
  54. 67c619b FixedNumOperandTraits and VariadicOperandTraits assumed that, given a by Jay Foad · 15 years ago
  55. bea4626 First step in fixing PR8927: by Rafael Espindola · 15 years ago
  56. f22b746 Fix PR8494: when reading invalid bitcode, getTypeByID may return a null pointer. by Duncan Sands · 15 years ago
  57. 3471174 Provide a fast "get me the target triple from the module" API. This can by Bill Wendling · 15 years ago
  58. b0db4d0 Fix spelling. by Bill Wendling · 15 years ago
  59. 3a210e2 Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally." by Michael J. Spencer · 15 years ago
  60. 9b10dfb Add full auto-upgrade support for LLVM 2.7 bitcode metadata. by Dan Gohman · 15 years ago
  61. 4e9c939 CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally. by Michael J. Spencer · 15 years ago
  62. bb811a2 Add X86 MMX type to bitcode and Type. by Dale Johannesen · 15 years ago
  63. de49f36 Auto-upgrade the magic ".llvm.eh.catch.all.value" global to by Bill Wendling · 15 years ago
  64. 70c2fc0 Discard metadata produced by LLVM 2.7. The value enumeration it used by Dan Gohman · 15 years ago
  65. 17aa680 zap dead code. by Chris Lattner · 15 years ago
  66. 61c70e9 remove unions from LLVM IR. They are severely buggy and not by Chris Lattner · 15 years ago
  67. 064ff3e Add a FIXME comment. by Dan Gohman · 15 years ago
  68. 6981383 Fix the bitcode reader to clear out function-specific state by Dan Gohman · 15 years ago
  69. 56e2a57 Fix a bug found by inspection. by Dan Gohman · 15 years ago
  70. 6b9cb84 Add a comment. by Dan Gohman · 15 years ago
  71. 55ae515 Create the new linker type "linker_private_weak_def_auto". by Bill Wendling · 15 years ago
  72. 489b29b Introduce a new temporary MDNode concept. Temporary MDNodes are by Dan Gohman · 15 years ago
  73. 8c8b9ee Revert r111082. No warnings for this common pattern. by Argyrios Kyrtzidis · 15 years ago
  74. 7268d97 Add ATTRIBUTE_UNUSED to methods that are not supposed to be used. by Argyrios Kyrtzidis · 15 years ago
  75. 17aa92c Make NamedMDNode not be a subclass of Value, and simplify the interface by Dan Gohman · 15 years ago
  76. 872814a Disallow null as a named metadata operand. by Dan Gohman · 15 years ago
  77. 19538d1 Add support for remapping metadata kind IDs when reading in a by Dan Gohman · 15 years ago
  78. ac80975 Add support for empty metadata nodes: !{}. by Dan Gohman · 15 years ago
  79. c654d1b cache result of operator* by Gabor Greif · 15 years ago
  80. 5e721d7 Implement the "linker_private_weak" linkage type. This will be used for by Bill Wendling · 15 years ago
  81. 07d3177 Revert r107205 and r107207. by Bill Wendling · 15 years ago
  82. 207855c Introducing the "linker_weak" linkage type. This will be used for Objective-C by Bill Wendling · 15 years ago
  83. a37dd3e Bitcode support for allocas with arbitrary array size types. by Dan Gohman · 15 years ago
  84. a624524 Add special case bitcode support for DebugLoc. This avoids by Chris Lattner · 15 years ago
  85. a4ae3a1 If the bitcode reader input stream isn't a multiple of 4 bytes, it's more by Dan Gohman · 15 years ago
  86. 93b122d reapply r98656 unmodified, which exposed the asmprinter not by Chris Lattner · 15 years ago
  87. b85c710 Revert r98656, its breaking all over the place. by Daniel Dunbar · 15 years ago
  88. 8b3b34f improve support for uniontype and ConstantUnion, patch by Tim Northover! by Chris Lattner · 15 years ago
  89. df7df07 Add Module functions in place of module providers. by Erick Tryzelaar · 15 years ago
  90. 9a49f15 Make the side-numbering of instructions used by metadata (which is needed to by Nick Lewycky · 15 years ago
  91. 1df9859 There are two ways of checking for a given type, for example isa<PointerType>(T) by Duncan Sands · 15 years ago
  92. e44fc85 Simplify. by Daniel Dunbar · 15 years ago
  93. b0bc6c3 Uniformize the names of type predicates: rather than having isFloatTy and by Duncan Sands · 15 years ago
  94. fdfeb69 Add support for a union type in LLVM IR. Patch by Talin! by Chris Lattner · 16 years ago
  95. f0356fe Kill ModuleProvider and ghost linkage by inverting the relationship between by Jeffrey Yasskin · 16 years ago
  96. 26793ed Fix the bitcode reader to deserialize nuw/nsw/etc. bits properly in the case by Dan Gohman · 16 years ago
  97. 43b5f93 make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. by Chris Lattner · 16 years ago
  98. e73a31f Stop building RTTI information for *most* llvm libraries. Notable by Chris Lattner · 16 years ago
  99. 401f325 Fix a crasher trying to fold each element in a comparison between two vectors by Nick Lewycky · 16 years ago
  100. fab9e99c Parse function-local metadata inside function blocks by Victor Hernandez · 16 years ago