- a79db30 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
- 2df82e7 LoopIndexSplit can sometimes result in cases where a block in its own domfrontier. by Owen Anderson · 17 years ago
- 0479aa5 Change class' public PassInfo variables to by initialized with the by Dan Gohman · 17 years ago
- d78c400 Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 17 years ago
- 38806c3 fit in 80 cols by Chris Lattner · 18 years ago
- 376acf4 Remove unused variable by Scott Michel · 18 years ago
- f66cb36 Workaround for PR2207, in which pred_iterator assert gets triggered due to a by Scott Michel · 18 years ago
- e9ecc68 API changes for class Use size reduction, wave 1. by Gabor Greif · 18 years ago
- f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
- b0dd27e Make LoopInfoBase more generic, in preparation for having MachineLoopInfo. This involves a small interface change. by Owen Anderson · 18 years ago
- da48cf4 If NewBB dominates DestBB then DestBB is not part of NewBB's dominance frontier. by Devang Patel · 18 years ago
- 8ecffa9 Do not preserve ETForest. by Devang Patel · 18 years ago
- af41e4a Maintain ETNode as part of DomTreeNode. This adds redundancy for now. by Devang Patel · 18 years ago
- ebc5b96 s/DominatorTree::createNewNode/DominatorTree::addNewBlock/g by Devang Patel · 18 years ago
- bdd1aae s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/g by Devang Patel · 18 years ago
- 0e8aa7b s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/g by Devang Patel · 18 years ago
- e7da2d6 Fix typo in comment. by Nick Lewycky · 18 years ago
- 8c78a0b Drop 'const' by Devang Patel · 18 years ago
- e95c6ad Use 'static const char' instead of 'static const int'. by Devang Patel · 18 years ago
- 09f162c Do not use typeinfo to identify pass in pass manager. by Devang Patel · 18 years ago
- 233f97a remove use of BasicBlock::getNext by Chris Lattner · 19 years ago
- f35a1db Remove ImmediateDominator analysis. The same information can be obtained from DomTree. A lot of code for by Owen Anderson · 19 years ago
- d03a646 BreakCriticalEdges does still preserve DominatorTree. by Owen Anderson · 19 years ago
- b39d9ca Expunge DomSet from BreakCriticalEdges. This is part of the continuing by Owen Anderson · 19 years ago
- f739d01 Fix Analysis/Dominators/2006-10-02-BreakCritEdges.ll by Chris Lattner · 19 years ago
- 9818a6f Fix PR1110 and Analysis/Dominators/2007-01-14-BreakCritEdges.ll by being by Chris Lattner · 19 years ago
- 45f966d switch more statistics over to STATISTIC, eliminating static ctors. Also, by Chris Lattner · 19 years ago
- 700b873 Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 19 years ago
- 3e763f5 add option to isCriticalEdge by Chris Lattner · 19 years ago
- 80ea207 Expose a smarter way to break critical edges. by Chris Lattner · 19 years ago
- 52886e7 This case isn't implemented yet. It seems unlikely to be needed, but if it by Chris Lattner · 19 years ago
- 8aca0ee Fix PR932 and Analysis/Dominators/2006-10-02-BreakCritEdges.ll: by Chris Lattner · 19 years ago
- c2d3d31 eliminate RegisterOpt. It does the same thing as RegisterPass. by Chris Lattner · 19 years ago
- 3d27be1 s|llvm/Support/Visibility.h|llvm/Support/Compiler.h| by Chris Lattner · 19 years ago
- 996795b Use hidden visibility to make symbols in an anonymous namespace get by Chris Lattner · 19 years ago
- 0770d8e Preserve and update ETForest. Patch by Daniel Berlin by Chris Lattner · 20 years ago
- 89c1dfc Teach SplitCriticalEdge to update LoopInfo if it is alive. This fixes by Chris Lattner · 20 years ago
- b7ebe65 Change break critical edges to not remove, then insert, PHI node entries. by Chris Lattner · 20 years ago
- b1c9317 Remove trailing whitespace by Misha Brukman · 21 years ago
- 7b9020a Fix the missing symbols problem Bill was hitting. Patch contributed by by Chris Lattner · 21 years ago
- 6614946 Convert code to compile with vc7.1. by Reid Spencer · 21 years ago
- 7c16caa Changes For Bug 352 by Reid Spencer · 21 years ago
- 7471b96 Expose this as a functionpass by Chris Lattner · 21 years ago
- f4a410f Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 21 years ago
- 63b38bd Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 21 years ago
- 2de229f Fix bug: test/Regression/Transforms/LowerInvoke/2004-02-29-PHICrash.llx by Chris Lattner · 22 years ago
- df3c342 Finegrainify namespacification by Chris Lattner · 22 years ago
- a296000 Minor cleanups and simplifications by Chris Lattner · 22 years ago
- 2af5172 Start using the nicer terminator auto-insertion API by Chris Lattner · 22 years ago
- 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
- 1e6d305 Reorganize code for locality, improve comments by Chris Lattner · 22 years ago
- 4474336 Adjust to new critical edge interface by Chris Lattner · 22 years ago
- 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
- 72272a7 Rename loop preheaders pass to loop simplify by Chris Lattner · 22 years ago
- 8b2bd4e Fix spelling. by Misha Brukman · 22 years ago
- 889f620 Remove unnecesary &*'s by Chris Lattner · 23 years ago
- 12764c8 BreakCriticalEdges should update dominance frontier information as well as by Chris Lattner · 23 years ago
- b736850 - Fix bug: cee/2002-10-07-NoImmediateDominator.ll by Chris Lattner · 23 years ago
- 5ac72de Expose isCriticalEdge & SplitCriticalEdge methods from crit-edges pass by Chris Lattner · 23 years ago
- bf3a099 Updates to work with recent Statistic's changes: by Chris Lattner · 23 years ago
- bedbd6b - Cleanup break-crit-edges pass by making SplitCriticalEdge a member method. by Chris Lattner · 23 years ago
- 75f80bd - Do not expose Critical Edge breaking mechanics outside the BCE pass, thus by Chris Lattner · 23 years ago
- 4bec665 - Expose passinfo from BreakCriticalEdges pass so that it may be "Required" by Chris Lattner · 23 years ago
- b03832d by Chris Lattner · 23 years ago