summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/CodeGenPrepare.cpp
Commit message (Expand)AuthorAge
...
* Use the getFirstInsertionPt() method instead of getFirstNonPHI + an 'isa<>'Bill Wendling2011-08-16
* In places where it's using "getFirstNonPHI", skip the landingpad instruction ...Bill Wendling2011-08-15
* Skip the insertion iterator past the landingpad instruction if there.Bill Wendling2011-08-15
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Fix warnings due to 132263; Thanks rdivacky.Nadav Rotem2011-05-29
* Refactor getActionType and getTypeToTransformTo ; place all of the 'decision'Nadav Rotem2011-05-27
* Fix warning about || and && without explicit grouping.Chandler Carruth2011-05-26
* Do not insert anything after terminator.Devang Patel2011-05-26
* Do not move DBG_VALUE in middle of PHI nodes.Devang Patel2011-05-26
* If llvm.dbg.value and the value instruction it refers to are far apart then i...Devang Patel2011-05-26
* Add a parameter to ConstantFoldTerminator() that callers can use to ask it to...Frits van Bommel2011-05-22
* Revert commit 131534 since it seems to have broken several buildbots.Duncan Sands2011-05-18
* Refactor getActionType and getTypeToTransformTo ; place all of the 'decision'Nadav Rotem2011-05-18
* Fix a bug where RecursivelyDeleteTriviallyDeadInstructions couldChris Lattner2011-04-09
* Debug intrinsics must be skipped at the beginning and ends of blocks, lest theyCameron Zwarich2011-03-24
* It is enough for the CallInst to have no uses to be made a tail call with a retCameron Zwarich2011-03-24
* s/UpdateDT/ModifiedDT/gDevang Patel2011-03-24
* Do early taildup of ret in CodeGenPrepare for potential tail calls that have aCameron Zwarich2011-03-24
* Use an early return instead of a long if block.Cameron Zwarich2011-03-24
* When UpdateDT is set, DT is invalid, which could cause problems when trying toCameron Zwarich2011-03-24
* Check for TLI so that -codegenprepare can be used from opt.Cameron Zwarich2011-03-24
* Re-apply r127953 with fixes: eliminate empty return block if it has no predec...Evan Cheng2011-03-21
* Revert r127953, "SimplifyCFG has stopped duplicating returns into predecessorsDaniel Dunbar2011-03-19
* SimplifyCFG has stopped duplicating returns into predecessors to canonicalize IREvan Cheng2011-03-19
* Roll r127459 back in:Cameron Zwarich2011-03-11
* Revert r127459, "Optimize trivial branches in CodeGenPrepare, which often getDaniel Dunbar2011-03-11
* Optimize trivial branches in CodeGenPrepare, which often get created from theCameron Zwarich2011-03-11
* Fix PR9398 - 10% of llc compile time is spent in Value::getNumUses. This reducesCameron Zwarich2011-03-05
* Remove some more unused code that I missed.Cameron Zwarich2011-03-02
* Eliminate the unused CodeGenPrepare option to split critical edges.Cameron Zwarich2011-03-02
* Stop computing the number of uses twice per value in CodeGenPrepare's sinking ofCameron Zwarich2011-03-01
* fix rdar://8878965, a regression I introduced with the recentChris Lattner2011-01-18
* temporarily revert r123526. While working on a follow-on patch IChris Lattner2011-01-15
* fix rdar://8785296 - -fcatch-undefined-behavior generates inefficient codeChris Lattner2011-01-15
* simplify code, no functionality change.Chris Lattner2011-01-15
* Now that instruction optzns can update the iterator as they go, we can Chris Lattner2011-01-15
* make the current instruction iterator an ivar, allowing xforms thatChris Lattner2011-01-15
* Make more passes preserve dominators (or state that they preserve dominators ifCameron Zwarich2011-01-08
* Add the CallInst optimizations that don't involve expanding inline assembly toCameron Zwarich2011-01-06
* Move the GEP handling in CodeGenPrepare to OptimizeInst().Cameron Zwarich2011-01-06
* Split the optimizations in CodeGenPrepare that don't manipulate the iteratorsCameron Zwarich2011-01-06
* Stop reallocating SunkAddrs for each basic block. When we move to an instructionCameron Zwarich2011-01-06
* Add some more statistics to CodeGenPrepare.Cameron Zwarich2011-01-05
* Add some stats to CodeGenPrepare to make it easier to speed it up withoutCameron Zwarich2011-01-05
* Avoid finding loop back edges when we are not splitting critical edges inCameron Zwarich2011-01-04
* Switch a worklist in CodeGenPrepare to SmallVector and increase the inlineCameron Zwarich2011-01-03
* It is possible for SimplifyCFG to cause PHI nodes to become redundant too lat...Owen Anderson2010-12-23
* revert r122164, I'm going to go with a different approach.Chris Lattner2010-12-19
* first step to fixing PR8642: don't fold away empty basic blocksChris Lattner2010-12-19
* Second attempt at fixing the performance regressions introducedOwen Anderson2010-11-27