Lines Matching refs:CastOpcode
11666 unsigned CastOpcode = Cast->getOpcode(); in matchVSelectOpSizesWithSetCC() local
11667 assert((CastOpcode == ISD::SIGN_EXTEND || CastOpcode == ISD::ZERO_EXTEND || in matchVSelectOpSizesWithSetCC()
11668 CastOpcode == ISD::TRUNCATE || CastOpcode == ISD::FP_EXTEND || in matchVSelectOpSizesWithSetCC()
11669 CastOpcode == ISD::FP_ROUND) && in matchVSelectOpSizesWithSetCC()
11695 if (CastOpcode == ISD::FP_ROUND) { in matchVSelectOpSizesWithSetCC()
11697 CastA = DAG.getNode(CastOpcode, DL, VT, A, Cast->getOperand(1)); in matchVSelectOpSizesWithSetCC()
11698 CastB = DAG.getNode(CastOpcode, DL, VT, B, Cast->getOperand(1)); in matchVSelectOpSizesWithSetCC()
11700 CastA = DAG.getNode(CastOpcode, DL, VT, A); in matchVSelectOpSizesWithSetCC()
11701 CastB = DAG.getNode(CastOpcode, DL, VT, B); in matchVSelectOpSizesWithSetCC()
21045 unsigned CastOpcode = N->getOperand(0).getOpcode(); in combineConcatVectorOfCasts() local
21046 switch (CastOpcode) { in combineConcatVectorOfCasts()
21070 if (Op.getOpcode() != CastOpcode || !Op.hasOneUse() || in combineConcatVectorOfCasts()
21084 switch (CastOpcode) { in combineConcatVectorOfCasts()
21087 if (!TLI.isOperationLegalOrCustom(CastOpcode, ConcatSrcVT) || in combineConcatVectorOfCasts()
21093 if (!TLI.isOperationLegalOrCustom(CastOpcode, VT) || in combineConcatVectorOfCasts()
21104 return DAG.getNode(CastOpcode, DL, VT, NewConcat); in combineConcatVectorOfCasts()