1. c8a27f2 Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined, by Dan Gohman · 16 years ago
  2. 55f1c09 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 16 years ago
  3. 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
  4. b292b8c Move more code back to 2.5 APIs. by Owen Anderson · 16 years ago
  5. 43d19d6 Make AliasAnalysis and related classes use getAnalysisIfAvailable<TargetData>(). by Dan Gohman · 16 years ago
  6. 85a791e AliasAnalysis wants sizes in address-units, not bits. by Dan Gohman · 16 years ago
  7. 47db941 Get rid of the Pass+Context magic. by Owen Anderson · 16 years ago
  8. fbcc663 llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  9. ccb29cd Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
  10. 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
  11. e70b637 More LLVMContext-ification. by Owen Anderson · 16 years ago
  12. 48f8222 Re-apply 70645, converting ScalarEvolution to use by Dan Gohman · 16 years ago
  13. 351134b Factor loop backedge finding out of CodeGenPrepare into a new by Chris Lattner · 16 years ago
  14. 5036695 Revert r70645 for now; it's causing a variety of regressions. by Dan Gohman · 16 years ago
  15. e9a38d1 Convert ScalarEvolution to use CallbackVH for its internal map. This by Dan Gohman · 16 years ago
  16. ff08995 Previously, RecursivelyDeleteDeadInstructions provided an option by Dan Gohman · 16 years ago
  17. d71c200 Skip ptr-to-ptr bitcasts when counting in another case. by Dale Johannesen · 17 years ago
  18. 09c3e8e Instruction counters must skip the bitcasts that by Dale Johannesen · 17 years ago
  19. 77456b7 When removing a store to an alloca that has only one by Dale Johannesen · 17 years ago
  20. 92b551b Fix a bunch of Doxygen syntax issues. Escape special characters, by Dan Gohman · 17 years ago
  21. e1bb2f8 When sinking an insn in InstCombine bring its debug by Dale Johannesen · 17 years ago
  22. 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
  23. 3167050 If llvm.dbg.region.end is disappearing then remove corresponding llvm.dbg.func.start also. by Devang Patel · 17 years ago
  24. 5a913d6 Rename getAnalysisToUpdate to getAnalysisIfAvailable. by Duncan Sands · 17 years ago
  25. dc3f6f2 Factor some code into a new FoldSingleEntryPHINodes method. by Chris Lattner · 17 years ago
  26. 37e0136 third time is the charm. by Chris Lattner · 17 years ago
  27. c04a1ff fix assertion. by Chris Lattner · 17 years ago
  28. 7eb270e Rename DeleteBlockIfDead to DeleteDeadBlock and make it by Chris Lattner · 17 years ago
  29. bcc904a Factor some code out of SimplifyCFG, forming a new DeleteBlockIfDead method. by Chris Lattner · 17 years ago
  30. e0d019d switch InstCombine::visitLoadInst to use FindAvailableLoadedValue by Chris Lattner · 17 years ago
  31. c6ae56d enhance FindAvailableLoadedValue to make use of AliasAnalysis if it has it. by Chris Lattner · 17 years ago
  32. 72f16e7 move FindAvailableLoadedValue from JumpThreading to Transforms/Utils. by Chris Lattner · 17 years ago
  33. f33f8a8 Fix unused variable warnings. by Devang Patel · 17 years ago
  34. cb4f156 SplitBlock should only attempt to update LoopInfo if it is actually being used. by Owen Anderson · 17 years ago
  35. 0f7a350 Fix simplifycfg crash in handing block merge. by Devang Patel · 17 years ago
  36. 1468bec Add some checks that got lost in the shuffle. This fixes 464.h264ref. by Owen Anderson · 17 years ago
  37. 27405ef Make MergeBlockIntoPredecessor more aggressive when the same successor appears by Owen Anderson · 17 years ago
  38. c062381 Factor MergeBlockIntoPredecessor out into BasicBlockUtils. by Owen Anderson · 17 years ago
  39. 4d43d3c Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989 by Nick Lewycky · 18 years ago
  40. a5b1170 Move SplitBlockPredecessors out of loopsimplify into BasicBlockUtils.h by Chris Lattner · 18 years ago
  41. e9ecc68 API changes for class Use size reduction, wave 1. by Gabor Greif · 18 years ago
  42. cc24104 Two things. Preserve the unwind_to when splitting a BB. by Nick Lewycky · 18 years ago
  43. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  44. b0dd27e Make LoopInfoBase more generic, in preparation for having MachineLoopInfo. This involves a small interface change. by Owen Anderson · 18 years ago
  45. 186e0d8 After a basic block is split into two parts, by Devang Patel · 18 years ago
  46. d7767cc Add SplitEdge and SplitBlock utility routines. by Devang Patel · 18 years ago
  47. 8dd4cae simplify code by using Value::takeName by Chris Lattner · 19 years ago
  48. 2452c94 Fix a doxygen problem and break lines at 80 columns by Reid Spencer · 19 years ago
  49. b1c9317 Remove trailing whitespace by Misha Brukman · 21 years ago
  50. 7ceb081 Improve doxygen documentation, patch contributed by Evan Jones! by Chris Lattner · 21 years ago
  51. 6d0a24c second argument to Value::setName is now gone. by Chris Lattner · 21 years ago
  52. 63b38bd Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 21 years ago
  53. df3c342 Finegrainify namespacification by Chris Lattner · 22 years ago
  54. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  55. 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  56. 8b2bd4e Fix spelling. by Misha Brukman · 22 years ago
  57. 7eb05a1 Spell `necessary' correctly. by Misha Brukman · 22 years ago
  58. 98cf1f5 - Eliminated the deferred symbol table stuff in Module & Function, it really by Chris Lattner · 23 years ago
  59. 632df28 Fix spelling of `propagate'. by Misha Brukman · 23 years ago
  60. b17274e by Chris Lattner · 23 years ago
  61. fda72b1 *** empty log message *** by Chris Lattner · 23 years ago
  62. 28537df Add code pulled out of TransformInternals.cpp, ConstProp.cpp, and DCE.cpp by Chris Lattner · 23 years ago