aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/IfConversion.cpp
Commit message (Expand)AuthorAgeFilesLines
* Run branch folding if if-converter make some transformations.Evan Cheng2009-09-041-0/+8
* remove various std::ostream version of printing methods fromChris Lattner2009-08-231-2/+2
* Convert DOUT to DEBUG(errs()...).Bill Wendling2009-08-221-20/+20
* More migration to raw_ostream, the water has dried up around the iostream hole.Daniel Dunbar2009-07-251-2/+2
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-2/+2
* Fix assert(0) conversion, as suggested by Chris.Torok Edwin2009-07-121-8/+8
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-111-4/+10
* Fewer static variables, part 3 of many.Owen Anderson2009-06-241-2/+2
* ifcvt should ignore cfg where true and false successors are the same.Evan Cheng2009-06-151-1/+12
* Revert r71744. I must not have understood this correctly, because theBob Wilson2009-05-141-4/+9
* The IfConverter::MergeBlocks method appears to be used only to merge a basicBob Wilson2009-05-131-9/+4
* Revert a portion of Dan's change r71018 that I'm convinced is wrong.Bob Wilson2009-05-131-1/+1
* Merge adjacent conditional.Bob Wilson2009-05-131-2/+0
* Remove an unused variable.Bob Wilson2009-05-131-3/+0
* Fix some typos and spelling and grammar, mostly in comments, but also oneBob Wilson2009-05-131-21/+20
* If a MachineBasicBlock has multiple ways of reaching another block,Dan Gohman2009-05-051-5/+3
* Fix typo. Patch by nlewycky.Duncan Sands2008-11-041-1/+1
* fix leakage of IfcvtTokensNuno Lopes2008-11-041-1/+5
* Optimized FCMP_OEQ and FCMP_UNE for x86.Dan Gohman2008-10-211-15/+19
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-041-1/+1
* Fix SmallVector's size calculation so that a size of 0 isDan Gohman2008-08-221-1/+1
* Convert uses of std::vector in TargetInstrInfo to SmallVector. This change h...Owen Anderson2008-08-141-19/+20
* Pool-allocation for MachineInstrs, MachineBasicBlocks, andDan Gohman2008-07-071-1/+3
* Register if-converter pass for -debug-pass.Evan Cheng2008-06-041-1/+4
* Add a quick and dirty "loop aligner pass". x86 uses it to align its loops to ...Evan Cheng2008-02-281-1/+1
* Update gcc 4.3 warnings fix patch with recent head changesAnton Korobeynikov2008-02-201-1/+2
* Use empty() instead of comparing size() with zero.Dan Gohman2008-01-291-3/+3
* rename TargetInstrDescriptor -> TargetInstrDesc.Chris Lattner2008-01-071-7/+7
* simplify some code using new predicatesChris Lattner2008-01-071-21/+19
* Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflectsChris Lattner2008-01-071-10/+8
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Somehow this wasn't committed last time. M_CLOBBERS_PRED is gone.Evan Cheng2007-07-101-2/+5
* Teach if-conversion about instructions that were already predicated, e.g. con...Evan Cheng2007-07-061-3/+14
* Avoid if-converting simple block that ends with unconditional branch or fallt...Evan Cheng2007-06-191-1/+4
* Replace TargetInstrInfo::CanBeDuplicated() with a M_NOT_DUPLICABLE bit.Evan Cheng2007-06-191-2/+2
* Fix some fragile code wrt CFG edge updating.Evan Cheng2007-06-181-74/+39
* Properly remove duplicate instructions as result of diamond if-conversion. Ot...Evan Cheng2007-06-181-103/+176
* Really turn if-converter loose:Evan Cheng2007-06-161-166/+211
* Not every predicable block can be safely duplicated.Evan Cheng2007-06-151-8/+35
* MachineInstr::isPredicable() is no longer needed.Evan Cheng2007-06-151-6/+5
* Extra edges are deleted later if needed.Evan Cheng2007-06-151-1/+0
* Allow small blocks to be duplicated to enable if-conversion.Evan Cheng2007-06-151-25/+99
* No really, clear predcessors states.Evan Cheng2007-06-141-7/+8
* If BB is predicated, invalidate its predecessor(s) which would if-convert it....Evan Cheng2007-06-141-3/+7
* Fix typo.Evan Cheng2007-06-141-1/+1
* Fix some stupid bugs that have effectively disabled if-conversion.Evan Cheng2007-06-141-1/+7
* TypoEvan Cheng2007-06-131-1/+1
* Now if-converting all 4 variants of triangles.Evan Cheng2007-06-121-24/+40
* Restructure code to reduce ifcvt compile time cost.Evan Cheng2007-06-111-155/+193
* Fix the build.Reid Spencer2007-06-101-1/+2