1. eaba3a1 Implement SimplifyCFG/branch-phi-thread.ll, the most trivial case of threading by Chris Lattner · 19 years ago
  2. 6306d07 Fix Transforms/SimplifyCFG/2005-08-03-PHIFactorCrash.ll, a problem that by Chris Lattner · 19 years ago
  3. 1aad921 Finally, add the required constraint checks to fix Transforms/SimplifyCFG/2005-08-01-PHIUpdateFail.ll by Chris Lattner · 19 years ago
  4. dc88dbe Simplify some code, add the correct pred checks by Chris Lattner · 19 years ago
  5. 3b3efc7 Refactor code out of PropagatePredecessorsForPHIs, turning it into a pure function with no side-effects by Chris Lattner · 19 years ago
  6. d423b8b use splice instead of remove/insert to avoid some symtab operations by Chris Lattner · 19 years ago
  7. 2bdcb56 move two functions up in the file, use SafeToMergeTerminators to eliminate by Chris Lattner · 19 years ago
  8. 7e66348 Rip some code out of the main SimplifyCFG function into a subfunction and by Chris Lattner · 19 years ago
  9. 17de414 Disable this patch: by Chris Lattner · 19 years ago
  10. f5e982d Change a place to use an arbitrary value instead of null, when possible by Chris Lattner · 19 years ago
  11. 1593ac2 This code was very close, but not quite right. It did not take into by Chris Lattner · 19 years ago
  12. 0289929 Don't crash on: X = phi (X, X). by Chris Lattner · 19 years ago
  13. 42eb752 Fix Transforms/SimplifyCFG/switch-simplify-crash.ll by Chris Lattner · 19 years ago
  14. 16d0db2 Make sure to preserve the calling convention when changing an invoke into by Chris Lattner · 19 years ago
  15. fd93908 Remove trailing whitespace by Misha Brukman · 19 years ago
  16. bf5d4fb Teach simplifycfg that setcc is cheap and non-trapping, so that it can by Chris Lattner · 19 years ago
  17. 151c80b Get rid of this for_each loop by Chris Lattner · 19 years ago
  18. da895d6 Fix spelling, patch contributed by Gabor Greif! by Chris Lattner · 20 years ago
  19. be54dcc remove extraneous cast by Chris Lattner · 20 years ago
  20. 623369a Implement Transforms/SimplifyCFG/switch_thread.ll by Chris Lattner · 20 years ago
  21. 3788059 switchinst ctor now takes a hint for the number of cases that it will have. by Chris Lattner · 20 years ago
  22. 13b2f76 Implement SimplifyCFG/DeadSetCC.ll by Chris Lattner · 20 years ago
  23. 7613437 Fix Regression/Transforms/SimplifyCFG/2004-12-10-SimplifyCFGCrash.ll, by Chris Lattner · 20 years ago
  24. 0f535c6 Squelch warning by Chris Lattner · 20 years ago
  25. 6f9e571 Alkis noticed that this variable is dead. Thanks! by Chris Lattner · 20 years ago
  26. 37dc938 If we have something like this: by Chris Lattner · 20 years ago
  27. bfd3e52 Do not compute the predecessor list for a block unless we need it. by Chris Lattner · 20 years ago
  28. 4e073a8 Eliminate compilation warning on uninitialized variable. by Reid Spencer · 20 years ago
  29. 698f96f Simplify code by deleting instructions that preceed unreachable instructions. by Chris Lattner · 20 years ago
  30. 9c07866 When converting phi nodes into select instructions, we shouldn't promote PHI by Chris Lattner · 20 years ago
  31. 0ed7f42 Do not insert trivially dead select instructions, which allows us to by Chris Lattner · 20 years ago
  32. 2da5c3d Convert code to compile with vc7.1. by Reid Spencer · 20 years ago
  33. 20aa474 Fixes to make LLVM compile with vc7.1. by Alkis Evlogimenos · 20 years ago
  34. 551ccae Changes For Bug 352 by Reid Spencer · 20 years ago
  35. 7848e68 These files don't need to include <iostream> since they include "Support/Debug.h". by Brian Gaeke · 20 years ago
  36. af17b1d Implement SimplifyCFG/BrUnwind.ll by Chris Lattner · 20 years ago
  37. 460f16c bug 122: - Minimize redundant isa<GlobalValue> usage by Reid Spencer · 20 years ago
  38. 30b4344 Progress on PR341 by Chris Lattner · 20 years ago
  39. 954da37 Add #include <iostream> since Value.h does not #include it any more. by Reid Spencer · 20 years ago
  40. 2636c1b *FINALLY* Fix a really nasty nondeterministic bug that has been haunting us by Chris Lattner · 20 years ago
  41. 218a822 Add some DEBUG output to the simplifycfg routines by Chris Lattner · 20 years ago
  42. 1654cff Do not sort by the address of LLVM ConstantInt* objects. This produces by Chris Lattner · 20 years ago
  43. bdcc0b8 Do not clone arbitrary condition instructions. by Chris Lattner · 20 years ago
  44. 12fe2b1 Do not infinitely "unroll" single BB loops. by Chris Lattner · 20 years ago
  45. a1f79fb Dont' merge terminators that are needed to select PHI node values. by Chris Lattner · 20 years ago
  46. e67fa05 Implement SimplifyCFG/branch-cond-merge.ll by Chris Lattner · 20 years ago
  47. 951fdb9 Fix my missing parens by Chris Lattner · 20 years ago
  48. 92da2c2 Implement SimplifyCFG/branch-cond-prop.ll by Chris Lattner · 20 years ago
  49. 570751c Fold code like: if (C) V1 |= V2; by Chris Lattner · 20 years ago
  50. 7aa773b Fix the obvious bug in my previous checkin by Chris Lattner · 20 years ago
  51. 147af6b Implement Transforms/SimplifyCFG/return-merge.ll by Chris Lattner · 20 years ago
  52. 552112f Now that all the code generators support the select instruction, and the instcombine by Chris Lattner · 20 years ago
  53. 7acd1cc Fix compilation of mesa, which I broke earlier today by Chris Lattner · 21 years ago
  54. 4bebf08 Do not copy gigantic switch instructions by Chris Lattner · 21 years ago
  55. 542f149 Implement switch->br and br->switch folding by ripping out the switch->switch by Chris Lattner · 21 years ago
  56. f2dbf50e turn things like: if (X == 0 || X == 2) by Chris Lattner · 21 years ago
  57. 8e509dd If a block is made dead, make sure to promptly remove it. by Chris Lattner · 21 years ago
  58. d52c261 Implement SimplifyCFG/switch_switch_fold.ll by Chris Lattner · 21 years ago
  59. e14ea08 Rearrange code a bit by Chris Lattner · 21 years ago
  60. 0d56008 Implement: test/Regression/Transforms/SimplifyCFG/switch_create.ll by Chris Lattner · 21 years ago
  61. 19831ec Implement test/Regression/Transforms/SimplifyCFG/UncondBranchToReturn.ll, by Chris Lattner · 21 years ago
  62. 723c66d Implement SimplifyCFG/PhiEliminate.ll by Chris Lattner · 21 years ago
  63. 2355f94 The hasConstantReferences predicate always returns false. by Chris Lattner · 21 years ago
  64. aeb2a1d rename the "exceptional" destination of an invoke instruction to the 'unwind' dest by Chris Lattner · 21 years ago
  65. f7703df Finegrainify namespacification by Chris Lattner · 21 years ago
  66. d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 21 years ago
  67. b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 21 years ago
  68. cf00c4a Fix spelling. by Misha Brukman · 21 years ago
  69. ee5457c Eliminate support for the llvm.unwind intrinisic, using the Unwind instruction instead by Chris Lattner · 21 years ago
  70. dc3602b Implement SimplifyCFG/InvokeEliminate.ll by Chris Lattner · 21 years ago
  71. 694e37f Fix bug: SimplifyCFG/2003-08-17-BranchFoldOrdering.ll by Chris Lattner · 21 years ago
  72. 122558b Fix bug: SimplifyCFG/2003-08-05-InvokeCrash.ll by Chris Lattner · 21 years ago
  73. e408e25 Remove unnecesary &*'s by Chris Lattner · 21 years ago
  74. 3a43837 Fix bug: SimplifyCFG/2003-03-07-DominateProblem.ll by Chris Lattner · 22 years ago
  75. 46a5f1f Implement CFGSimplify/PhiBlockMerge*.ll by Chris Lattner · 22 years ago
  76. e2ca540 Implement testcase CFGSimplify/EqualPHIEdgeBlockMerge.ll by Chris Lattner · 22 years ago
  77. a3bbcb5 Fix spelling of `propagate'. by Misha Brukman · 22 years ago
  78. bb190ac by Chris Lattner · 22 years ago
  79. 929b2c6 Fix bug: SimplifyCFG/2002-09-24-PHIAssertion.ll by Chris Lattner · 22 years ago
  80. 3abb95d Minor cleanups by Chris Lattner · 22 years ago
  81. 91b65c0 Allow folding of basic blocks that have PHI nodes in them, fixing "bug": by Chris Lattner · 22 years ago
  82. 1896150 *** empty log message *** by Chris Lattner · 22 years ago
  83. 01d1ee3 Add implementation of SimplifyCFG by Chris Lattner · 22 years ago