Lines Matching refs:DestOp
1476 SDValue DestOp; in getBitcastedAnyExtOrTrunc() local
1480 DestOp = getBitcast(EVT::getIntegerVT(*Context, Size), Op); in getBitcastedAnyExtOrTrunc()
1481 if (DestOp.getValueType() == VT) in getBitcastedAnyExtOrTrunc()
1482 return DestOp; in getBitcastedAnyExtOrTrunc()
1484 return getAnyExtOrTrunc(DestOp, DL, VT); in getBitcastedAnyExtOrTrunc()
1491 SDValue DestOp; in getBitcastedSExtOrTrunc() local
1495 DestOp = getBitcast(MVT::getIntegerVT(Size), Op); in getBitcastedSExtOrTrunc()
1496 if (DestOp.getValueType() == VT) in getBitcastedSExtOrTrunc()
1497 return DestOp; in getBitcastedSExtOrTrunc()
1499 return getSExtOrTrunc(DestOp, DL, VT); in getBitcastedSExtOrTrunc()
1506 SDValue DestOp; in getBitcastedZExtOrTrunc() local
1510 DestOp = getBitcast(MVT::getIntegerVT(Size), Op); in getBitcastedZExtOrTrunc()
1511 if (DestOp.getValueType() == VT) in getBitcastedZExtOrTrunc()
1512 return DestOp; in getBitcastedZExtOrTrunc()
1514 return getZExtOrTrunc(DestOp, DL, VT); in getBitcastedZExtOrTrunc()