Home | History | Annotate | Download | only in MSP430

Lines Matching refs:VT2

1167 bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
1168 if (!VT1.isInteger() || !VT2.isInteger())
1171 return (VT1.getSizeInBits() > VT2.getSizeInBits());
1179 bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
1181 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16;
1184 bool MSP430TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
1185 return isZExtFree(Val.getValueType(), VT2);