| Commit message (Expand) | Author | Age | Files | Lines |
* | Minor comment cleanups. | Dan Gohman | 2007-05-24 | 1 | -1/+1 |
* | remove use of Instruction::getNext | Chris Lattner | 2007-04-17 | 1 | -3/+5 |
* | reduce use of std::set | Chris Lattner | 2007-04-02 | 1 | -6/+7 |
* | Change uses of Function::front to Function::getEntryBlock for readability. | Dan Gohman | 2007-03-22 | 1 | -1/+2 |
* | Make sorting of ConstantInt be APInt clean through use of ult function. | Reid Spencer | 2007-03-02 | 1 | -1/+1 |
* | Eliminate use of ctors that take vectors. | Chris Lattner | 2007-02-13 | 1 | -5/+7 |
* | simplify code by using Value::takeName | Chris Lattner | 2007-02-11 | 1 | -21/+17 |
* | Adjust #includes to match movement of constant folding code from transformuti... | Chris Lattner | 2007-01-30 | 1 | -0/+1 |
* | For PR1043: | Reid Spencer | 2007-01-19 | 1 | -0/+1 |
* | rename Type::isIntegral to Type::isInteger, eliminating the old Type::isInteger. | Chris Lattner | 2007-01-15 | 1 | -1/+1 |
* | Eliminate calls to isInteger, generalizing code and tightening checks as needed. | Chris Lattner | 2007-01-15 | 1 | -1/+1 |
* | Implement review feedback for the ConstantBool->ConstantInt merge. Chris | Reid Spencer | 2007-01-12 | 1 | -9/+10 |
* | Rename BoolTy as Int1Ty. Patch by Sheng Zhou. | Reid Spencer | 2007-01-11 | 1 | -2/+2 |
* | For PR1043: | Zhou Sheng | 2007-01-11 | 1 | -5/+8 |
* | For PR950: | Reid Spencer | 2006-12-23 | 1 | -25/+24 |
* | For PR950: | Reid Spencer | 2006-11-27 | 1 | -5/+0 |
* | Remove #include <iostream> and use llvm_* streams instead. | Bill Wendling | 2006-11-26 | 1 | -21/+20 |
* | Do not convert massive blocks on phi nodes into select statements. Instead | Chris Lattner | 2006-11-18 | 1 | -0/+27 |
* | For PR950: | Reid Spencer | 2006-11-08 | 1 | -1/+2 |
* | For PR786: | Reid Spencer | 2006-11-02 | 1 | -3/+2 |
* | Fix SimplifyCFG/2006-10-29-InvokeCrash.ll, a crash compiling QT. | Chris Lattner | 2006-10-29 | 1 | -1/+1 |
* | For PR950: | Reid Spencer | 2006-10-20 | 1 | -1/+1 |
* | Fix SimplifyCFG/2006-10-19-UncondDiv.ll by disabling a bad xform. | Chris Lattner | 2006-10-20 | 1 | -23/+40 |
* | Fix PR867 (and maybe 868) and testcsae: | Chris Lattner | 2006-08-03 | 1 | -6/+25 |
* | Fix an infinite loop on Transforms/SimplifyCFG/2006-06-12-InfLoop.ll | Chris Lattner | 2006-06-12 | 1 | -1/+10 |
* | remove some dead code identified by coverity | Chris Lattner | 2006-05-14 | 1 | -1/+1 |
* | remove dead variables | Chris Lattner | 2006-05-14 | 1 | -2/+0 |
* | Fix Transforms/SimplifyCFG/2006-02-17-InfiniteUnroll.ll | Chris Lattner | 2006-02-18 | 1 | -2/+8 |
* | Add explicit #includes of <iostream> | Chris Lattner | 2006-01-22 | 1 | -0/+1 |
* | Fix SimplifyCFG/2005-12-03-IncorrectPHIFold.ll | Chris Lattner | 2005-12-03 | 1 | -8/+14 |
* | Clean up the code a bit. Use isInstructionTriviallyDead to be more aggressive | Chris Lattner | 2005-10-03 | 1 | -4/+8 |
* | remove some debugging code | Chris Lattner | 2005-09-23 | 1 | -1/+0 |
* | Fold two consequtive branches that share a common destination between them. | Chris Lattner | 2005-09-23 | 1 | -33/+119 |
* | simplify some logic further | Chris Lattner | 2005-09-23 | 1 | -6/+1 |
* | pull a bunch of logic out of SimplifyCFG into a helper fn | Chris Lattner | 2005-09-23 | 1 | -112/+112 |
* | Start threading across blocks with code in them, so long as the code does | Chris Lattner | 2005-09-20 | 1 | -15/+64 |
* | Implement merging of blocks with the same condition if the block has multiple | Chris Lattner | 2005-09-20 | 1 | -21/+59 |
* | Reject a case we don't handle yet | Chris Lattner | 2005-09-19 | 1 | -1/+3 |
* | remove debugging code :-/ | Chris Lattner | 2005-09-19 | 1 | -2/+0 |
* | Implement SimplifyCFG/branch-phi-thread.ll, the most trivial case of threading | Chris Lattner | 2005-09-19 | 1 | -0/+73 |
* | Fix Transforms/SimplifyCFG/2005-08-03-PHIFactorCrash.ll, a problem that | Chris Lattner | 2005-08-03 | 1 | -2/+3 |
* | Finally, add the required constraint checks to fix Transforms/SimplifyCFG/20... | Chris Lattner | 2005-08-03 | 1 | -2/+29 |
* | Simplify some code, add the correct pred checks | Chris Lattner | 2005-08-03 | 1 | -16/+25 |
* | Refactor code out of PropagatePredecessorsForPHIs, turning it into a pure fun... | Chris Lattner | 2005-08-03 | 1 | -37/+36 |
* | use splice instead of remove/insert to avoid some symtab operations | Chris Lattner | 2005-08-03 | 1 | -2/+2 |
* | move two functions up in the file, use SafeToMergeTerminators to eliminate | Chris Lattner | 2005-08-03 | 1 | -61/+45 |
* | Rip some code out of the main SimplifyCFG function into a subfunction and | Chris Lattner | 2005-08-03 | 1 | -78/+72 |
* | Disable this patch: | Chris Lattner | 2005-08-02 | 1 | -1/+1 |
* | Change a place to use an arbitrary value instead of null, when possible | Chris Lattner | 2005-08-02 | 1 | -3/+3 |
* | This code was very close, but not quite right. It did not take into | Chris Lattner | 2005-08-02 | 1 | -3/+10 |