| Commit message (Expand) | Author | Age | Files | Lines |
| * | Factor some libcall code. | Duncan Sands | 2008-04-12 | 1 | -61/+49 |
| * | Drop ISD::MEMSET, ISD::MEMMOVE, and ISD::MEMCPY, which are not Legal | Dan Gohman | 2008-04-12 | 1 | -117/+1 |
| * | Re-commit of the r48822, where the infinite looping problem discovered | Roman Levenstein | 2008-04-07 | 1 | -9/+9 |
| * | Backing out 48222 temporarily. | Evan Cheng | 2008-04-03 | 1 | -9/+9 |
| * | More soft fp fixes. | Evan Cheng | 2008-04-01 | 1 | -1/+2 |
| * | Pasto. | Evan Cheng | 2008-04-01 | 1 | -1/+1 |
| * | Add comment. | Evan Cheng | 2008-04-01 | 1 | -0/+1 |
| * | Unbreak ARM / Thumb soft FP support. | Evan Cheng | 2008-04-01 | 1 | -3/+11 |
| * | Use a linked data structure for the uses lists of an SDNode, just like | Roman Levenstein | 2008-03-26 | 1 | -9/+9 |
| * | Introduce a new node for holding call argument | Duncan Sands | 2008-03-21 | 1 | -0/+1 |
| * | Make conversions of i8/i16 to ppcf128 work. | Dale Johannesen | 2008-03-18 | 1 | -10/+13 |
| * | Tabs -> spaces | Nate Begeman | 2008-03-14 | 1 | -14/+23 |
| * | More APInt-ification. | Dan Gohman | 2008-03-13 | 1 | -5/+5 |
| * | Generalize ExpandIntToFP to handle the case where the operand is legal | Dan Gohman | 2008-03-11 | 1 | -11/+22 |
| * | More APInt-ification. | Dan Gohman | 2008-03-11 | 1 | -7/+7 |
| * | Implement more support for fp-to-i128 and i128-to-fp conversions. | Dan Gohman | 2008-03-10 | 1 | -80/+125 |
| * | Fix mul expansion to check the correct number of bits for | Dan Gohman | 2008-03-10 | 1 | -4/+3 |
| * | Give TargetLowering::getSetCCResultType() a parameter so that ISD::SETCC's | Scott Michel | 2008-03-10 | 1 | -25/+32 |
| * | Fix two problems in SelectionDAGLegalize::ExpandBUILD_VECTOR's handling | Chris Lattner | 2008-03-09 | 1 | -21/+38 |
| * | Implement x86 support for @llvm.prefetch. It corresponds to prefetcht{0|1|2} ... | Evan Cheng | 2008-03-08 | 1 | -0/+18 |
| * | Clarify that CALLSEQ_START..END may not be nested, | Dale Johannesen | 2008-03-05 | 1 | -0/+7 |
| * | Improve comment, pass in the original VT so that we can shrink a long double ... | Chris Lattner | 2008-03-05 | 1 | -2/+4 |
| * | Codegen support for i128 UINT_TO_FP. This just fixes a | Dan Gohman | 2008-03-05 | 1 | -5/+2 |
| * | Add a target lowering hook to control whether it's worthwhile to compress fp ... | Evan Cheng | 2008-03-05 | 1 | -1/+2 |
| * | 64bit CAS on 32bit x86. | Andrew Lenharth | 2008-03-05 | 1 | -0/+11 |
| * | Codegen support for i128 SINT_TO_FP. | Dan Gohman | 2008-03-05 | 1 | -14/+30 |
| * | Refactor ExpandConstantFP so it can optimize load from constpool of types lar... | Evan Cheng | 2008-03-04 | 1 | -16/+19 |
| * | More APInt-ification. | Dan Gohman | 2008-03-03 | 1 | -3/+4 |
| * | all but CAS working on x86 | Andrew Lenharth | 2008-03-01 | 1 | -13/+14 |
| * | Add MVT::is128BitVector and is64BitVector. Shrink | Dale Johannesen | 2008-03-01 | 1 | -16/+5 |
| * | Use the new convertFromAPInt instead of convertFromZeroExtendedInteger, | Dan Gohman | 2008-02-29 | 1 | -5/+3 |
| * | Fix an assertion message. | Dale Johannesen | 2008-02-28 | 1 | -1/+1 |
| * | implement expand for ISD::DECLARE by just deleting it. | Chris Lattner | 2008-02-28 | 1 | -0/+3 |
| * | Handle load/store of misaligned vectors that are the | Dale Johannesen | 2008-02-27 | 1 | -19/+30 |
| * | Remove the `else', at Evan's insistence. | Dan Gohman | 2008-02-27 | 1 | -2/+1 |
| * | Support for legalizing MEMBARRIER. | Duncan Sands | 2008-02-27 | 1 | -2/+5 |
| * | Teach Legalize how to expand an EXTRACT_ELEMENT. | Dan Gohman | 2008-02-27 | 1 | -0/+6 |
| * | Make some static variables const. | Dan Gohman | 2008-02-25 | 1 | -3/+3 |
| * | Convert MaskedValueIsZero and all its users to use APInt. Also add | Dan Gohman | 2008-02-25 | 1 | -10/+15 |
| * | Fix a regression in 403.gcc and 186.crafty introduced in 47383. To test | Dan Gohman | 2008-02-22 | 1 | -5/+5 |
| * | Atomic op support. If any gcc test uses __sync builtins, it might start fail... | Andrew Lenharth | 2008-02-21 | 1 | -0/+46 |
| * | Convert Legalize to use the APInt form of ComputeMaskedBits. | Dan Gohman | 2008-02-20 | 1 | -4/+6 |
| * | I cannot find a libgcc function for this builtin. Therefor expanding it to a... | Andrew Lenharth | 2008-02-16 | 1 | -5/+15 |
| * | llvm.memory.barrier, and impl for x86 and alpha | Andrew Lenharth | 2008-02-16 | 1 | -0/+10 |
| * | Make tblgen a little smarter about constants smaller than i32. Currently, | Scott Michel | 2008-02-15 | 1 | -0/+7 |
| * | Use StoreSDNode::getValue instead of calling getOperand directly | Dan Gohman | 2008-02-15 | 1 | -4/+4 |
| * | In TargetLowering::LowerCallTo, don't assert that | Duncan Sands | 2008-02-14 | 1 | -4/+7 |
| * | Change how FP immediates are handled. | Nate Begeman | 2008-02-14 | 1 | -17/+16 |
| * | Support legalizing insert_vector_elt on targets where the element | Nate Begeman | 2008-02-13 | 1 | -27/+40 |
| * | From Chris' review: use cast instead of dyn_cast with an assert. | Dan Gohman | 2008-02-11 | 1 | -8/+4 |