1. 480b80a Add text explaining an assertion. by Cameron Zwarich · 15 years ago
  2. 9c54c14 Remove second return. by Rafael Espindola · 15 years ago
  3. a7e4505 Fix bug when trying to output uint16_t or uint32_t. by Rafael Espindola · 15 years ago
  4. b40a71f Implement cfi_def_cfa. Also don't convert to dwarf reg numbers twice. Looks by Rafael Espindola · 15 years ago
  5. e562dba fix PR8867: a crash handling fp128. Thanks to Nick for the testcase. by Chris Lattner · 15 years ago
  6. b4601bd Implement cfi_def_cfa_register. by Rafael Espindola · 15 years ago
  7. b790a17 Initial .cfi_offset implementation. by Rafael Espindola · 15 years ago
  8. cb584d0 Simplify some code in MachineVerifier that was doing the correct thing, but not by Cameron Zwarich · 15 years ago
  9. 3b78cdc Don't produce a "DW_CFA_advance_loc 0". by Rafael Espindola · 15 years ago
  10. 438e25c Revert the optimization in r122596. It is correct for all current targets, but by Cameron Zwarich · 15 years ago
  11. f661277 by Venkatraman Govindaraju · 15 years ago
  12. 0538729 Integers are primitive types. Update the documentation to state this by Tobias Grosser · 15 years ago
  13. 95ae676 simplify this, isBytewiseValue handles the extra check. We still by Chris Lattner · 15 years ago
  14. 1dc5db2 add a note from llvmdev by Chris Lattner · 15 years ago
  15. fe024d0 Implement .cfi_remember_state and .cfi_restore_state. by Rafael Espindola · 15 years ago
  16. 19f14dc Clarify that InstructionSimplify only returns values that dominate the by Duncan Sands · 15 years ago
  17. 9bc6a90 Small optimization to speed up replacementPreservesLCSSAForm. by Duncan Sands · 15 years ago
  18. e21083a Cast away "comparison between signed and unsigned integer" warnings. by Benjamin Kramer · 15 years ago
  19. 3fee954 Fix a signed/unsigned comparison warning. by Benjamin Kramer · 15 years ago
  20. 92f0fcb6 Avoid iterating every operand of an instruction in StrongPHIElimination, since by Cameron Zwarich · 15 years ago
  21. 2aea490 Pacify the compiler. BestWeight cannot in fact be used uninitialized by Duncan Sands · 15 years ago
  22. 849ecb1 Fix warning about size potentially being used uninitialized by Duncan Sands · 15 years ago
  23. 7922d34 Silence gcc warning about an unused variable when doing a release build. by Duncan Sands · 15 years ago
  24. 245a1e2 Relax address updates in the eh_frame section. by Rafael Espindola · 15 years ago
  25. 5bba084 Start adding basic support for emitting the call frame instructions. by Rafael Espindola · 15 years ago
  26. 4213618 Support/Path: Deprecate Path::hasMagicNumber and replace all uses with fs::has_magic. by Michael J. Spencer · 15 years ago
  27. bf0184b Fix typo. by Michael J. Spencer · 15 years ago
  28. 628467e Support/PathV2: Implement has_magic. by Michael J. Spencer · 15 years ago
  29. c3ab20e Change an assertion to assert what the code actually relies upon. by Cameron Zwarich · 15 years ago
  30. 2e12f1a fix some issues Frits noticed, add AliasAnalysis as a dependency by Chris Lattner · 15 years ago
  31. bdc3167 Add support for .cfi_lsda. by Rafael Espindola · 15 years ago
  32. e862453 MC/Mach-O/Thumb: Select appropriate relocation types for Thumb. by Daniel Dunbar · 15 years ago
  33. 4e7f23b Land a first cut at StrongPHIElimination. There are only 5 new test failures by Cameron Zwarich · 15 years ago
  34. 4eee42c Add knowledge of phi-def and phi-kill valnos to MachineVerifier's predecessor by Cameron Zwarich · 15 years ago
  35. 9170a0f Support/PathV1: Deprecate GetRootDirectory. by Michael J. Spencer · 15 years ago
  36. c3a561c Handle reloc_riprel_4byte_movq_load. Should make the bots happy. by Rafael Espindola · 15 years ago
  37. 3a83c40 Add support for the same encodings of the personality function that gnu as by Rafael Espindola · 15 years ago
  38. def548f BuildLibCalls: Nuke EmitMemCpy, EmitMemMove and EmitMemSet. They are dead and superseded by IRBuilder. by Benjamin Kramer · 15 years ago
  39. a1bf4ca SimplifyLibCalls: Use IRBuilder to simplify code. by Benjamin Kramer · 15 years ago
  40. 9f39188 have loop-idiom nuke instructions that feed stores that get removed. by Chris Lattner · 15 years ago
  41. a92ff91 implement enough of the memset inference algorithm to recognize and insert by Chris Lattner · 15 years ago
  42. 61db1f5 start using irbuilder to make mem intrinsics in a few passes. by Chris Lattner · 15 years ago
  43. c0d5496 add methods to IRBuilder to create memcpy/memset/memmove. by Chris Lattner · 15 years ago
  44. 390b693 Fix .cfi_personality on 32 bit systems. by Rafael Espindola · 15 years ago
  45. 9897661 Add support for @note. Patch by Jörg Sonnenberger. by Rafael Espindola · 15 years ago
  46. 22920b5 sketch more of this out. by Chris Lattner · 15 years ago
  47. d7c8cca Add basic support for .cfi_personality. by Rafael Espindola · 15 years ago
  48. bb89710 move isBytewiseValue out to ValueTracking.h/cpp by Chris Lattner · 15 years ago
  49. e6bb649 actually add the file... by Chris Lattner · 15 years ago
  50. b0db161 Start of a pass for recognizing memset and memcpy idioms. No functionality yet. by Chris Lattner · 15 years ago
  51. 3fed0d9 Simplify code. by Benjamin Kramer · 15 years ago
  52. 6dbb5dc fix some sort of weird pasto by Chris Lattner · 15 years ago
  53. 8a4893e add a note by Chris Lattner · 15 years ago
  54. 7ab3cc3 Generalize a previous change, fixing PR8855 - an valid large immediate by Chris Lattner · 15 years ago
  55. ae47be1 don't lose TD info by Chris Lattner · 15 years ago
  56. 7569d79 switch the inliner alignment enforcement stuff to use the by Chris Lattner · 15 years ago
  57. 687140c Move getOrEnforceKnownAlignment out of instcombine into Transforms/Utils. by Chris Lattner · 15 years ago
  58. 43ee29d Support/PathV1: Deprecate makeAbsolute and remove Unix impl because it annoys people. by Michael J. Spencer · 15 years ago
  59. 7853ae1 Header warning patrol. by Eric Christopher · 15 years ago
  60. 49c7e3e Fix a thinko pointed out by Frits van Bommel: looking through global variables in isBytewiseValue is not safe. by Benjamin Kramer · 15 years ago
  61. fea753b Merge IsFixupFullyResolved and IsSymbolRefDifferenceFullyResolved. We now by Rafael Espindola · 15 years ago
  62. a112087 MemCpyOpt: Turn memcpys from a constant into a memset if possible. by Benjamin Kramer · 15 years ago
  63. 4010dd7 MC/Mach-O/ARM: Start handling some Thumb branches. by Daniel Dunbar · 15 years ago
  64. a75ce9f Minor cleanup related to my latest scheduler changes. by Andrew Trick · 15 years ago
  65. 2431223 Fix a few cases where the scheduler is not checking for phys reg copies. The scheduling node may have a NULL DAG node, yuck. by Andrew Trick · 15 years ago
  66. 398abb4 Trailing whitespace. by Jim Grosbach · 15 years ago
  67. 2da8bc8 Various bits of framework needed for precise machine-level selection by Andrew Trick · 15 years ago
  68. 6e8f4c4 whitespace by Andrew Trick · 15 years ago
  69. ef485d8 Simplify a check for implicit defs and remove a FIXME. by Cameron Zwarich · 15 years ago
  70. d82ed5b In llvm-mc parse a Hash token as a full line comment. Allows handling of by Kevin Enderby · 15 years ago
  71. f12eee7 Use a StringSwitch<> instead of a manually constructed string matcher. by Jim Grosbach · 15 years ago
  72. ec3953f When determining if we can fold (x >> C1) << C2, the bits that we need to verify are zero by Owen Anderson · 15 years ago
  73. e4a2dd2 Code clean up. No functionality change. by Evan Cheng · 15 years ago
  74. b0ad9cf Remove dead patterns. by Jim Grosbach · 15 years ago
  75. 940c8e5 Recognize a few more documented register name aliases for ARM in the asm lexer. by Jim Grosbach · 15 years ago
  76. 3c90469 Radar 8803471: Fix expansion of ARM BCCi64 pseudo instructions. by Bob Wilson · 15 years ago
  77. af62935 Do not re-test for the existence of pthread.h. by Oscar Fuentes · 15 years ago
  78. 7898261 XFAIL vg_leak the new test as the rest. by Torok Edwin · 15 years ago
  79. d5f8684 It is possible for SimplifyCFG to cause PHI nodes to become redundant too late in the optimization by Owen Anderson · 15 years ago
  80. 036609b Flag -> Glue, the ongoing saga by Chris Lattner · 15 years ago
  81. 29d8f0c flags -> glue for selectiondag by Chris Lattner · 15 years ago
  82. a4359be sdisel flag -> glue. by Chris Lattner · 15 years ago
  83. 8950bca continue renaming flag -> glue. by Chris Lattner · 15 years ago
  84. a156efd Fix OCaml bindings crash, PR8847. by Torok Edwin · 15 years ago
  85. 9d071cb Remove/fix invalid README entries. The well thought out strcpy function doesn't return a pointer to the end of the string. by Benjamin Kramer · 15 years ago
  86. 3e41061 Remove some obsolete README items, add a new one off the top of my head. by Benjamin Kramer · 15 years ago
  87. 2902736 Reorganize ListScheduleBottomUp in preparation for modeling machine cycles and instruction issue. by Andrew Trick · 15 years ago
  88. 3d420cb Converted LiveRegCycles to LiveRegGens. It's easier to work with and allows multiple nodes per cycle. by Andrew Trick · 15 years ago
  89. cb7947b8 In CheckForLiveRegDef use TRI->getOverlaps. by Andrew Trick · 15 years ago
  90. 1b16587 Fixes PR8823: add-with-overflow-128.ll by Andrew Trick · 15 years ago
  91. e90a633 Preserve the address space when generating bitcasts for MemTransferInst in ConvertToScalarInfo by Mon P Wang · 15 years ago
  92. 8e68c38 Change all self assignments X=X to (void)X, so that we can turn on a by Jeffrey Yasskin · 15 years ago
  93. 65e43a2 Default to armv7 instead of armv6. by Bill Wendling · 15 years ago
  94. 9584bd8 Trailing whitespace. by Jim Grosbach · 15 years ago
  95. f50125e DAGCombine add (sext i1), X into sub X, (zext i1) if sext from i1 is illegal. The latter usually compiles into smaller code. by Benjamin Kramer · 15 years ago
  96. 4ac1947 InstCombine: creating selects from -1 and 0 is fine, they combine into a sext from i1. by Benjamin Kramer · 15 years ago
  97. e915ff3 X86: Lower a select directly to a setcc_carry if possible. by Benjamin Kramer · 15 years ago
  98. 10b6d33 Add r122359 back now that the bug in MCDwarfLineAddrFragment fragment has been by Rafael Espindola · 15 years ago
  99. df3ee64 Constify. by Dan Gohman · 15 years ago
  100. 835439a Assert that the AddrDelta expression is really constant and wrap it in a set by Rafael Espindola · 15 years ago