1. 0b79a77 Replace isTrapping with a new, similar method called by Eli Friedman · 15 years ago
  2. 50dead0 Revert yesterday's change by removing the LLVMContext parameter to AllocaInst and MallocInst. by Owen Anderson · 15 years ago
  3. 9adc0ab Move EVER MORE stuff over to LLVMContext. by Owen Anderson · 15 years ago
  4. 333c400 This started as a small change, I swear. Unfortunately, lots of things call the [I|F]CmpInst constructors. Who knew!? by Owen Anderson · 15 years ago
  5. 0a205a4 More LLVMContext-ification. by Owen Anderson · 15 years ago
  6. 1ff50b3 Second batch of passes using LLVMContext. by Owen Anderson · 15 years ago
  7. 0b8365c Revert r67798: it breaks llvm-gcc bootstrap on x86-64-linux, presumably due to by Duncan Sands · 15 years ago
  8. fafd98b While hoisting an instruction, update alias info set tracker. by Devang Patel · 15 years ago
  9. d7168dd reimplement AliasSetTracker in terms of DenseMap instead of hash_map, by Chris Lattner · 15 years ago
  10. d0ffa73 This code doesn't actually use the ExitingBlocks list. by Dan Gohman · 15 years ago
  11. 394f044 Change create*Pass factory functions to return Pass* instead of by Daniel Dunbar · 16 years ago
  12. ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 16 years ago
  13. 3eee654 Put the LICM of constant GlobalVariables, introduced in r53945, under a by Dan Gohman · 16 years ago
  14. 967948b "Allow LICM to sink or lift loads from constant memory. Also add a test by Chris Lattner · 16 years ago
  15. 9b78763 Use Loop::block_iterator. by Dan Gohman · 16 years ago
  16. 02dea8b Tidy up BasicBlock::getFirstNonPHI, and change a bunch of places to by Dan Gohman · 16 years ago
  17. 19d9d43 rewrite the validity checking for memory promotion to be simpler, by Chris Lattner · 16 years ago
  18. 29d9293 Use 'continue' to reduce nesting in this loop. No functionality change. by Chris Lattner · 16 years ago
  19. 844731a Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 16 years ago
  20. 4a3f6c8 Make several variable declarations static. by Dan Gohman · 16 years ago
  21. 3035959 Use empty() instead of comparing size() with zero. by Dan Gohman · 17 years ago
  22. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  23. dff6710 Integrate the readonly/readnone logic more deeply by Duncan Sands · 17 years ago
  24. fd94dd5 Remove another leak. Due to some reason AliasSetTracker didn't had any dtor... by Anton Korobeynikov · 17 years ago
  25. 514ab34 Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. by Duncan Sands · 17 years ago
  26. a24b294 Fix a typo in a comment. by Dan Gohman · 17 years ago
  27. cb406c2 Use empty() member functions when that's what's being tested for instead by Dan Gohman · 17 years ago
  28. bc2265a Relax unsafe use check. If there is one unconditional use inside the loop then it is safe to promote value even if there is another conditional use inside the loop. by Devang Patel · 17 years ago
  29. 798b4af Do not reserve DOM check for GetElementPtrInst. by Devang Patel · 17 years ago
  30. 128459b Do not promote null values because it may be unsafe to do so. by Devang Patel · 17 years ago
  31. f2038b1 Avoid unsafe promotion. by Devang Patel · 17 years ago
  32. e3bfb88 Fix PR1657 by Devang Patel · 17 years ago
  33. b7211a2 Use SmallVector instead of std::vector. by Devang Patel · 17 years ago
  34. af5cbc8 Typo. by Nick Lewycky · 17 years ago
  35. 8d246f0 Add note. by Devang Patel · 17 years ago
  36. 91d22c8 Implement Simple Analysis interfaces - cloneBasicBlockAnalysis and deleteAnalysisValue. by Devang Patel · 17 years ago
  37. 96b651c LICM preserves scalar evolution and dom frontier. by Devang Patel · 17 years ago
  38. 468502e Do not require ETForest. Now it is unused by LICM. by Devang Patel · 17 years ago
  39. 326821e Use DominatorTree instead of ETForest. by Devang Patel · 17 years ago
  40. d8af90c Allow insertelement, extractelement, and shufflevector to be hoisted/sunk by Dan Gohman · 17 years ago
  41. 2604242 s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/g by Devang Patel · 17 years ago
  42. bec7647 s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/g by Devang Patel · 17 years ago
  43. e7ae1a9 Insert new instructions in AliasSet. by Devang Patel · 17 years ago
  44. f38ac5d Fix typo. by Devang Patel · 17 years ago
  45. ecd94c8 Fix typo in comment. by Nick Lewycky · 17 years ago
  46. 1997473 Drop 'const' by Devang Patel · 17 years ago
  47. 3e15bf3 Use 'static const char' instead of 'static const int'. by Devang Patel · 17 years ago
  48. 794fd75 Do not use typeinfo to identify pass in pass manager. by Devang Patel · 17 years ago
  49. 68c01b3 Mem2Reg does not need TargetData. by Devang Patel · 17 years ago
  50. 3a2b58f Rollback some changes that adversely affected performance. I'm currently rethinking by Owen Anderson · 17 years ago
  51. cdacc49 Fix a comment. by Owen Anderson · 17 years ago
  52. df07335 Move more passes to using ETForest instead of DominatorTree. by Owen Anderson · 17 years ago
  53. 325171e Switch more uses of DominatorTree over to ETForest. by Owen Anderson · 17 years ago
  54. 747603e Spell doFinalization right, so that it is a proper virtual override and by Dan Gohman · 17 years ago
  55. e34e9a2 fix long lines by Chris Lattner · 17 years ago
  56. ecb7a77 Change uses of Function::front to Function::getEntryBlock for readability. by Dan Gohman · 17 years ago
  57. 54959d6 Now LICM is a LoopPass. by Devang Patel · 17 years ago
  58. 9133fe2 Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in by Reid Spencer · 18 years ago
  59. 832254e Changes to support making the shift instructions be true BinaryOperators. by Reid Spencer · 18 years ago
  60. 79066fa Adjust #includes to match movement of constant folding code from transformutils to libanalysis. by Chris Lattner · 18 years ago
  61. e4d87aa For PR950: by Reid Spencer · 18 years ago
  62. 0e5f499 Switch over Transforms/Scalar to use the STATISTIC macro. For each statistic by Chris Lattner · 18 years ago
  63. ac0b6ae Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 18 years ago
  64. 3da59db For PR950: by Reid Spencer · 18 years ago
  65. b742703 Removed #include <iostream> and replaced with llvm_* streams. by Bill Wendling · 18 years ago
  66. 92f7365 An sinkable instruction may exist with uses, if those uses are in dead blocks. by Chris Lattner · 18 years ago
  67. 7f8897f eliminate RegisterOpt. It does the same thing as RegisterPass. by Chris Lattner · 18 years ago
  68. 3c80a51 random code cleanups, no functionality change by Chris Lattner · 18 years ago
  69. dac58ad Make iostream #inclusion explicit by Chris Lattner · 19 years ago
  70. 38b5807 prevent va_arg from being hoisted from a loop by Andrew Lenharth · 19 years ago
  71. 558bc88 core changes for varargs by Andrew Lenharth · 19 years ago
  72. fd93908 Remove trailing whitespace by Misha Brukman · 19 years ago
  73. 70ac2dc Fix a bug where LICM was not updating AA information properly when sinking by Chris Lattner · 19 years ago
  74. 1f309c1 enable -debug-only=licm by Chris Lattner · 19 years ago
  75. 68a9d3e Adjust to new interfaces by Chris Lattner · 20 years ago
  76. 8a91939 Allow hoisting loads of globals and alloca's in conditionals. by Chris Lattner · 20 years ago
  77. f3e1d69 Provide size information when checking to see if we can LICM a load, this by Chris Lattner · 20 years ago
  78. bdacd87 Fix a bug in the previous checkin that broke 255.vortex by Chris Lattner · 20 years ago
  79. fb3ee19 Make sure to update alias analysis information as we transform the function. by Chris Lattner · 20 years ago
  80. 551ccae Changes For Bug 352 by Reid Spencer · 20 years ago
  81. eaa2430 Fix hoisting of void typed values, e.g. calls by Chris Lattner · 20 years ago
  82. 56b7ee2 Now that dominator tree children are built in determinstic order, this horrible code by Chris Lattner · 20 years ago
  83. edb8433c Fix one source of nondeterminism in the -licm pass: the hoist pass by Chris Lattner · 20 years ago
  84. 802daf8 Fix typo in DEBUG printout. by Brian Gaeke · 20 years ago
  85. 2741c97 Adjust to the changes in the AliasSetTracker interface by Chris Lattner · 20 years ago
  86. 3280f7b Move isLoopInvariant to the Loop class by Chris Lattner · 20 years ago
  87. 5fa802f Loop exit sets are no longer explicitly held, they are dynamically computed on demand. by Chris Lattner · 20 years ago
  88. 118dd0c Implement LICM of calls in simple cases. This is sufficient to move around by Chris Lattner · 20 years ago
  89. 5294292 Update comment by Chris Lattner · 21 years ago
  90. 329c1c6 Improve encapsulation in the Loop and LoopInfo classes by eliminating the by Chris Lattner · 21 years ago
  91. a3df8a9 Remove the wierd "Operands" loop, by traversing basicblocks in reverse order by Chris Lattner · 21 years ago
  92. e4365b2 Implement LICM/sink_multiple.ll, by sinking all possible instructions in the by Chris Lattner · 21 years ago
  93. ba7df4c When we delete instructions from the loop, make sure to remove them from the by Chris Lattner · 21 years ago
  94. 00ad4a2 Do not promote volatile alias sets into registers by Chris Lattner · 21 years ago
  95. ea9403f Fix LICM/2003-12-11-SinkingToPHI.ll, and quite possibly all of the other known problems in the universe. by Chris Lattner · 21 years ago
  96. 7d3ced9 Fix bug: LICM/sink_multiple_exits.ll by Chris Lattner · 21 years ago
  97. df45bd3 Don't allow dead instructions to stop sinking early. by Chris Lattner · 21 years ago
  98. e3cfe8d Simplify code by Chris Lattner · 21 years ago
  99. f594a03 Avoid performing two identical lookups when one will suffice by Chris Lattner · 21 years ago
  100. 0ed2da9 Make LICM itself a bit more efficient, and make the generated code more efficient too: don't insert a store in every exit block, because a particular block may be exited to more than once by a loop by Chris Lattner · 21 years ago