1. b027105 Refactor MCJIT 32-bit section loading. by Jim Grosbach · 13 years ago
  2. 084b5df MOVi16 and MOVTi16 does not allow pc as the dest register, while MOVi allows it. by Johnny Chen · 13 years ago
  3. 2c44a80 llvm.global_[cd]tor is defined to be either external, or appending with an array by Nick Lewycky · 13 years ago
  4. dd099e1 Only emit the AvailableFeatures variable if it's used. by Bill Wendling · 13 years ago
  5. 3dcac71 Also add the late notes for Mips in the current release note by Bruno Cardoso Lopes · 13 years ago
  6. 97fdff1 Add sanity checking for bad register specifier(s) for the DPFrm instructions. by Johnny Chen · 13 years ago
  7. 9974b8b Update tests by Rafael Espindola · 13 years ago
  8. d5321da Micro optimization and improved similarity with gas' output: by Rafael Espindola · 13 years ago
  9. 60d490c Do not let debug info interfer with branch folding. by Devang Patel · 13 years ago
  10. 3cf3059 Add a VEXT test. by Johnny Chen · 13 years ago
  11. 44dcfd3 Replace the old algorithm that emitted the "print the alias for an instruction" by Bill Wendling · 13 years ago
  12. e578252 If present, use gold's support for getting a file view. This prevents having by Rafael Espindola · 13 years ago
  13. 274d8d4 Add option to emit @llvm.trap as a function call instead of a trap instruction. rdar://9249183. by Evan Cheng · 13 years ago
  14. ce8463f Add support for .skip. Patch by Roman Divacky. Fixes PR9361. by Rafael Espindola · 13 years ago
  15. 8d58065 Fix indentation. by Akira Hatanaka · 13 years ago
  16. 3f92b43 Update ATUsed every time after expandRegLargeImmPair is called. by Akira Hatanaka · 13 years ago
  17. e32cdef Fixed encoding for VEXTqf by Mon P Wang · 13 years ago
  18. 5469976 Added a check in the preRA scheduler for potential interference on a by Andrew Trick · 13 years ago
  19. 9777e7a Fix handling of functions with internal linkage. by Akira Hatanaka · 13 years ago
  20. 22dc4d9 Add sanity checking for invalid register encodings for signed/unsigned extend instructions. by Johnny Chen · 13 years ago
  21. 8dbda0b Add sanity checking for invalid register encodings for saturating instructions. by Johnny Chen · 13 years ago
  22. e815dab Recompute hasPHIKill flags when shrinking live intervals. by Jakob Stoklund Olesen · 13 years ago
  23. 4d4e257 Add some more comments about checkings of invalid register numbers. by Johnny Chen · 13 years ago
  24. 45e1a53 Expose more passes to the C API. by Rafael Espindola · 13 years ago
  25. f34ae32 Avoid moving iterators when the previous block was just visited. by Jakob Stoklund Olesen · 13 years ago
  26. 0bd2bd9 Prefer multiplications to divisions. by Jakob Stoklund Olesen · 13 years ago
  27. 7b41fbe Extract SpillPlacement::addLinks for handling the special transparent blocks. by Jakob Stoklund Olesen · 13 years ago
  28. 949666e While hoisting common code from if/else, hoist debug info intrinsics if they match. by Devang Patel · 13 years ago
  29. 0433b21 Prevent ARM DAG Combiner from doing an AND or OR combine on an illegal vector type (vectors of size 3). Also included test cases. by Tanya Lattner · 13 years ago
  30. 71001c9 Fix a bit of nonsense. by Jay Foad · 13 years ago
  31. a844a3e add faust too by Chris Lattner · 13 years ago
  32. 3d6a80a add a few late stragglers. by Chris Lattner · 13 years ago
  33. 5c3a245 Fixed a bug where missing EDInstInfo would cause tokenization to crash and burn. by Sean Callanan · 13 years ago
  34. f16f4e0 Sanity check MSRi for invalid mask values and reject it as invalid. by Johnny Chen · 13 years ago
  35. 0e38219 PR9634: Don't unconditionally tell the AliasSetTracker that the PreheaderLoad by Eli Friedman · 13 years ago
  36. 8424a60 The ARM disassembler was not recognizing USADA8 instruction. Need to add checking for register values by Johnny Chen · 13 years ago
  37. 2c69f8e Change -arm-divmod-libcall to a target neutral option. by Evan Cheng · 13 years ago
  38. 1adb47c Remove dead code. rdar://9221736. by Evan Cheng · 13 years ago
  39. 2455268 Should also check SMLAD for invalid register values. by Johnny Chen · 13 years ago
  40. ae6c95b Simplify. isIdenticalToWhenDefined() checks opcode. by Devang Patel · 13 years ago
  41. 84025ba Set unnamed_addr on strings created through the IRBuilder. by Nick Lewycky · 13 years ago
  42. c60a475 Add support for ArrayRef in IRBuilder's CreateCall. by Nick Lewycky · 13 years ago
  43. df298c9 Teach the ARM peephole optimizer that RSB, RSC, ADC, and SBC can be used for folded comparisons, just like ADD and SUB. by Owen Anderson · 13 years ago
  44. ef7fb17 Cleanups from Jim: remove redundant constraints and a dead FIXME. by Owen Anderson · 13 years ago
  45. d418194 While folding branch to a common destination into a predecessor, copy dbg values also. by Devang Patel · 13 years ago
  46. f22eefba Tidy up. by Jim Grosbach · 13 years ago
  47. d8b4c4d A8.6.393 by Johnny Chen · 13 years ago
  48. 01ccab4 tidy up. by Jim Grosbach · 13 years ago
  49. 9a54352 Also account for the spill code that would be inserted in live-through blocks with interference. by Jakob Stoklund Olesen · 13 years ago
  50. 1b400e8 Abort the constraint calculation early when all positive bias is lost. by Jakob Stoklund Olesen · 13 years ago
  51. b092377 Fix typo in doxy-comment. by Nick Lewycky · 13 years ago
  52. 4d81c9a A8.6.92 MCR (Encoding A1): if coproc == '101x' then SEE "Advanced SIMD and VFP" by Johnny Chen · 13 years ago
  53. a040d47 Fix comment to use llvm 2.x syntax. by Nick Lewycky · 13 years ago
  54. ec5d180 Replace const std::vector& with ArrayRef in the type creation APIs. by Nick Lewycky · 13 years ago
  55. 70d4370 Keep track of the number of positively biased nodes when adding constraints. by Jakob Stoklund Olesen · 13 years ago
  56. 9efa2a2 Break the spill placement algorithm into three parts: prepare, addConstraints, and finish. by Jakob Stoklund Olesen · 13 years ago
  57. 77b42e9 Fix a typo. by Roman Divacky · 13 years ago
  58. a961154 Fix a bug in the disassembly of VGETLNs8 where the lane index was wrong. by Johnny Chen · 13 years ago
  59. 3d195fa Add another case we are not optimizing. by Rafael Espindola · 13 years ago
  60. 8617897 The original issue has been fixed by not doing unnecessary sign extensions. by Rafael Espindola · 13 years ago
  61. f3480a8 face+palm by Devang Patel · 13 years ago
  62. f5a9056 Do a topological sort of the types before writing them out. by Rafael Espindola · 13 years ago
  63. 714b34f EngineBuilder setter method for UseMCJIT was missing return value. by Jim Grosbach · 13 years ago
  64. 0fa5da9 add rubinius by Chris Lattner · 13 years ago
  65. 090771f Fix a few instances of "warning: extra ';' outside of a function [-pedantic]". by Frits van Bommel · 13 years ago
  66. d496f88 This testcase passed even without the fix. Added the target info to make the by Nadav Rotem · 13 years ago
  67. f3ba7af Fix some typos. Minor tweaks to how some things were expressed. by Duncan Sands · 13 years ago
  68. cb88ec3 Trivial typo fixes. by Jay Foad · 13 years ago
  69. 4841121 Add an empty key for DebugLoc so that you can store an empty DebugLoc in a by Nick Lewycky · 13 years ago
  70. 49123fd Finish up the first draft of the release notes. by Chris Lattner · 13 years ago
  71. c5ac61d continue writing. by Chris Lattner · 13 years ago
  72. af4db5f Support using DebugLoc's in a DenseMap. by Nick Lewycky · 13 years ago
  73. 49460bc Oops. Scary. by Jakob Stoklund Olesen · 13 years ago
  74. db529a8 Analyze blocks with uses separately from live-through blocks without uses. by Jakob Stoklund Olesen · 13 years ago
  75. 6a1220e Add a missing opcode (SMLSLDX) to BadRegsMulFrm() function. by Johnny Chen · 13 years ago
  76. 3bfe57e add the external users that emailed me. by Chris Lattner · 13 years ago
  77. c41ab78 RuntimeDyld should use the memory manager API. by Jim Grosbach · 13 years ago
  78. 2009c49 some libc++ notes. by Chris Lattner · 13 years ago
  79. df448a3 some edits. by Chris Lattner · 13 years ago
  80. 1efe27e distribute content out to the appropriate sections by Chris Lattner · 13 years ago
  81. b48c791 Reapply r128946 (pseudoization of various instructions), and fix the extra imp-def of CPSR it was adding. by Owen Anderson · 13 years ago
  82. 53c5e7b Make the virtual destructor out-of-line so we have a key function. by Chandler Carruth · 13 years ago
  83. 71d9e65 Sign error by Jakob Stoklund Olesen · 13 years ago
  84. b3dd826 Don't crash when a value is defined after the last split point. by Jakob Stoklund Olesen · 13 years ago
  85. 3e22897 Permit blocks to branch directly to a landing pad. by Jakob Stoklund Olesen · 13 years ago
  86. caf767b Remove extraneous 'return'. by Jim Grosbach · 13 years ago
  87. 2c868d1 Fix a typo in the handling of PKHTB opcode, plus add sanity check for illegal register by Johnny Chen · 13 years ago
  88. e4dc196 finished my pass through all the 2.9 commits, now to make this intelligible by Chris Lattner · 13 years ago
  89. 8ae4261 mention llvm::ArrayRef, which should be use much more pervasively than by Chris Lattner · 13 years ago
  90. 61f3cf3 Clean up some code for clarity. by Bob Wilson · 13 years ago
  91. d36d42d Provide an empty virtual destructor to go with the virtual methods in by Chandler Carruth · 13 years ago
  92. 493cba1 Revert r128946 while I figure out why it broke the buildbots. by Owen Anderson · 13 years ago
  93. c3281c1 A7.3 register encoding by Johnny Chen · 13 years ago
  94. da19475 Add support to encode function's template parameters. by Devang Patel · 13 years ago
  95. 76634df Give RSBS and RSCS the pseudo treatment. by Owen Anderson · 13 years ago
  96. 5438d76 ARM disassembler was erroneously accepting an invalid RSC instruction. by Johnny Chen · 13 years ago
  97. 1a8b9dd remove postdom frontiers, because it is dead. Forward dom frontiers are by Chris Lattner · 13 years ago
  98. c631931 docs/ReleaseNotes.html: Please use proper *Heading* elements instead of classified div. by NAKAMURA Takumi · 13 years ago
  99. c584e31 ARM disassembler was erroneously accepting an invalid LSL instruction. by Johnny Chen · 13 years ago
  100. 7670601 Fix bugs in the pseuo-ization of ADCS/SBCS pointed out by Jim, as well as doing the expansion earlier (using a custom inserter) to allow for the chance of predicating these instructions. by Owen Anderson · 13 years ago