Lines Matching refs:OpVT

1563                                                           EVT OpVT) const {  in shouldExpandGetActiveLaneMask()
1576 if (OpVT != MVT::i32 && OpVT != MVT::i64) in shouldExpandGetActiveLaneMask()
4109 EVT OpVT = Op.getValueType(); in LowerBITCAST() local
4112 if (useSVEForFixedLengthVectorVT(OpVT)) in LowerBITCAST()
4115 if (OpVT.isScalableVector()) { in LowerBITCAST()
4121 if (OpVT.getVectorElementCount() != ArgVT.getVectorElementCount()) in LowerBITCAST()
4124 if (isTypeLegal(OpVT) && !isTypeLegal(ArgVT)) { in LowerBITCAST()
4125 assert(OpVT.isFloatingPoint() && !ArgVT.isFloatingPoint() && in LowerBITCAST()
4130 return getSVESafeBitCast(OpVT, ExtResult, DAG); in LowerBITCAST()
4132 return getSVESafeBitCast(OpVT, Op.getOperand(0), DAG); in LowerBITCAST()
4135 if (OpVT != MVT::f16 && OpVT != MVT::bf16) in LowerBITCAST()
4148 DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL, OpVT, Op, in LowerBITCAST()
11915 EVT OpVT = Op.getOperand(0).getValueType(); in LowerTRUNCATE() local
11916 SDValue Zero = DAG.getConstant(0, dl, OpVT); in LowerTRUNCATE()
11917 SDValue One = DAG.getConstant(1, dl, OpVT); in LowerTRUNCATE()
11918 SDValue And = DAG.getNode(ISD::AND, dl, OpVT, Op.getOperand(0), One); in LowerTRUNCATE()
15081 EVT OpVT = N0.getValueType(); in performLastTrueTestVectorCombine() local
15083 if (!OpVT.isScalableVector() || OpVT.getVectorElementType() != MVT::i1) in performLastTrueTestVectorCombine()
15095 unsigned NumEls = OpVT.getVectorElementCount().getKnownMinValue(); in performLastTrueTestVectorCombine()
15101 SDValue Pg = getPTrue(DAG, SDLoc(N), OpVT, AArch64SVEPredPattern::all); in performLastTrueTestVectorCombine()
21422 EVT OpVT = Op.getValueType(); in LowerPredReductionToSVE() local
21425 if (!OpVT.isScalableVector() || OpVT.getVectorElementType() != MVT::i1) in LowerPredReductionToSVE()
21428 SDValue Pg = getPredicateForVector(DAG, DL, OpVT); in LowerPredReductionToSVE()
21434 if (isAllActivePredicate(DAG, Pg) && OpVT == MVT::nxv16i1) in LowerPredReductionToSVE()
21441 Op = DAG.getNode(ISD::XOR, DL, OpVT, Op, Pg); in LowerPredReductionToSVE()
21447 if (OpVT == MVT::nxv1i1) { in LowerPredReductionToSVE()