| Commit message (Expand) | Author | Age | Files | Lines |
* | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 19 | -69/+69 |
* | Resort the #include lines in include/... and lib/... with the | Chandler Carruth | 2013-01-02 | 1 | -1/+1 |
* | Support ppcf128 in SelectionDAG::getConstantFP | Hal Finkel | 2012-12-30 | 1 | -1/+2 |
* | Remove the Function::getRetAttributes method in favor of using the AttributeS... | Bill Wendling | 2012-12-30 | 3 | -15/+15 |
* | Remove Function::getParamAttributes and use the AttributeSet accessor methods... | Bill Wendling | 2012-12-30 | 1 | -8/+8 |
* | Remove the Function::getFnAttributes method in favor of using the AttributeSet | Bill Wendling | 2012-12-30 | 3 | -9/+11 |
* | Refactor DAGCombinerInfo. Change the different booleans that indicate if we a... | Nadav Rotem | 2012-12-27 | 2 | -3/+3 |
* | Use MachineInstrBuilder for PHI nodes in SelectionDAGISel. | Jakob Stoklund Olesen | 2012-12-20 | 1 | -50/+25 |
* | Use MachineInstrBuilder in InstrEmitter. | Jakob Stoklund Olesen | 2012-12-20 | 2 | -79/+73 |
* | Do not introduce vector operations in functions marked with noimplicitfloat. | Bob Wilson | 2012-12-20 | 1 | -2/+5 |
* | Change AsmOperandInfo::ConstraintVT to MVT, instead of EVT. | Patrik Hagglund | 2012-12-19 | 2 | -8/+9 |
* | Split the usage of 'EVT PartVT' into 'MVT PartVT' and 'EVT PartEVT'. | Patrik Hagglund | 2012-12-19 | 1 | -38/+38 |
* | Change RegVT in BitTestBlock and RegsForValue, to contain MVTs, | Patrik Hagglund | 2012-12-19 | 2 | -14/+13 |
* | Change TargetLowering::getTypeForExtArgOrReturn to take and return | Patrik Hagglund | 2012-12-19 | 1 | -1/+1 |
* | Change a parameter of TargetLowering::getVectorTypeBreakdown to MVT, | Patrik Hagglund | 2012-12-19 | 2 | -14/+19 |
* | Change TargetLowering::RegisterTypeForVT to contain MVTs, instead of | Patrik Hagglund | 2012-12-19 | 5 | -18/+18 |
* | Change TargetLowering::TransformToType to contain MVTs, instead of | Patrik Hagglund | 2012-12-19 | 1 | -4/+4 |
* | Change TargetLowering::findRepresentativeClass to take an MVT, instead | Patrik Hagglund | 2012-12-19 | 1 | -2/+2 |
* | Change TargetLowering::getTypeToPromoteTo to take and return MVTs, | Patrik Hagglund | 2012-12-19 | 2 | -9/+9 |
* | Change TargetLowering::isCondCodeLegal to take an MVT, instead of EVT. | Patrik Hagglund | 2012-12-19 | 2 | -12/+15 |
* | Change TargetLowering::getCondCodeAction to take an MVT, instead of | Patrik Hagglund | 2012-12-19 | 2 | -4/+4 |
* | Change TargetLowering::getTruncStoreAction to take MVTs, instead of EVTs. | Patrik Hagglund | 2012-12-19 | 2 | -3/+4 |
* | Optimized load + SIGN_EXTEND patterns in the X86 backend. | Elena Demikhovsky | 2012-12-19 | 1 | -0/+1 |
* | After reducing the size of an operation in the DAG we zero-extend the reduced | Nadav Rotem | 2012-12-19 | 1 | -2/+5 |
* | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling | 2012-12-19 | 3 | -27/+27 |
* | Remove more of 'else's after 'returns'. No functional change. | Craig Topper | 2012-12-19 | 1 | -6/+6 |
* | Remove a bunch of 'else's after 'returns' | Craig Topper | 2012-12-19 | 1 | -18/+18 |
* | Teach SimplifySetCC that comparing AssertZext i1 against a constant 1 can be ... | Craig Topper | 2012-12-19 | 1 | -3/+9 |
* | Check multiple register classes for inline asm tied registers | Hal Finkel | 2012-12-18 | 1 | -3/+16 |
* | Revert/correct some FastISel changes in r170104 (EVT->MVT for | Patrik Hagglund | 2012-12-17 | 1 | -5/+6 |
* | Change TargetLowering::getLoadExtAction to take an MVT, instead of | Patrik Hagglund | 2012-12-14 | 1 | -1/+1 |
* | Change TargetLowering::setTypeAction to take an MVT, instead fo EVT. | Patrik Hagglund | 2012-12-13 | 1 | -1/+1 |
* | Change TargetLowering::getRepRegClassFor to take an MVT, instead of | Patrik Hagglund | 2012-12-13 | 3 | -11/+11 |
* | Change TargetLowering::getRegClassFor to take an MVT, instead of EVT. | Patrik Hagglund | 2012-12-13 | 6 | -30/+30 |
* | Fix a bug in DAGCombiner::MatchBSwapHWord. Make sure the node has operands be... | Evan Cheng | 2012-12-13 | 1 | -1/+2 |
* | Fix a logic bug in inline expansion of memcpy / memset with an overlapping | Evan Cheng | 2012-12-12 | 1 | -4/+5 |
* | Sorry about the churn. One more change to getOptimalMemOpType() hook. Did I | Evan Cheng | 2012-12-12 | 1 | -6/+7 |
* | - Rename isLegalMemOpType to isSafeMemOpType. "Legal" is a very overloade term. | Evan Cheng | 2012-12-12 | 1 | -5/+5 |
* | DAGCombine: clamp hi bit in APInt::getBitsSet to avoid assertion | Manman Ren | 2012-12-12 | 1 | -1/+2 |
* | Avoid using lossy load / stores for memcpy / memset expansion. e.g. | Evan Cheng | 2012-12-12 | 1 | -15/+21 |
* | Replace TargetLowering::isIntImmLegal() with | Evan Cheng | 2012-12-11 | 1 | -1/+5 |
* | Revert EVT->MVT changes, r169836-169851, due to buildbot failures. | Patrik Hagglund | 2012-12-11 | 15 | -125/+115 |
* | Change RegVT in BitTestBlock and RegsForValue, to contain MVTs, | Patrik Hagglund | 2012-12-11 | 2 | -13/+12 |
* | Change TargetLowering::getTypeForExtArgOrReturn to take and return | Patrik Hagglund | 2012-12-11 | 1 | -1/+2 |
* | Change a parameter of TargetLowering::getVectorTypeBreakdown to MVT, | Patrik Hagglund | 2012-12-11 | 2 | -14/+19 |
* | Change TargetLowering::RegisterTypeForVT to contain MVTs, instead of | Patrik Hagglund | 2012-12-11 | 5 | -18/+18 |
* | Change TargetLowering::TransformToType to contain MVTs, instead of | Patrik Hagglund | 2012-12-11 | 1 | -4/+4 |
* | Change TargetLowering::findRepresentativeClass to take an MVT, instead | Patrik Hagglund | 2012-12-11 | 1 | -2/+2 |
* | Change TargetLowering::getTypeToPromoteTo to take and return MVTs, | Patrik Hagglund | 2012-12-11 | 2 | -8/+8 |
* | Change TargetLowering::isCondCodeLegal to take an MVT, instead of EVT. | Patrik Hagglund | 2012-12-11 | 2 | -12/+15 |