1. 5cec4db Rename ScalarEvolution::deleteInstructionFromRecords to by Dan Gohman · 18 years ago
  2. b5bec2b Pass a SelectionDAG into SDNode::dump everywhere it's used, in prepration by Dan Gohman · 18 years ago
  3. d095410 Handle constants in phi nodes properly. This fixes test/Transforms/GVNPRE/2007-06-18-ConstantInPhi.ll by Owen Anderson · 18 years ago
  4. 85ef254 document and hide two options. by Chris Lattner · 18 years ago
  5. 3ee7740 describe an argument, hide it. by Chris Lattner · 18 years ago
  6. 2384d7b silence a bogus warning Duraid ran into. by Chris Lattner · 18 years ago
  7. 20cb51f Be careful to erase values from all of the appropriate sets when they're not needed anymore. This fixes a few more memory-related issues. by Owen Anderson · 18 years ago
  8. 6cae740 Remember to clear the maximal sets between functions. by Owen Anderson · 18 years ago
  9. 086f5f3 Refactor GVNPRE to use a much smart method of uniquing value sets, and centralize a lot of the value numbering information. No functionality change. by Owen Anderson · 18 years ago
  10. 82a87a0 Replace M_REMATERIALIZIBLE and the newly-added isOtherReMaterializableLoad by Dan Gohman · 18 years ago
  11. eaa91b0 Replace TargetInstrInfo::CanBeDuplicated() with a M_NOT_DUPLICABLE bit. by Evan Cheng · 18 years ago
  12. 52387be If a function is vararg, never pass inreg arguments in registers. Thanks to by Chris Lattner · 18 years ago
  13. aeeccfc add isVarArg to CCState by Chris Lattner · 18 years ago
  14. 49892af Look for VECTOR_SHUFFLE that's identity operation on either LHS or RHS. This can happen before DAGCombiner catches it. by Evan Cheng · 18 years ago
  15. c4047a8 Fix some fragile code wrt CFG edge updating. by Evan Cheng · 18 years ago
  16. 2bdb7d0 Move CorrectExtraCFGEdges() from BranchFolding.cpp to a MachineBasicBlock method. by Evan Cheng · 18 years ago
  17. 7d97bf1 Fix quotes in debug messages. by Devang Patel · 18 years ago
  18. e10e6f7 make ComputeTopDownOrdering significantly faster and use less stack space by Chris Lattner · 18 years ago
  19. f50cd74 In SCEVAddExpr::get, skip over any cast operands before looking for nested by Dan Gohman · 18 years ago
  20. 03265f9 Make BasicAliasAnalysis correctly register itself. Patch by Devang by Anton Korobeynikov · 18 years ago
  21. 7a0a4fc Make chain dependencies blue, in addition to being dashed. by Dan Gohman · 18 years ago
  22. 638c96d Define the pushq instruction for x86-64. by Dan Gohman · 18 years ago
  23. a1a8787 Properly remove duplicate instructions as result of diamond if-conversion. Other bug fixes. by Evan Cheng · 18 years ago
  24. bbf1197 Cache the results of dependsOnInvoke() by Owen Anderson · 18 years ago
  25. a8daa71 Fix indentation. by Owen Anderson · 18 years ago
  26. 60e1744 Don't perform an expensive check if it's not necessary. by Owen Anderson · 18 years ago
  27. a9e64f6 Revert patch. It regresses: by Bill Wendling · 18 years ago
  28. e882fca Really turn if-converter loose: by Evan Cheng · 18 years ago
  29. e81369f Fix a failure to bit_convert from integer GPR to MMX register. by Bill Wendling · 18 years ago
  30. 32bc789 Fix test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll by ignoring all instructions that depend on invokes. by Owen Anderson · 18 years ago
  31. 24e5aad Codegen support (stripped out) for the annotate attribute. by Tanya Lattner · 18 years ago
  32. a2acf84 Not every predicable block can be safely duplicated. by Evan Cheng · 18 years ago
  33. d42e56e Instructions with unique labels or embedded jumptables cannot be duplicated during ifcvt. by Evan Cheng · 18 years ago
  34. 0f0eb18 Fold a binary operator with constant operands when expanding code for a SCEV. by Dan Gohman · 18 years ago
  35. c2c28fc Fix CodeGen/X86/inline-asm-x-scalar.ll:test4, by retaining regclass info by Chris Lattner · 18 years ago
  36. bf9d02e MachineInstr::isPredicable() is no longer needed. by Evan Cheng · 18 years ago
  37. f407082 Workaround for PR1508. by Duncan Sands · 18 years ago
  38. e19dd87 Use SCEVConstant::get instead of SCEVUnknown::get to create an by Dan Gohman · 18 years ago
  39. 383bcb2 Fix test/Transforms/GVNPRE/2007-06-15-Looping.ll by Owen Anderson · 18 years ago
  40. 9333545 Extra edges are deleted later if needed. by Evan Cheng · 18 years ago
  41. d19534a Add a SCEV class and supporting code for sign-extend expressions. by Dan Gohman · 18 years ago
  42. 2c8c3a4 Allow small blocks to be duplicated to enable if-conversion. by Evan Cheng · 18 years ago
  43. 7cbe2eb Generalize many transforms to work on ~ of vectors in addition to ~ of by Chris Lattner · 18 years ago
  44. cef4b53 add a Constant::getAllOnesValue helper function, which works on integers by Chris Lattner · 18 years ago
  45. e20b7be Enhance BinaryOperator::isNot to support vector not. by Chris Lattner · 18 years ago
  46. 003b620 Implement two xforms: 1. ~(~X | Y) === (X & ~Y) 2. (A|B) & ~(A&B) -> A^B by Chris Lattner · 18 years ago
  47. 041a6c9 delete some obviously dead vector operations, which deletes a few thousand by Chris Lattner · 18 years ago
  48. bc198ee No really, clear predcessors states. by Evan Cheng · 18 years ago
  49. e37e243 If BB is predicated, invalidate its predecessor(s) which would if-convert it. It needs to be re-analyzed. by Evan Cheng · 18 years ago
  50. 51eaa86 Rename MVT::getVectorBaseType to MVT::getVectorElementType. by Dan Gohman · 18 years ago
  51. 318093b Do not treat FP_REG_KILL as terminator in branch analysis (X86). by Dale Johannesen · 18 years ago
  52. b7c908b Fix typo. by Evan Cheng · 18 years ago
  53. c101e95 Add a target hook to allow loads from constant pools to be rematerialized, and an by Dan Gohman · 18 years ago
  54. 86ff296 Fix some stupid bugs that have effectively disabled if-conversion. by Evan Cheng · 18 years ago
  55. af67ea7 Eliminate some redundant newlines in asm output. by Dan Gohman · 18 years ago
  56. a321125 Add support to tablegen for specifying subregister classes on a per register class basis. by Christopher Lamb · 18 years ago
  57. 13e8b51 Handle blocks with 2 unconditional branches in AnalyzeBranch. by Dale Johannesen · 18 years ago
  58. ea63243 Only correctly lower exception handing intrinsics if exception handling is by Duncan Sands · 18 years ago
  59. 6595635 Introduce new SelectionDAG node opcodes VEXTRACT_SUBVECTOR and by Dan Gohman · 18 years ago
  60. 2046e12 When creating CopyFromReg nodes, always use legal types. And use the by Dan Gohman · 18 years ago
  61. f19f6bb The fix that was applied for PR1224 stops the compiler by Duncan Sands · 18 years ago
  62. 93a8e5e Typo by Evan Cheng · 18 years ago
  63. cc8fb46 Now if-converting all 4 variants of triangles. by Evan Cheng · 18 years ago
  64. 71fcebc Fix test/Transforms/GVNPRE/2007-06-12-PhiTranslate.ll by Owen Anderson · 18 years ago
  65. d75405f isReachableFromEntry() is not suitable for post dominator. by Devang Patel · 18 years ago
  66. de6e132 Remove redundant check. by Devang Patel · 18 years ago
  67. 5fd306b Check A dominates B and vise versa first while searching for nearest by Devang Patel · 18 years ago
  68. 239e712 Refactor some code, and fix test/Transforms/GVNPRE/2007-06-12-NoExit.ll by being more careful when using by Owen Anderson · 18 years ago
  69. ce0b237 Sink CmpInst's to their uses to reduce register pressure. by Dale Johannesen · 18 years ago
  70. 4d42dea Break DominatorTree from ETNode. Remove unused PostETForest. by Devang Patel · 18 years ago
  71. 65d2862 Fix a few more bugs, including an instance of walking in reverse topological rather than topological order. This by Owen Anderson · 18 years ago
  72. bdfa1f8 Use SmallPtrSet instaed of std::set by Devang Patel · 18 years ago
  73. 87f05a2 Check immediate dominators first while searching for nearset common dominator. by Devang Patel · 18 years ago
  74. 3726b82 Maintain DFS number in DomTreeNode itself. by Devang Patel · 18 years ago
  75. fe7d4e5 Add and use DominatorTreeBase::findNearestCommonDominator(). by Devang Patel · 18 years ago
  76. 976e2da Fix a typo in bswap lowering. by Lauro Ramos Venancio · 18 years ago
  77. 9618bca Restructure code to reduce ifcvt compile time cost. by Evan Cheng · 18 years ago
  78. f60e5a2 Simplify. by Devang Patel · 18 years ago
  79. b28aaad simplify by Devang Patel · 18 years ago
  80. e3f6536 Simplify. Dominator Tree is required so always available. by Devang Patel · 18 years ago
  81. 0e71466 Handle functions with multiple exit blocks properly. by Owen Anderson · 18 years ago
  82. 2099ff0 Use DominatorTree instead of ETForest. by Devang Patel · 18 years ago
  83. a9bf49c Fix the build. by Reid Spencer · 18 years ago
  84. 139fe84 Perform PRE of comparison operators. by Owen Anderson · 18 years ago
  85. fdbe720 fix x86-64 mmx calling convention for real, which passes in integer gprs. by Chris Lattner · 18 years ago
  86. 6b7c21c fix mmx handling bug by Chris Lattner · 18 years ago
  87. ae5eb7a Fix edge case. by Nick Lewycky · 18 years ago
  88. 1c9f91d Don't change CFG during analysis stage. Do so during ifcvt and invalidate predecessors accordingly. by Evan Cheng · 18 years ago
  89. b8b873c Collect statistics from GVN-PRE. by Owen Anderson · 18 years ago
  90. 7e75ba8 Carefully remove extraneous CFG edges after each ifcvt. by Evan Cheng · 18 years ago
  91. bfd2ec4 Add a utility routine to check for unpredicated terminator instruction. by Evan Cheng · 18 years ago
  92. 61718a6 Define AsmTransCBE for ARM. by Lauro Ramos Venancio · 18 years ago
  93. a7f916c Fix typo in a comment. by Owen Anderson · 18 years ago
  94. 8338ff5 Fix a bug that was causing the elimination phase not to replace values when it should be. by Owen Anderson · 18 years ago
  95. 2acdbcc Correct transfer predicate information. by Evan Cheng · 18 years ago
  96. edf4896 Hidden options to help debugging ifcvt issues. by Evan Cheng · 18 years ago
  97. 2513330 Factor live variable analysis so it does not do register coalescing by David Greene · 18 years ago
  98. ac5f142 Allow more cmp / bcc to be predicated; clean up triangle ifcvt checking code. by Evan Cheng · 18 years ago
  99. 1fc7cb6 Fix ARM condition code subsumission check. by Evan Cheng · 18 years ago
  100. f81dea4 tBcc is not a barrier. by Evan Cheng · 18 years ago