| Commit message (Expand) | Author | Age | Files | Lines |
| * | tracking the instructions causing loads and stores provides more information ... | Andrew Lenharth | 2005-06-29 | 1 | -2/+0 |
| * | Fix bug 537 test 2, which checks to make sure that we fold A+(B-A) -> B for | Nate Begeman | 2005-06-16 | 1 | -2/+7 |
| * | Add some simplifications for MULH[SU]. This allows us to compile this: | Chris Lattner | 2005-05-15 | 1 | -0/+12 |
| * | remove special case hacks for readport/readio from the binary operator | Chris Lattner | 2005-05-14 | 1 | -6/+1 |
| * | Implement fixme's by memoizing nodes. | Chris Lattner | 2005-05-14 | 1 | -9/+21 |
| * | Turn this into a wrapper for a simpler version of getNode. | Chris Lattner | 2005-05-14 | 1 | -8/+7 |
| * | Eliminate special purpose hacks for dynamic_stack_alloc. | Chris Lattner | 2005-05-14 | 1 | -13/+1 |
| * | Use the general mechanism for creating multi-value nodes instead of using | Chris Lattner | 2005-05-14 | 1 | -34/+30 |
| * | Wrap long line, actually add node to the graph. | Chris Lattner | 2005-05-14 | 1 | -1/+3 |
| * | add a getNode() version that allows construction of any node type. | Chris Lattner | 2005-05-14 | 1 | -9/+33 |
| * | Handle TAILCALL node | Chris Lattner | 2005-05-13 | 1 | -0/+1 |
| * | fix a bad typeo | Chris Lattner | 2005-05-12 | 1 | -2/+2 |
| * | rename the ADJCALLSTACKDOWN/ADJCALLSTACKUP nodes to be CALLSEQ_START/BEGIN. | Chris Lattner | 2005-05-12 | 1 | -6/+6 |
| * | handle a common case generated by the uint64 -> FP code path better | Chris Lattner | 2005-05-12 | 1 | -1/+17 |
| * | Make legalize a bit more efficient, and canonicalize sub X, C -> add X, -C | Chris Lattner | 2005-05-12 | 1 | -6/+7 |
| * | Do not memoize ADJCALLSTACKDOWN nodes, provide a method to hack on them. | Chris Lattner | 2005-05-11 | 1 | -3/+24 |
| * | Print bit count nodes correctly | Chris Lattner | 2005-05-11 | 1 | -0/+6 |
| * | Silence some VC++ warnings | Jeff Cohen | 2005-05-10 | 1 | -2/+2 |
| * | Add support for READPORT, WRITEPORT, READIO, WRITEIO | Chris Lattner | 2005-05-09 | 1 | -1/+10 |
| * | Fold shifts into subsequent SHL's. These shifts often arise due to addrses | Chris Lattner | 2005-05-09 | 1 | -0/+28 |
| * | Don't use the load/store instruction as the source pointer, use the pointer | Chris Lattner | 2005-05-09 | 1 | -0/+2 |
| * | memoize all nodes, even null Value* nodes. Do not add two token chain outputs | Chris Lattner | 2005-05-09 | 1 | -7/+5 |
| * | Print SrcValue nodes correctly | Chris Lattner | 2005-05-09 | 1 | -0/+6 |
| * | Implement count leading zeros (ctlz), count trailing zeros (cttz), and count | Andrew Lenharth | 2005-05-03 | 1 | -3/+6 |
| * | Add FSQRT, FSIN, FCOS nodes, patch contributed by Morten Ofstad | Chris Lattner | 2005-04-28 | 1 | -1/+4 |
| * | Implement Value* tracking for loads and stores in the selection DAG. This en... | Andrew Lenharth | 2005-04-27 | 1 | -9/+33 |
| * | Fold (X > -1) | (Y > -1) --> (X&Y > -1) | Chris Lattner | 2005-04-26 | 1 | -1/+3 |
| * | implement some more logical compares with constants, so that: | Chris Lattner | 2005-04-25 | 1 | -7/+20 |
| * | Codegen x < 0 | y < 0 as (x|y) < 0. This allows us to compile this to: | Chris Lattner | 2005-04-25 | 1 | -1/+4 |
| * | Convert tabs to spaces | Misha Brukman | 2005-04-22 | 1 | -6/+4 |
| * | Remove trailing whitespace | Misha Brukman | 2005-04-21 | 1 | -31/+31 |
| * | Improve and elimination. On PPC, for: | Chris Lattner | 2005-04-21 | 1 | -6/+26 |
| * | Fold (x & 8) != 0 and (x & 8) == 8 into (x & 8) >> 3. | Chris Lattner | 2005-04-21 | 1 | -0/+22 |
| * | Fold setcc of MVT::i1 operands into logical operations | Chris Lattner | 2005-04-18 | 1 | -0/+39 |
| * | Another minor simplification: handle setcc (zero_extend x), c -> setcc(x, c') | Chris Lattner | 2005-04-18 | 1 | -0/+45 |
| * | Another simple xform | Chris Lattner | 2005-04-18 | 1 | -0/+8 |
| * | Fold: | Chris Lattner | 2005-04-18 | 1 | -0/+11 |
| * | Make the AND elimination operation recursive and significantly more powerful, | Chris Lattner | 2005-04-18 | 1 | -26/+57 |
| * | 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 |
| * | 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 |
| * | 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 | 1 | -11/+4 |
| * | Remove some redundant checks, add a couple of new ones. This allows us to | Chris Lattner | 2005-04-12 | 1 | -7/+5 |
| * | canonicalize x <u 1 -> x == 0. On this testcase: | Chris Lattner | 2005-04-12 | 1 | -0/+9 |