Lines Matching refs:DestOp
1472 SDValue DestOp; in getBitcastedAnyExtOrTrunc() local
1476 DestOp = getBitcast(MVT::getIntegerVT(Size), Op); in getBitcastedAnyExtOrTrunc()
1477 if (DestOp.getValueType() == VT) in getBitcastedAnyExtOrTrunc()
1478 return DestOp; in getBitcastedAnyExtOrTrunc()
1480 return getAnyExtOrTrunc(DestOp, DL, VT); in getBitcastedAnyExtOrTrunc()
1487 SDValue DestOp; in getBitcastedSExtOrTrunc() local
1491 DestOp = getBitcast(MVT::getIntegerVT(Size), Op); in getBitcastedSExtOrTrunc()
1492 if (DestOp.getValueType() == VT) in getBitcastedSExtOrTrunc()
1493 return DestOp; in getBitcastedSExtOrTrunc()
1495 return getSExtOrTrunc(DestOp, DL, VT); in getBitcastedSExtOrTrunc()
1502 SDValue DestOp; in getBitcastedZExtOrTrunc() local
1506 DestOp = getBitcast(MVT::getIntegerVT(Size), Op); in getBitcastedZExtOrTrunc()
1507 if (DestOp.getValueType() == VT) in getBitcastedZExtOrTrunc()
1508 return DestOp; in getBitcastedZExtOrTrunc()
1510 return getZExtOrTrunc(DestOp, DL, VT); in getBitcastedZExtOrTrunc()