| Commit message (Expand) | Author | Age | Files | Lines |
| * | strength reduce a ton of type equality tests to check the typeid (Through | Chris Lattner | 2009-10-05 | 1 | -9/+10 |
| * | Peer through zext and sext to eliminate them when it is safe to do so. | Nick Lewycky | 2009-09-20 | 1 | -0/+16 |
| * | Fold 'icmp eq (icmp), true' into an xor(icmp). | Nick Lewycky | 2009-09-20 | 1 | -0/+14 |
| * | Correct the comment; this applies to fcmp too. | Nick Lewycky | 2009-09-20 | 1 | -1/+1 |
| * | Remove tab, again. | Nick Lewycky | 2009-09-20 | 1 | -1/+1 |
| * | Teach the constant folder how to not a cmpinst. | Nick Lewycky | 2009-09-20 | 1 | -0/+14 |
| * | Try turning icmp(bitcast(x), bitcast(y)) into icmp(bitcast(bitcast(x)), y) in | Nick Lewycky | 2009-09-20 | 1 | -0/+10 |
| * | Remove tabs I added. | Nick Lewycky | 2009-09-20 | 1 | -8/+8 |
| * | Clean up the usage of evaluateICmpRelation's return value. | Nick Lewycky | 2009-09-20 | 1 | -37/+30 |
| * | Remove dead store by taking a guess at what Chris meant. I wasn't able to | Nick Lewycky | 2009-09-20 | 1 | -2/+1 |
| * | Delete dead code. sext and zext can not turn integers into pointers. Further, | Nick Lewycky | 2009-09-20 | 1 | -15/+0 |
| * | Value* were never meant to be const. Removing constness from the constant | Nick Lewycky | 2009-09-20 | 1 | -163/+132 |
| * | Teach the constant folder how to handle a few simple i1 cases. | Nick Lewycky | 2009-09-20 | 1 | -0/+31 |
| * | Fix an accidental inversion of the inbounds flag. | Dan Gohman | 2009-09-15 | 1 | -3/+3 |
| * | fix PR4963: folding insertvalue would sometimes turn a packed struct into | Chris Lattner | 2009-09-15 | 1 | -20/+24 |
| * | Teach lib/VMCore/ConstantFold.cpp how to set the inbounds keyword and | Dan Gohman | 2009-09-11 | 1 | -7/+100 |
| * | Factor out the code for checking that all indices in a getelementptr are | Dan Gohman | 2009-09-10 | 1 | -0/+8 |
| * | Revert 80959. It isn't sufficient to solve the full problem. And it | Dan Gohman | 2009-09-03 | 1 | -1/+3 |
| * | Remove the API for creating ConstantExprs with the nsw, nuw, inbounds, | Dan Gohman | 2009-09-03 | 1 | -3/+1 |
| * | Cleanup whitespace and indentation. | Dan Gohman | 2009-08-29 | 1 | -29/+28 |
| * | Push LLVMContexts through the IntegerType APIs. | Owen Anderson | 2009-08-13 | 1 | -46/+46 |
| * | Simplify this code, and use an in-bounds GEP. | Dan Gohman | 2009-08-12 | 1 | -5/+7 |
| * | Privatize the StructType table, which unfortunately involves routing contexts... | Owen Anderson | 2009-08-05 | 1 | -3/+3 |
| * | Move a few more APIs back to 2.5 forms. The only remaining ones left to chan... | Owen Anderson | 2009-07-31 | 1 | -58/+58 |
| * | Move getTrue() and getFalse() to 2.5-like APIs. | Owen Anderson | 2009-07-31 | 1 | -6/+6 |
| * | Move more code back to 2.5 APIs. | Owen Anderson | 2009-07-30 | 1 | -23/+23 |
| * | Move types back to the 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -3/+3 |
| * | Move ConstantExpr to 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -44/+44 |
| * | Return ConstantVector to 2.5 API. | Owen Anderson | 2009-07-28 | 1 | -26/+26 |
| * | Change ConstantArray to 2.5 API. | Owen Anderson | 2009-07-28 | 1 | -3/+3 |
| * | Move ConstantStruct back to 2.5 API. | Owen Anderson | 2009-07-27 | 1 | -3/+3 |
| * | Move ConstantFP construction back to the 2.5-ish API. | Owen Anderson | 2009-07-27 | 1 | -8/+8 |
| * | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 2009-07-24 | 1 | -45/+45 |
| * | Rename getConstantInt{True|False} to get{True|False} at Chris' behest. | Owen Anderson | 2009-07-21 | 1 | -6/+6 |
| * | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -5/+5 |
| * | Inline EvalVectorOp in order to get rid of passing-pointer-to-static-methods ... | Owen Anderson | 2009-07-13 | 1 | -38/+132 |
| * | Begin the painful process of tearing apart the rat'ss nest that is Constants.... | Owen Anderson | 2009-07-13 | 1 | -206/+239 |
| * | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -5/+6 |
| * | Remove the vicmp and vfcmp instructions. Because we never had a release with | Nick Lewycky | 2009-07-08 | 1 | -68/+22 |
| * | Expand this test to handle more cases (remainder and shifts) of zero. | Nick Lewycky | 2009-06-21 | 1 | -8/+15 |
| * | implement PR4424: 0/x is always 0 for integer division. | Chris Lattner | 2009-06-21 | 1 | -0/+7 |
| * | Revert r73790, and replace it with a significantly less ugly solution. Rathe... | Owen Anderson | 2009-06-20 | 1 | -60/+51 |
| * | Fix a serious bug that would cause deadlock during abstract type refinement. ... | Owen Anderson | 2009-06-19 | 1 | -51/+60 |
| * | Support vector casts in more places, fixing a variety of assertion | Dan Gohman | 2009-06-15 | 1 | -16/+16 |
| * | Split the Add, Sub, and Mul instruction opcodes into separate | Dan Gohman | 2009-06-04 | 1 | -8/+15 |
| * | Apply a patch by Micah Villmow to fix AsmParser to accept vector | Dan Gohman | 2009-03-14 | 1 | -0/+6 |
| * | Extension of GEP in constant folder was broken (apparently this code | Daniel Dunbar | 2009-02-24 | 1 | -1/+1 |
| * | Allow the inverse transform x86_fp80 -> i80 (also | Duncan Sands | 2009-02-04 | 1 | -9/+4 |
| * | Fix PR3468: a crash when constant folding a bitcast of | Duncan Sands | 2009-02-04 | 1 | -6/+5 |
| * | Make special cases (0 inf nan) work for frem. | Dale Johannesen | 2009-01-21 | 1 | -10/+0 |