| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Control flow instruction encodings. | Evan Cheng | 2008-09-01 | 2 | -17/+71 |
* | ldm / stm instruction encodings. | Evan Cheng | 2008-09-01 | 2 | -6/+28 |
* | AXI2 and AXI3 instruction encodings. | Evan Cheng | 2008-09-01 | 2 | -10/+94 |
* | Reorganize instruction formats again; AXI1 encoding. | Evan Cheng | 2008-09-01 | 1 | -34/+35 |
* | addrmode3 instruction encodings. | Evan Cheng | 2008-09-01 | 2 | -42/+208 |
* | Reorganize some instruction format definitions. No functionality change. | Evan Cheng | 2008-09-01 | 1 | -18/+29 |
* | Rest of addrmode2 instruction encodings. | Evan Cheng | 2008-09-01 | 2 | -14/+106 |
* | Addr2 word / byte load encodings. | Evan Cheng | 2008-08-31 | 2 | -4/+24 |
* | Addr1 instructions opcodes are encoded in bits 21-24; encode S bit. | Evan Cheng | 2008-08-31 | 1 | -4/+5 |
* | fix a bunch of 80-col violations | Gabor Greif | 2008-08-31 | 5 | -33/+65 |
* | Revert the "XFAIL" for the rotate_ops.ll testcase. Instead, mark ISD::ROTR | Bill Wendling | 2008-08-31 | 1 | -3/+7 |
* | Expand for ROTR with MVT::i64. | Bill Wendling | 2008-08-31 | 1 | -0/+1 |
* | Cosmetic changes to Machine LICM. No functionality change. | Bill Wendling | 2008-08-31 | 1 | -31/+36 |
* | Another situation where ROTR is cheaper than ROTL. | Bill Wendling | 2008-08-31 | 1 | -3/+3 |
* | For this pattern, ROTR is the cheaper option. | Bill Wendling | 2008-08-31 | 1 | -4/+4 |
* | - Fix comment so that it describes how the code really works: | Bill Wendling | 2008-08-31 | 1 | -6/+6 |
* | typo | Gabor Greif | 2008-08-30 | 1 | -1/+1 |
* | fix some 80-col violations | Gabor Greif | 2008-08-30 | 1 | -19/+23 |
* | PR2731: C and Ocaml bindings for setTailCall and isTailCall. | Gordon Henriksen | 2008-08-30 | 1 | -0/+10 |
* | Fix ConstantExpr::getInsertElement. | Gordon Henriksen | 2008-08-30 | 1 | -2/+1 |
* | fix some 80-col violations | Gabor Greif | 2008-08-30 | 2 | -3/+5 |
* | Re-apply 55467 with fix. If copy is being replaced by remat'ed def, transfer ... | Evan Cheng | 2008-08-30 | 2 | -4/+83 |
* | Fold isRematerializable checks into isSafeToReMat. | Evan Cheng | 2008-08-30 | 1 | -1/+3 |
* | For now, can't mark XOR64rr isAsCheapAsAMove. It's technically correct. But v... | Evan Cheng | 2008-08-30 | 1 | -1/+1 |
* | Transform (x << (y&31)) -> (x << y). This takes advantage of the fact x86 shi... | Evan Cheng | 2008-08-30 | 3 | -0/+116 |
* | Fix an issue where a use might be selected before a def, and then we didn't r... | Owen Anderson | 2008-08-30 | 1 | -8/+23 |
* | Add ppc partial-word ATOMIC_CMP_SWAP. | Dale Johannesen | 2008-08-30 | 1 | -4/+143 |
* | Swap fp comparison operands and change predicate to allow load folding (safel... | Evan Cheng | 2008-08-29 | 1 | -16/+50 |
* | Use static_cast instead of C style cast. | Evan Cheng | 2008-08-29 | 1 | -1/+2 |
* | Fix 80 col. violations. | Evan Cheng | 2008-08-29 | 1 | -2/+4 |
* | Back out 55498. It broken Apple style bootstrapping. | Evan Cheng | 2008-08-29 | 1 | -106/+81 |
* | Backing out 55521. Not safe. | Evan Cheng | 2008-08-29 | 3 | -49/+5 |
* | Add partial word version of ATOMIC_SWAP. | Dale Johannesen | 2008-08-29 | 1 | -50/+29 |
* | Add initial support for fast isel of instructions that have inputs pinned to ... | Owen Anderson | 2008-08-29 | 1 | -0/+1 |
* | regenerate | Chris Lattner | 2008-08-29 | 3 | -1455/+1531 |
* | Asmprint nameless instructions as: | Chris Lattner | 2008-08-29 | 1 | -1/+8 |
* | Add support for parsing .ll files that have numbers in front of | Chris Lattner | 2008-08-29 | 1 | -5/+39 |
* | TableGen'ing instruction encodings. | Evan Cheng | 2008-08-29 | 1 | -1/+2 |
* | addrmode1 (data processing) instruction encoding: bits 5-6 are 0, bits 7-10 e... | Evan Cheng | 2008-08-29 | 1 | -3/+10 |
* | MVN is addrmode1. | Evan Cheng | 2008-08-29 | 1 | -7/+7 |
* | More refactoring. | Evan Cheng | 2008-08-29 | 2 | -45/+55 |
* | Swap fp comparison operands and change predicate to allow load folding. | Evan Cheng | 2008-08-28 | 3 | -5/+49 |
* | Refactor ARM instruction format definitions into a separate file. No function... | Evan Cheng | 2008-08-28 | 2 | -215/+232 |
* | Add a target callback for FastISel. | Dan Gohman | 2008-08-28 | 2 | -2/+27 |
* | remove tabs, fix > 80 cols | Gabor Greif | 2008-08-28 | 1 | -10/+16 |
* | rename destroy -> releaseMemory to properly hook into passmgr. | Chris Lattner | 2008-08-28 | 1 | -2/+2 |
* | Add support for JIT exceptions on Darwin. Since we're dealing with libgcc, | Nicolas Geoffray | 2008-08-28 | 1 | -2/+135 |
* | erect abstraction boundaries for accessing SDValue members, rename Val -> Nod... | Gabor Greif | 2008-08-28 | 34 | -1105/+1113 |
* | Implement null and undef values for FastISel. | Dan Gohman | 2008-08-28 | 1 | -0/+5 |
* | In lowering SELECT_CC, removed cases where we can't flip the true and false w... | Mon P Wang | 2008-08-28 | 1 | -8/+0 |