summaryrefslogtreecommitdiff
path: root/lib/CodeGen/BranchFolding.cpp
Commit message (Expand)AuthorAge
* Run branch folding if if-converter make some transformations.Evan Cheng2009-09-04
* Funky indentation.Evan Cheng2009-09-03
* Convert DOUT to DEBUG(errs()...).Bill Wendling2009-08-22
* Make tail merging handle blocks with repeated predecessors correctly, andDan Gohman2009-08-18
* Rewrite previous patch to follow Chris' stylisticDale Johannesen2009-08-07
* Fix PR 4626, a crash in branch folding after OptimizeBlockDale Johannesen2009-08-06
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-14
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-11
* Fix PR4188. TailMerging can't tolerate inexactDale Johannesen2009-05-11
* Turns out AnalyzeBranch can modify the mbb being analyzed. This is a nastyEvan Cheng2009-02-09
* Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands2009-01-28
* Delete unnecessary parens around return values.Dan Gohman2009-01-08
* Add a newline after this debug output.Bill Wendling2008-12-10
* Add a sanity-check to tablegen to catch the case where isSimpleLoadDan Gohman2008-12-03
* Increase default setting of tail-merge-threshold toDale Johannesen2008-10-27
* Switch the MachineOperand accessors back to the short names likeDan Gohman2008-10-03
* Mark several codegen passes as preserving all analysis.Evan Cheng2008-09-22
* Remove isImm(), isReg(), and friends, in favor of Dan Gohman2008-09-13
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-04
* Fix SmallVector's size calculation so that a size of 0 isDan Gohman2008-08-22
* Convert uses of std::vector in TargetInstrInfo to SmallVector. This change h...Owen Anderson2008-08-14
* Fix PR2609. If a label is deleted, then it needsDuncan Sands2008-07-29
* Pool-allocation for MachineInstrs, MachineBasicBlocks, andDan Gohman2008-07-07
* Fix longstanding thinko: don't excludeDale Johannesen2008-07-01
* Split ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL, eliminatingDan Gohman2008-07-01
* Use the transferSuccessors helper function.Dan Gohman2008-06-19
* Rewrite a loop to avoid using iterators pointing toDale Johannesen2008-05-23
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-13
* Be more aggressive about tail-merging small blocksDale Johannesen2008-05-12
* Further rework of tail merge algorithm. Not quiteDale Johannesen2008-05-12
* Remove an evil vector bool. Cosmetic refactoring,Dale Johannesen2008-05-09
* Rewrite tail merging algorithm to handle theDale Johannesen2008-05-09
* Make several variable declarations static.Dan Gohman2008-05-06
* Teach branch folding pass about implicit_def instructions. Unfortunately we c...Evan Cheng2008-04-10
* Add a quick and dirty "loop aligner pass". x86 uses it to align its loops to ...Evan Cheng2008-02-28
* PR1909: Tail merging pass ran wild. It makes no sense to merge blocks in orde...Evan Cheng2008-02-19
* Rename MRegisterInfo to TargetRegisterInfo.Dan Gohman2008-02-10
* Use empty() instead of comparing size() with zero.Dan Gohman2008-01-29
* rename TargetInstrDescriptor -> TargetInstrDesc.Chris Lattner2008-01-07
* Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflectsChris Lattner2008-01-07
* rename isLoad -> isSimpleLoad due to evan's desire to have such a predicate.Chris Lattner2008-01-06
* rename isStore -> mayStore to more accurately reflect what it captures.Chris Lattner2008-01-06
* Add new shorter predicates for testing machine operands for various types: Chris Lattner2007-12-30
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Improve branch folding by recgonizing that explict successor relationships im...Christopher Lamb2007-12-10
* Changed XXX to FIXME, and added comment to the README fileBill Wendling2007-10-25
* Added comment explaining why we are doing this check.Bill Wendling2007-10-25
* Don't branch fold inline asm statements.Bill Wendling2007-10-19
* More explicit keywords.Dan Gohman2007-08-02
* If assertions are not enabled, we should return False here.Duncan Sands2007-07-11