| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a helper to remove a branch and DCE the condition, and use it | Eli Friedman | 2008-12-16 | 1 | -32/+25 |
* | fix a bug I introduced in simplifycfg handling single entry phi | Chris Lattner | 2008-12-07 | 1 | -1/+0 |
* | Factor some code into a new FoldSingleEntryPHINodes method. | Chris Lattner | 2008-12-03 | 1 | -4/+1 |
* | Rename DeleteBlockIfDead to DeleteDeadBlock and make it | Chris Lattner | 2008-12-03 | 1 | -1/+1 |
* | Factor some code out of SimplifyCFG, forming a new | Chris Lattner | 2008-12-03 | 1 | -21/+1 |
* | delete ErasePossiblyDeadInstructionTree, replacing uses of it with | Chris Lattner | 2008-11-27 | 1 | -41/+9 |
* | simplify this code a bit. | Chris Lattner | 2008-11-27 | 1 | -4/+4 |
* | Fix PR2967 by not deleting volatile load/stores that occur before unreachable. | Chris Lattner | 2008-10-29 | 1 | -0/+11 |
* | Nick Lewycky's patch. | Devang Patel | 2008-10-03 | 1 | -1/+1 |
* | Large mechanical patch. | Devang Patel | 2008-09-25 | 1 | -2/+2 |
* | Try to place hoisted instructions befoe icmp instruction. | Devang Patel | 2008-09-18 | 1 | -2/+23 |
* | Do not hoist instruction above branch condition. The instruction may use bran... | Devang Patel | 2008-09-17 | 1 | -9/+2 |
* | Use empty() instead of begin() == end(). | Dan Gohman | 2008-08-14 | 1 | -1/+1 |
* | Enable first-class aggregates support. | Dan Gohman | 2008-07-23 | 1 | -43/+34 |
* | Reapply r53735. My last patch fixed the failures Dan observed. | Owen Anderson | 2008-07-18 | 1 | -52/+9 |
* | Revert r53735. It broke SPEC 464.h264ref. | Dan Gohman | 2008-07-18 | 1 | -9/+52 |
* | Use MergeBlockIntoPredecessor to simplify some code. | Owen Anderson | 2008-07-17 | 1 | -52/+9 |
* | Fix mishandling of the infinite loop case when merging two blocks. This | Chris Lattner | 2008-07-13 | 1 | -17/+26 |
* | more refactoring. Use early exits instead of really complex logic. | Chris Lattner | 2008-07-13 | 1 | -109/+98 |
* | improve comments. | Chris Lattner | 2008-07-13 | 1 | -2/+4 |
* | factor another large hunk of code out into its own function. | Chris Lattner | 2008-07-13 | 1 | -155/+172 |
* | Final bit of simplification for FoldBranchToCommonDest. | Chris Lattner | 2008-07-13 | 1 | -32/+34 |
* | simplify logic a bit | Chris Lattner | 2008-07-13 | 1 | -9/+10 |
* | Refactor some code out into its own helper function, getting rid of crazy mul... | Chris Lattner | 2008-07-13 | 1 | -54/+84 |
* | - Use O(1) check of basic block size limit. | Evan Cheng | 2008-06-25 | 1 | -4/+8 |
* | Do not speculatively execute an instruction by hoisting it to its predecessor... | Evan Cheng | 2008-06-12 | 1 | -2/+16 |
* | For now, avoid generating FP select instructions in order to speculatively ex... | Evan Cheng | 2008-06-11 | 1 | -4/+9 |
* | op_iterator-ify loops | Gabor Greif | 2008-06-10 | 1 | -13/+16 |
* | Speculatively execute a block when the the block is the then part of a triang... | Evan Cheng | 2008-06-07 | 1 | -0/+121 |
* | Tidy up BasicBlock::getFirstNonPHI, and change a bunch of places to | Dan Gohman | 2008-05-23 | 1 | -2/+1 |
* | Restucture a part of the SimplifyCFG pass and include a testcase. | Matthijs Kooijman | 2008-05-23 | 1 | -65/+99 |
* | API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac... | Gabor Greif | 2008-05-16 | 1 | -5/+5 |
* | Fix a bunch of 80col violations that arose from the Create API change. Tweak ... | Gabor Greif | 2008-05-15 | 1 | -2/+4 |
* | Fix PR2256, yet another miscompilation in simplifycfg of i | Chris Lattner | 2008-04-28 | 1 | -3/+4 |
* | Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989 | Nick Lewycky | 2008-04-25 | 1 | -16/+2 |
* | Split some code out of the main SimplifyCFG loop into its own function. | Chris Lattner | 2008-04-24 | 1 | -65/+103 |
* | API changes for class Use size reduction, wave 1. | Gabor Greif | 2008-04-06 | 1 | -30/+30 |
* | Check to see if a two-entry PHI block can be simplified | Dan Gohman | 2008-03-11 | 1 | -6/+6 |
* | Turn unwind_to into "unwinds to". | Nick Lewycky | 2008-03-10 | 1 | -1/+1 |
* | Firstly, having a BranchInst isn't exclusive with having an unwind_to. | Nick Lewycky | 2008-03-09 | 1 | -5/+8 |
* | A BB that unwind_to an "unwind" inst is that same as one that doesn't unwind_to | Nick Lewycky | 2008-03-09 | 1 | -1/+4 |
* | Update the inliner and simplifycfg to handle unwind_to. | Nick Lewycky | 2008-03-09 | 1 | -1/+9 |
* | Make Transforms to be 4.3 warnings-clean | Anton Korobeynikov | 2008-02-20 | 1 | -6/+10 |
* | switch simplifycfg from using vectors for most things to smallvectors, | Chris Lattner | 2008-02-18 | 1 | -14/+12 |
* | don't hoist FP additions into unconditional adds + selects. This | Chris Lattner | 2008-01-03 | 1 | -0/+2 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | If succ has succ itself as one of the predecessors then do | Devang Patel | 2007-12-22 | 1 | -2/+2 |
* | Fix PR1146: parameter attributes are longer part of | Duncan Sands | 2007-11-27 | 1 | -0/+2 |
* | New CallInst interface to address GLIBCXX_DEBUG errors caused by | David Greene | 2007-08-01 | 1 | -2/+2 |
* | It's not necessary to do rounding for alloca operations when the requested | Dan Gohman | 2007-07-18 | 1 | -0/+1905 |