Lines Matching refs:CastOpcode
13066 unsigned CastOpcode = Cast->getOpcode(); in matchVSelectOpSizesWithSetCC() local
13067 assert((CastOpcode == ISD::SIGN_EXTEND || CastOpcode == ISD::ZERO_EXTEND || in matchVSelectOpSizesWithSetCC()
13068 CastOpcode == ISD::TRUNCATE || CastOpcode == ISD::FP_EXTEND || in matchVSelectOpSizesWithSetCC()
13069 CastOpcode == ISD::FP_ROUND) && in matchVSelectOpSizesWithSetCC()
13095 if (CastOpcode == ISD::FP_ROUND) { in matchVSelectOpSizesWithSetCC()
13097 CastA = DAG.getNode(CastOpcode, DL, VT, A, Cast->getOperand(1)); in matchVSelectOpSizesWithSetCC()
13098 CastB = DAG.getNode(CastOpcode, DL, VT, B, Cast->getOperand(1)); in matchVSelectOpSizesWithSetCC()
13100 CastA = DAG.getNode(CastOpcode, DL, VT, A); in matchVSelectOpSizesWithSetCC()
13101 CastB = DAG.getNode(CastOpcode, DL, VT, B); in matchVSelectOpSizesWithSetCC()
23649 unsigned CastOpcode = N->getOperand(0).getOpcode(); in combineConcatVectorOfCasts() local
23650 switch (CastOpcode) { in combineConcatVectorOfCasts()
23674 if (Op.getOpcode() != CastOpcode || !Op.hasOneUse() || in combineConcatVectorOfCasts()
23688 switch (CastOpcode) { in combineConcatVectorOfCasts()
23691 if (!TLI.isOperationLegalOrCustom(CastOpcode, ConcatSrcVT) || in combineConcatVectorOfCasts()
23697 if (!TLI.isOperationLegalOrCustom(CastOpcode, VT) || in combineConcatVectorOfCasts()
23708 return DAG.getNode(CastOpcode, DL, VT, NewConcat); in combineConcatVectorOfCasts()