Fix the build, and fix the handling of pointer sizes.
[oota-llvm.git] / lib / Transforms /
2007-07-10 Nick LewyckyUpdate the ValueRanges interface to use value numbers...
2007-07-10 Owen AndersonMove some key maps from std::map to DenseMap. This...
2007-07-10 Owen AndersonUse a cheaper test, delaying calling find_leader()...
2007-07-09 Owen AndersonAdd an assertion if find_leader fails.
2007-07-09 Owen AndersonTake advantage of the new fast SmallPtrSet assignment...
2007-07-09 Devang PatelExpose struct size threhold to allow users to tweak...
2007-07-09 Owen AndersonFix a comment.
2007-07-09 Owen AndersonImprove a hotspot that was making build_sets() slower...
2007-07-09 Owen AndersonStart using a set representation that remembers the...
2007-07-07 Owen AndersonFix an error where ANTIC_OUT was ending up with more...
2007-07-07 Nick LewyckyBack out Devang's fix for PR1320 because it causes...
2007-07-06 Devang PatelThese rountines are now available as part of basic...
2007-07-06 Devang PatelRequest DominanceFrontiner in advance.
2007-07-06 Devang PatelPreserve various analysis info.
2007-07-06 Devang PatelAdd SplitEdge and SplitBlock utility routines.
2007-07-06 Owen AndersonBe more aggressive in the heuristic. This mostly expos...
2007-07-06 Owen AndersonAchieve what the incorrect test was trying to do by...
2007-07-06 Owen AndersonRemove an incorrect check.
2007-07-06 Zhou ShengCorrect a typo.
2007-07-05 Owen AndersonFix a bunch of issues found in a testcase from 400...
2007-07-05 Nick LewyckyBreak "variable canonicalization" out of InequalityGrap...
2007-07-04 Owen AndersonFix another bug, this time in PREing select instructions.
2007-07-04 Owen AndersonFix a typo that was killing GVNPRE of select instructions.
2007-07-04 Owen AndersonFix an error in phi translation of GEPs that was causin...
2007-07-03 Owen AndersonAdd support for performing GVNPRE on GEP instructions.
2007-07-03 Owen AndersonAdd functionality to value number GEP instructions...
2007-07-03 Owen AndersonMake the unary operator case a bit faster, since casts...
2007-07-03 Owen AndersonAdd support for performing GVNPRE on cast instructions...
2007-06-29 Devang PatelPreserve DominanceFrontier.
2007-06-29 David GreeneFix reference to iterator invalidated by an erase opera...
2007-06-29 Devang PatelDo not filter loop if candidate branch is in loop header.
2007-06-29 Owen AndersonAdd support for value numbering (but not actually optim...
2007-06-29 Owen AndersonAdd a type field to expressions in preparation for...
2007-06-28 Owen AndersonAdd support for performing GVNPRE on select instruction...
2007-06-28 Devang Patel- Undo previous check and allow loop switch for condtio...
2007-06-28 Devang PatelUpdate LoopUnswitch pass to preserve DomiantorTree.
2007-06-28 Devang PatelIf a condition is not inside a loop then the condition...
2007-06-28 Owen AndersonMake many sets a much more reasonable size. This decre...
2007-06-27 Owen AndersonUse cached information that has already been computed...
2007-06-27 Owen AndersonFold a lot of code into two cases: binary instructions...
2007-06-27 Zhou ShengFix a bug.
2007-06-27 Owen AndersonAdd support for performing GVNPRE on the three vector...
2007-06-26 Owen Anderson1. Correct some comments and clean up some dead code.
2007-06-25 Chris Lattnerfix Transforms/Inline/2007-06-25-WeakInline.ll by not...
2007-06-25 Owen AndersonUse the built-in postorder iterators rather than comput...
2007-06-25 Owen Anderson1) Fix an issue with non-deterministic iteration order...
2007-06-24 Nick LewyckyFix value ranges.
2007-06-24 Owen AndersonFix a silly mistake that was causing failures.
2007-06-24 Nick LewyckyRemove tabs.
2007-06-24 Nick LewyckyRemove use of ETForest. Also cleaned up issues around...
2007-06-22 Owen AndersonRework topo_sort so eliminate some behavior that scaled...
2007-06-22 Owen AndersonPerform fewer set insertions while calculating ANTIC_IN...
2007-06-22 Owen AndersonRemove some code that I was using for collecting perfor...
2007-06-22 Owen AndersonAvoid excessive calls to find_leader when calculating...
2007-06-22 Owen AndersonReserve space in vectors before topologically sorting...
2007-06-22 Owen AndersonMake a bunch of optimizations for compile time to GVNPR...
2007-06-21 Chris LattnerSignificantly improve the documentation of the instcomb...
2007-06-21 Owen AndersonChange lots of sets from std::set to SmallPtrSet. ...
2007-06-21 Devang PatelMove code to update dominator information after basic...
2007-06-21 Owen AndersonEliminate a redundant check. This speeds up optimizati...
2007-06-21 Owen AndersonComment-ize the functions in GVNPRE.
2007-06-20 Chris Lattnerrefactor a bunch of code out of visitICmpInstWithInstAn...
2007-06-20 Owen AndersonSplit runOnFunction into many smaller functions. This...
2007-06-20 Owen AndersonMake GVNPRE accurate report whether it modified the...
2007-06-20 Owen AndersonGet rid of an unneeded helper function.
2007-06-19 Owen AndersonUse a DenseMap instead of an std::map for the value...
2007-06-19 Owen AndersonMake dependsOnInvoke much more specific in what it...
2007-06-19 Tanya LattnerMoved Inliner.h to include/llvm/Transforms/IPO/InlinerP...
2007-06-19 Tanya LattnerInliner pass header file was moved.
2007-06-19 Dan GohmanRename ScalarEvolution::deleteInstructionFromRecords to
2007-06-19 Owen AndersonHandle constants in phi nodes properly. This fixes...
2007-06-19 Chris Lattnersilence a bogus warning Duraid ran into.
2007-06-19 Owen AndersonBe careful to erase values from all of the appropriate...
2007-06-19 Owen AndersonRemember to clear the maximal sets between functions.
2007-06-19 Owen AndersonRefactor GVNPRE to use a much smart method of uniquing...
2007-06-18 Owen AndersonCache the results of dependsOnInvoke()
2007-06-18 Owen AndersonFix indentation.
2007-06-18 Owen AndersonDon't perform an expensive check if it's not necessary.
2007-06-16 Owen AndersonFix test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll...
2007-06-15 Dan GohmanUse SCEVConstant::get instead of SCEVUnknown::get to...
2007-06-15 Owen AndersonFix test/Transforms/GVNPRE/2007-06-15-Looping.ll
2007-06-15 Dan GohmanAdd a SCEV class and supporting code for sign-extend...
2007-06-15 Chris LattnerGeneralize many transforms to work on ~ of vectors...
2007-06-15 Chris LattnerImplement two xforms:
2007-06-15 Chris Lattnerdelete some obviously dead vector operations, which...
2007-06-12 Owen AndersonFix test/Transforms/GVNPRE/2007-06-12-PhiTranslate.ll
2007-06-12 Owen AndersonRefactor some code, and fix test/Transforms/GVNPRE...
2007-06-12 Dale JohannesenSink CmpInst's to their uses to reduce register pressure.
2007-06-12 Owen AndersonFix a few more bugs, including an instance of walking...
2007-06-11 Devang PatelAdd and use DominatorTreeBase::findNearestCommonDominat...
2007-06-11 Devang PatelSimplify.
2007-06-11 Devang Patelsimplify
2007-06-11 Devang PatelSimplify. Dominator Tree is required so always available.
2007-06-11 Owen AndersonHandle functions with multiple exit blocks properly.
2007-06-09 Owen AndersonPerform PRE of comparison operators.
2007-06-08 Owen AndersonCollect statistics from GVN-PRE.
2007-06-08 Owen AndersonFix typo in a comment.
2007-06-08 Owen AndersonFix a bug that was causing the elimination phase not...
2007-06-08 Owen AndersonSmall bugfix, and const-ify some methods (Thanks, Bill).
2007-06-08 Devang PatelUpdate LoopSimplify to require and preserve DominatorTr...
next