1. aff96b2 Rename SuccessorNumber to GetSuccessorNumber. by Bob Wilson · 16 years ago
  2. 3de492e Refactor to share code to find the position of a basic block successor in the by Bob Wilson · 16 years ago
  3. 7b151e9 No need to look through bitcasts for DbgInfoIntrinsic by Victor Hernandez · 16 years ago
  4. cb99fe9 Make RecursivelyDeleteTriviallyDeadInstructions, by Dan Gohman · 16 years ago
  5. ccce8ba Avoid going through the LLVMContext for type equality where it's safe to dereference the type pointer. by Benjamin Kramer · 16 years ago
  6. be94f23 Remove dead debug info intrinsics. by Devang Patel · 16 years ago
  7. 8bca014 Remove unnecessary #include "llvm/LLVMContext.h". by Nick Lewycky · 16 years ago
  8. 00c7938 Add an assertion to catch indirectbr in SplitBlockPredecessors. This by Dan Gohman · 16 years ago
  9. a1dc101 change llvm::MergeBlockIntoPredecessor to not merge two blocks BB1->BB2 by Chris Lattner · 16 years ago
  10. c872b09 llvm::SplitEdge should refuse to split an edge from an indirectbr. by Chris Lattner · 16 years ago
  11. 2d02ff8 Revert r85667. LoopUnroll currently can't call utility functions which by Dan Gohman · 16 years ago
  12. 144694b Remove redundant code. by Dan Gohman · 16 years ago
  13. 041e2db Merge the enhancements from LoopUnroll's FoldBlockIntoPredecessor into by Dan Gohman · 16 years ago
  14. 11cf3f4 Factor out redundancy from clone() implementations. by Devang Patel · 16 years ago
  15. 8f98667 Fix SplitBlockPredecessors' LoopInfo updating code to handle the case by Dan Gohman · 16 years ago
  16. 42fb745 Instruction::clone does not need to take an LLVMContext&. Remove that and by Nick Lewycky · 16 years ago
  17. 3ddbc24 Re-apply r80926, with fixes: keep the domtree informed of new blocks by Dan Gohman · 16 years ago
  18. 9041995 Revert r80926. It causes loop unswitch assertion and slow down some JIT tests significantly. by Evan Cheng · 16 years ago
  19. 4c1bdcf Add a verifyAnalysis to LoopInfo, LoopSimplify, and LCSSA form that verify by Dan Gohman · 16 years ago
  20. 2257148 Change PHINode::hasConstantValue to have a DominatorTree argument by Dan Gohman · 16 years ago
  21. c8a27f2 Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined, by Dan Gohman · 16 years ago
  22. 55f1c09 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 16 years ago
  23. 5a1acd9 Move a few more APIs back to 2.5 forms. The only remaining ones left to change back are by Owen Anderson · 16 years ago
  24. b292b8c Move more code back to 2.5 APIs. by Owen Anderson · 16 years ago
  25. 43d19d6 Make AliasAnalysis and related classes use getAnalysisIfAvailable<TargetData>(). by Dan Gohman · 16 years ago
  26. 85a791e AliasAnalysis wants sizes in address-units, not bits. by Dan Gohman · 16 years ago
  27. 47db941 Get rid of the Pass+Context magic. by Owen Anderson · 16 years ago
  28. fbcc663 llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  29. ccb29cd Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
  30. 1e5f00e This started as a small change, I swear. Unfortunately, lots of things call the [I|F]CmpInst constructors. Who knew!? by Owen Anderson · 16 years ago
  31. e70b637 More LLVMContext-ification. by Owen Anderson · 16 years ago
  32. 48f8222 Re-apply 70645, converting ScalarEvolution to use by Dan Gohman · 17 years ago
  33. 351134b Factor loop backedge finding out of CodeGenPrepare into a new by Chris Lattner · 17 years ago
  34. 5036695 Revert r70645 for now; it's causing a variety of regressions. by Dan Gohman · 17 years ago
  35. e9a38d1 Convert ScalarEvolution to use CallbackVH for its internal map. This by Dan Gohman · 17 years ago
  36. ff08995 Previously, RecursivelyDeleteDeadInstructions provided an option by Dan Gohman · 17 years ago
  37. d71c200 Skip ptr-to-ptr bitcasts when counting in another case. by Dale Johannesen · 17 years ago
  38. 09c3e8e Instruction counters must skip the bitcasts that by Dale Johannesen · 17 years ago
  39. 77456b7 When removing a store to an alloca that has only one by Dale Johannesen · 17 years ago
  40. 92b551b Fix a bunch of Doxygen syntax issues. Escape special characters, by Dan Gohman · 17 years ago
  41. e1bb2f8 When sinking an insn in InstCombine bring its debug by Dale Johannesen · 17 years ago
  42. e288082 While folding unconditional return move DbgRegionEndInst into the predecessor, instead of removing it. This fixes following tests from llvmgcc42 testsuite. by Devang Patel · 17 years ago
  43. 3167050 If llvm.dbg.region.end is disappearing then remove corresponding llvm.dbg.func.start also. by Devang Patel · 17 years ago
  44. 5a913d6 Rename getAnalysisToUpdate to getAnalysisIfAvailable. by Duncan Sands · 17 years ago
  45. dc3f6f2 Factor some code into a new FoldSingleEntryPHINodes method. by Chris Lattner · 17 years ago
  46. 37e0136 third time is the charm. by Chris Lattner · 17 years ago
  47. c04a1ff fix assertion. by Chris Lattner · 17 years ago
  48. 7eb270e Rename DeleteBlockIfDead to DeleteDeadBlock and make it by Chris Lattner · 17 years ago
  49. bcc904a Factor some code out of SimplifyCFG, forming a new DeleteBlockIfDead method. by Chris Lattner · 17 years ago
  50. e0d019d switch InstCombine::visitLoadInst to use FindAvailableLoadedValue by Chris Lattner · 17 years ago
  51. c6ae56d enhance FindAvailableLoadedValue to make use of AliasAnalysis if it has it. by Chris Lattner · 17 years ago
  52. 72f16e7 move FindAvailableLoadedValue from JumpThreading to Transforms/Utils. by Chris Lattner · 17 years ago
  53. f33f8a8 Fix unused variable warnings. by Devang Patel · 17 years ago
  54. cb4f156 SplitBlock should only attempt to update LoopInfo if it is actually being used. by Owen Anderson · 17 years ago
  55. 0f7a350 Fix simplifycfg crash in handing block merge. by Devang Patel · 17 years ago
  56. 1468bec Add some checks that got lost in the shuffle. This fixes 464.h264ref. by Owen Anderson · 17 years ago
  57. 27405ef Make MergeBlockIntoPredecessor more aggressive when the same successor appears by Owen Anderson · 17 years ago
  58. c062381 Factor MergeBlockIntoPredecessor out into BasicBlockUtils. by Owen Anderson · 17 years ago
  59. 4d43d3c Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989 by Nick Lewycky · 18 years ago
  60. a5b1170 Move SplitBlockPredecessors out of loopsimplify into BasicBlockUtils.h by Chris Lattner · 18 years ago
  61. e9ecc68 API changes for class Use size reduction, wave 1. by Gabor Greif · 18 years ago
  62. cc24104 Two things. Preserve the unwind_to when splitting a BB. by Nick Lewycky · 18 years ago
  63. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  64. b0dd27e Make LoopInfoBase more generic, in preparation for having MachineLoopInfo. This involves a small interface change. by Owen Anderson · 18 years ago
  65. 186e0d8 After a basic block is split into two parts, by Devang Patel · 18 years ago
  66. d7767cc Add SplitEdge and SplitBlock utility routines. by Devang Patel · 18 years ago
  67. 8dd4cae simplify code by using Value::takeName by Chris Lattner · 19 years ago
  68. 2452c94 Fix a doxygen problem and break lines at 80 columns by Reid Spencer · 19 years ago
  69. b1c9317 Remove trailing whitespace by Misha Brukman · 21 years ago
  70. 7ceb081 Improve doxygen documentation, patch contributed by Evan Jones! by Chris Lattner · 21 years ago
  71. 6d0a24c second argument to Value::setName is now gone. by Chris Lattner · 21 years ago
  72. 63b38bd Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 21 years ago
  73. df3c342 Finegrainify namespacification by Chris Lattner · 22 years ago
  74. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  75. 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  76. 8b2bd4e Fix spelling. by Misha Brukman · 22 years ago
  77. 7eb05a1 Spell `necessary' correctly. by Misha Brukman · 22 years ago
  78. 98cf1f5 - Eliminated the deferred symbol table stuff in Module & Function, it really by Chris Lattner · 23 years ago
  79. 632df28 Fix spelling of `propagate'. by Misha Brukman · 23 years ago
  80. b17274e by Chris Lattner · 23 years ago
  81. fda72b1 *** empty log message *** by Chris Lattner · 23 years ago
  82. 28537df Add code pulled out of TransformInternals.cpp, ConstProp.cpp, and DCE.cpp by Chris Lattner · 24 years ago