| Age | Commit message (Expand) | Author |
| 2005-05-14 | Allow targets to have a custom int64->fp expander if desired | Chris Lattner |
| 2005-05-13 | Align doubles on 8-byte boundaries if possible. | Chris Lattner |
| 2005-05-13 | Add an isTailCall flag to LowerCallTo | Chris Lattner |
| 2005-05-13 | Handle TAILCALL node | Chris Lattner |
| 2005-05-13 | Emit function entry code after lowering hte arguments. | Chris Lattner |
| 2005-05-13 | Allow targets to emit code into the entry block of each function | Chris Lattner |
| 2005-05-13 | Fix a problem that nate reduced for me. | Chris Lattner |
| 2005-05-13 | rename variables and functions to match renamed DAG nodes. Bonus feature: | Chris Lattner |
| 2005-05-13 | do not call expandop on the same value more than once. This fixes | Chris Lattner |
| 2005-05-12 | fix a bad typeo | Chris Lattner |
| 2005-05-12 | update comment | Chris Lattner |
| 2005-05-12 | rename the ADJCALLSTACKDOWN/ADJCALLSTACKUP nodes to be CALLSEQ_START/BEGIN. | Chris Lattner |
| 2005-05-12 | Pass calling convention to use into lower call to | Chris Lattner |
| 2005-05-12 | fix expansion of ct[lt]z nodes | Chris Lattner |
| 2005-05-12 | Expand 64-bit ctlz/cttz nodes for 32-bit targets | Chris Lattner |
| 2005-05-12 | Fix uint->fp casts on PPC, allowing UnitTests/2005-05-12-Int64ToFP to | Chris Lattner |
| 2005-05-12 | Allow something to be legalized multiple times. This can be used to reduce | Chris Lattner |
| 2005-05-12 | Oops, don't do this after we figure out where to insert the call chains. | Chris Lattner |
| 2005-05-12 | Make sure to expand all nodes, avoiding unintentional node duplication. | Chris Lattner |
| 2005-05-12 | handle a common case generated by the uint64 -> FP code path better | Chris Lattner |
| 2005-05-12 | add fixme | Chris Lattner |
| 2005-05-12 | Fix a problem where early legalization can cause token chain problems. | Chris Lattner |
| 2005-05-12 | Make legalize a bit more efficient, and canonicalize sub X, C -> add X, -C | Chris Lattner |
| 2005-05-11 | Necessary changes to codegen cttz efficiently on PowerPC | Nate Begeman |
| 2005-05-11 | Fix the last remaining bug preventing us from switching the X86 BE over | Chris Lattner |
| 2005-05-11 | Do not memoize ADJCALLSTACKDOWN nodes, provide a method to hack on them. | Chris Lattner |
| 2005-05-11 | wrap long line | Chris Lattner |
| 2005-05-11 | Make sure to legalize generated ctpop nodes, convert tabs to spaces | Chris Lattner |
| 2005-05-11 | expand count-leading/trailing-zeros; the test 2005-05-11-Popcount-ffs-fls.c | Duraid Madina |
| 2005-05-11 | Add some notes for expanding clz/ctz | Chris Lattner |
| 2005-05-11 | Simplify this code, use the proper shift amount | Chris Lattner |
| 2005-05-11 | Legalize this correctly | Chris Lattner |
| 2005-05-11 | implement expansion of ctpop nodes, implementing CodeGen/Generic/llvm-ct-intr... | Chris Lattner |
| 2005-05-11 | Print bit count nodes correctly | Chris Lattner |
| 2005-05-10 | Silence some VC++ warnings | Jeff Cohen |
| 2005-05-09 | The semantics of cast X to bool are a comparison against zero, not a truncation! | Chris Lattner |
| 2005-05-09 | legalize readio/writeio into a load/store if requested | Chris Lattner |
| 2005-05-09 | legalize READPORT, WRITEPORT, READIO, WRITEIO, at least in the basic cases | Chris Lattner |
| 2005-05-09 | Add support for matching the READPORT, WRITEPORT, READIO, WRITEIO intrinsics | Chris Lattner |
| 2005-05-09 | Add support for READPORT, WRITEPORT, READIO, WRITEIO | Chris Lattner |
| 2005-05-09 | Fold shifts into subsequent SHL's. These shifts often arise due to addrses | Chris Lattner |
| 2005-05-09 | Don't use the load/store instruction as the source pointer, use the pointer | Chris Lattner |
| 2005-05-09 | memoize all nodes, even null Value* nodes. Do not add two token chain outputs | Chris Lattner |
| 2005-05-09 | wrap long lines | Chris Lattner |
| 2005-05-09 | Print SrcValue nodes correctly | Chris Lattner |
| 2005-05-05 | When hitting an unsupported intrinsic, actually print it | Chris Lattner |
| 2005-05-05 | ctpop lowering in legalize | Andrew Lenharth |
| 2005-05-04 | Make promoteOp work for CT* | Andrew Lenharth |
| 2005-05-03 | Implement count leading zeros (ctlz), count trailing zeros (cttz), and count | Andrew Lenharth |
| 2005-04-30 | Codegen and legalize sin/cos/llvm.sqrt as FSIN/FCOS/FSQRT calls. This patch | Chris Lattner |