| Age | Commit message (Expand) | Author | Files | Lines |
| 2007-03-09 | Fix typos in comments | Josh Triplett | 1 | -4/+4 |
| 2005-09-24 | Do stupid and crappy CSE on casts. | Linus Torvalds | 1 | -0/+25 |
| 2005-04-07 | [PATCH] using 0 as NULL in sparse | Christopher Li | 1 | -3/+3 |
| 2005-04-07 | Use the new per-instruction position information for better | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Split the binops where signedness matters into unsigned and signed. | Linus Torvalds | 1 | -6/+10 |
| 2005-04-07 | Split OP_SETVAL into OP_SETVAL (fp expressions and labels) and OP_SYMADDR | Linus Torvalds | 1 | -2/+8 |
| 2005-04-07 | Remove phi source merging. | Linus Torvalds | 1 | -17/+1 |
| 2005-04-07 | Expose "show_instruction()" for debugging. | Linus Torvalds | 1 | -2/+0 |
| 2005-04-07 | Be more aggressive on PHI-node CSE. | Linus Torvalds | 1 | -3/+10 |
| 2005-04-07 | Make OP_PHISOURCE track the OP_PHI instructions that it defines. | Linus Torvalds | 1 | -4/+2 |
| 2005-04-07 | Yet another missed "entry" change point. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Remove OP_SETCC, make OP_SEL bigger instead. | Linus Torvalds | 1 | -6/+10 |
| 2005-04-07 | Don't try to share parenthood fn between phi node removal and | Linus Torvalds | 1 | -1/+15 |
| 2005-04-07 | Start using instruction sizes properly. | Linus Torvalds | 1 | -1/+3 |
| 2005-04-07 | Oops. Don't try to CSE OP_SEL, at least not until we learn to | Linus Torvalds | 1 | -2/+2 |
| 2005-04-07 | Do CSE over children with trivially common parents. | Linus Torvalds | 1 | -1/+21 |
| 2005-04-07 | Allow CSE to run after bb packing. | Linus Torvalds | 1 | -1/+5 |
| 2005-04-07 | Add "memop" simplification phase. | Linus Torvalds | 1 | -1/+2 |
| 2005-04-07 | Be more careful about insn->bb pointers. | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | Make the CSE "repeat" logic be more fine-grained than just | Linus Torvalds | 1 | -6/+8 |
| 2005-04-07 | Move instruction simplification to new file "simplify.c". | Linus Torvalds | 1 | -193/+18 |
| 2005-04-07 | Another assert - verify bb validity. | Linus Torvalds | 1 | -2/+2 |
| 2005-04-07 | Don't change instruction pseudo's when nopping them out. | Linus Torvalds | 1 | -1/+0 |
| 2005-04-07 | Damn. We can't actually sort the phi-node list of phi's now | Linus Torvalds | 1 | -21/+4 |
| 2005-04-07 | Now that phi sources are just instructions, we can CSE them. | Linus Torvalds | 1 | -0/+12 |
| 2005-04-07 | Clear phi list when killing a phi-node instruction | Linus Torvalds | 1 | -1/+3 |
| 2005-04-07 | Oops. Clean up some left-overs from phi removal. | Linus Torvalds | 1 | -8/+10 |
| 2005-04-07 | Remove "struct phi", replace with instruction that generates a pseudo. | Linus Torvalds | 1 | -24/+27 |
| 2005-04-07 | Do if-conversion. | Linus Torvalds | 1 | -0/+101 |
| 2005-04-07 | Re-do CSE if we did a phi-node simplification. | Linus Torvalds | 1 | -12/+11 |
| 2005-04-07 | We need to pack the phi-list even if we simplify the phi | Linus Torvalds | 1 | -2/+3 |
| 2005-04-07 | Make phi-node normalization (part of CSE) do trivial simplification. | Linus Torvalds | 1 | -2/+17 |
| 2005-04-07 | Oops. Don't try to CSE the dead instructions. | Linus Torvalds | 1 | -0/+2 |
| 2005-04-07 | Kill trivially dead instructions | Linus Torvalds | 1 | -0/+55 |
| 2005-04-07 | Make the "cse nop" a bit more informative | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | Make CSE convert instructions to OP_NOP | Linus Torvalds | 1 | -2/+2 |
| 2005-04-07 | Add simple-stupid dominance testing for CSE. | Linus Torvalds | 1 | -2/+32 |
| 2005-04-07 | Pack the phi-list after removing duplicates. | Linus Torvalds | 1 | -0/+3 |
| 2005-04-07 | Add initial CSE pass | Linus Torvalds | 1 | -0/+291 |