| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add a couple missing transforms in getSetCC that were triggering assertions | Nate Begeman | 2005-04-14 | 1 | -1/+8 |
| * | Disbale the broken fold of shift + sz[ext] for now | Nate Begeman | 2005-04-13 | 1 | -7/+30 |
| * | fix an infinite loop | Chris Lattner | 2005-04-13 | 1 | -1/+1 |
| * | fix some serious miscompiles on ia64, alpha, and ppc | Chris Lattner | 2005-04-13 | 1 | -1/+1 |
| * | avoid work when possible, perhaps fix the problem nate and andrew are seeing | Chris Lattner | 2005-04-13 | 1 | -0/+1 |
| * | Implement expansion of unsigned i64 -> FP. | Chris Lattner | 2005-04-13 | 1 | -2/+31 |
| * | Make expansion of uint->fp cast assert out instead of infinitely recurse. | Chris Lattner | 2005-04-13 | 1 | -1/+1 |
| * | add back the optimization that Nate added for shl X, (zext_inreg y) | Chris Lattner | 2005-04-13 | 1 | -2/+23 |
| * | Oops, remove these too. | Chris Lattner | 2005-04-13 | 1 | -6/+2 |
| * | Instead of making ZERO_EXTEND_INREG nodes, use the helper method in | Chris Lattner | 2005-04-13 | 1 | -31/+22 |
| * | Remove all foldings of ZERO_EXTEND_INREG, moving them to work for AND nodes | Chris Lattner | 2005-04-13 | 1 | -41/+46 |
| * | Fold shift x, [sz]ext(y) -> shift x, y | Nate Begeman | 2005-04-12 | 1 | -0/+16 |
| * | Fold shift by size larger than type size to undef | Nate Begeman | 2005-04-12 | 2 | -19/+5 |
| * | promote extload i1 -> extload i8 | Chris Lattner | 2005-04-12 | 1 | -2/+10 |
| * | Remove some redundant checks, add a couple of new ones. This allows us to | Chris Lattner | 2005-04-12 | 1 | -7/+5 |
| * | Emit comparisons against the sign bit better. Codegen this: | Chris Lattner | 2005-04-12 | 1 | -0/+10 |
| * | Emit long comparison against -1 better. Instead of this (x86): | Chris Lattner | 2005-04-12 | 1 | -0/+10 |
| * | canonicalize x <u 1 -> x == 0. On this testcase: | Chris Lattner | 2005-04-12 | 1 | -0/+9 |
| * | Teach the dag mechanism that this: | Chris Lattner | 2005-04-11 | 1 | -2/+21 |
| * | Fix expansion of shifts by exactly NVT bits on arch's (like X86) that have | Chris Lattner | 2005-04-11 | 1 | -0/+10 |
| * | Fix libcall code to not pass a NULL Chain to LowerCallTo | Nate Begeman | 2005-04-11 | 1 | -5/+30 |
| * | Don't bother sign/zext_inreg'ing the result of an and operation if we know | Chris Lattner | 2005-04-10 | 1 | -0/+19 |
| * | Teach legalize to deal with targets that don't support some SEXTLOAD/ZEXTLOADs | Chris Lattner | 2005-04-10 | 1 | -13/+38 |
| * | don't zextload fp values! | Chris Lattner | 2005-04-10 | 1 | -1/+4 |
| * | Until we have a dag combiner, promote using zextload's instead of extloads. | Chris Lattner | 2005-04-10 | 1 | -1/+2 |
| * | Fold zext_inreg(zextload), likewise for sext's | Chris Lattner | 2005-04-10 | 1 | -0/+6 |
| * | add a simple xform | Chris Lattner | 2005-04-10 | 1 | -0/+6 |
| * | Fix a thinko. If the operand is promoted, pass the promoted value into | Chris Lattner | 2005-04-10 | 2 | -1/+5 |
| * | add a little peephole optimization. This allows us to codegen: | Chris Lattner | 2005-04-09 | 1 | -0/+11 |
| * | recognize some patterns as fabs operations, so that fabs at the source level | Chris Lattner | 2005-04-09 | 1 | -0/+21 |
| * | Emit BRCONDTWOWAY when possible. | Chris Lattner | 2005-04-09 | 1 | -7/+6 |
| * | Legalize BRCONDTWOWAY into a BRCOND/BR pair if a target doesn't support it. | Chris Lattner | 2005-04-09 | 1 | -0/+33 |
| * | print and fold BRCONDTWOWAY correctly | Chris Lattner | 2005-04-09 | 1 | -11/+25 |
| * | canonicalize a bunch of operations involving fneg | Chris Lattner | 2005-04-09 | 1 | -0/+21 |
| * | If a target zero or sign extends the result of its setcc, allow folding of | Chris Lattner | 2005-04-07 | 1 | -1/+13 |
| * | Remove somethign I had for testing | Chris Lattner | 2005-04-07 | 1 | -1/+1 |
| * | This patch does two things. First, it canonicalizes 'X >= C' -> 'X > C-1' | Chris Lattner | 2005-04-07 | 1 | -7/+49 |
| * | Fix a really scary bug that Nate found where we weren't deleting the right | Chris Lattner | 2005-04-07 | 1 | -1/+1 |
| * | Teach ExpandShift how to handle shifts by a constant. This allows targets | Nate Begeman | 2005-04-06 | 1 | -8/+64 |
| * | Expand SREM and UREM for targets that claim not to have them, like PowerPC | Nate Begeman | 2005-04-06 | 1 | -2/+25 |
| * | Add MULHU and MULHS nodes for the high part of an (un)signed 32x32=64b | Nate Begeman | 2005-04-05 | 1 | -0/+2 |
| * | Handle expanding arguments to ISD::TRUNCATE. This happens on PowerPC when | Nate Begeman | 2005-04-04 | 1 | -1/+3 |
| * | Fix sign_extend and zero_extend of promoted value types to expanded value | Chris Lattner | 2005-04-03 | 1 | -3/+27 |
| * | transform fabs/fabsf calls into FABS nodes. | Chris Lattner | 2005-04-02 | 1 | -29/+39 |
| * | Expand fabs into fneg | Chris Lattner | 2005-04-02 | 1 | -1/+9 |
| * | Turn -0.0 - X -> fneg | Chris Lattner | 2005-04-02 | 1 | -1/+13 |
| * | Several changes mixed up here. First when legalizing a DAG with pcmarker, | Chris Lattner | 2005-04-02 | 1 | -12/+57 |
| * | print fneg/fabs | Chris Lattner | 2005-04-02 | 1 | -0/+5 |
| * | fix some bugs in the implementation of SHL_PARTS and friends. | Chris Lattner | 2005-04-02 | 2 | -11/+38 |
| * | Turn expanded shift operations into (e.g.) SHL_PARTS if the target supports it. | Chris Lattner | 2005-04-02 | 1 | -9/+39 |