aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/SimplifyCFG.cpp
Commit message (Expand)AuthorAgeFilesLines
* simplifycfg: Fix integer overflow converting switch into icmp.Hans Wennborg2013-04-161-1/+6
* Don't remove a landing pad if the invoke requires a table entry.Bill Wendling2013-03-111-3/+17
* SimplifyCFG fix for volatile load/store.Andrew Trick2013-03-071-2/+4
* Re-revert r173342, without losing the compile time improvements, flatChandler Carruth2013-01-271-27/+12
* Switch this code away from Value::isUsedInBasicBlock. That code eitherChandler Carruth2013-01-251-7/+29
* Reapply chandlerc's r173342 now that the miscompile it was triggering is fixed.Benjamin Kramer2013-01-241-9/+18
* Revert r173342 temporarily. It appears to cause a very late miscompileChandler Carruth2013-01-241-18/+9
* Plug TTI into the speculation logic, giving it a real cost interfaceChandler Carruth2013-01-241-9/+18
* Address a large chunk of this FIXME by accumulating the cost forChandler Carruth2013-01-241-8/+6
* Switch the constant expression speculation cost evaluation away fromChandler Carruth2013-01-241-7/+14
* Rephrase the speculating scan of the conditional BB to be phrased inChandler Carruth2013-01-241-19/+16
* Simplify the PHI node operand rewriting.Chandler Carruth2013-01-241-42/+35
* Give the basic block variables here names based on the if-then-endChandler Carruth2013-01-241-32/+33
* Lift a cheap early exit test above loops and other complex early exitChandler Carruth2013-01-241-5/+5
* Spiff up the comment on this method, making the example a bit moreChandler Carruth2013-01-241-16/+35
* Initialize the components of this class. Otherwise GCC thinks that Array may beDuncan Sands2013-01-231-1/+2
* Make SimplifyCFG simply depend upon TargetTransformInfo and pass itChandler Carruth2013-01-071-37/+37
* Move TargetTransformInfo to live under the Analysis library. This noChandler Carruth2013-01-071-1/+1
* Switch SimplifyCFG over to the TargetTransformInfo interface rather thanChandler Carruth2013-01-051-4/+2
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-13/+13
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-10/+10
* Fix non-determinism introduced in r168970 and pointed out by Duncan.Chandler Carruth2012-11-301-5/+13
* Rearrange the comments, control flow, and variable names; noChandler Carruth2012-11-301-7/+14
* Fix logic to determine whether to turn a switch into a lookup table. WhenEvan Cheng2012-11-301-6/+13
* SimplifyCFG: Don't assume non-null ScalarTargetTransformInfo.Hans Wennborg2012-11-161-1/+2
* misspellAndrew Trick2012-11-151-3/+3
* whitespaceAndrew Trick2012-11-151-4/+4
* Only do switch-to-lookup table transformation when TargetTransformInfoHans Wennborg2012-11-071-1/+2
* Revert the series of commits starting with r166578 which introduced theChandler Carruth2012-11-011-8/+4
* Remove fixme about unreachable cases from SwitchToLookupTableHans Wennborg2012-10-311-2/+0
* Address Duncan's comments on r167121.Hans Wennborg2012-10-311-3/+4
* Address Duncan's comments on r167115Hans Wennborg2012-10-311-48/+42
* Fix false -> NULL conversion from r167115 spotted by Benjamin Kramer.Hans Wennborg2012-10-311-1/+1
* Do simple constant propagation in lookup table formation for switchesHans Wennborg2012-10-311-15/+98
* Use TargetTransformInfo to control switch-to-lookup table transformationHans Wennborg2012-10-301-6/+15
* Remove a wrapper around getIntPtrType added to GVN by Hal in commit 166624 (theDuncan Sands2012-10-291-1/+1
* Also optimize large switch statements.Jakob Stoklund Olesen2012-10-251-22/+20
* Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow2012-10-241-5/+9
* Simplify code. No functionality change.Benjamin Kramer2012-10-141-5/+3
* PGO: create metadata for switch only if it has more than one targets.Manman Ren2012-10-111-1/+1
* Move TargetData to DataLayout.Micah Villmow2012-10-081-18/+18
* SimplifyCFG: Enhance the "remove CFG edge that leads to null pointer derefere...Benjamin Kramer2012-10-041-2/+3
* SimplifyCFG: Don't crash when forming a switch bitmap with an undef default v...Benjamin Kramer2012-10-011-2/+5
* SimplifyCFG: Enumerating all predecessors of a BB can be expensive (switches)...Benjamin Kramer2012-09-301-3/+7
* Fix a integer overflow in SimplifyCFG's look up table formation logic.Benjamin Kramer2012-09-271-0/+4
* Address Duncan's comments on r164684:Hans Wennborg2012-09-261-9/+5
* Address Duncan's comments on r164682:Hans Wennborg2012-09-261-6/+4
* SimplifyCFG: Make the switch-to-lookup table transformation store theHans Wennborg2012-09-261-12/+89
* SimplifyCFG: Refactor the switch-to-lookup table transformation byHans Wennborg2012-09-261-72/+115
* SimplifyCFG: sink common codes from IF, ELSE blocks down to END block.Manman Ren2012-09-201-0/+173