Lines Matching defs:PtrVT
102 EVT PtrVT = Dst.getValueType();
127 Dst = DAG.getNode(ISD::ADD, DL, PtrVT, Dst,
128 DAG.getConstant(Size1, DL, PtrVT));
142 SDValue Dst2 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst,
143 DAG.getConstant(1, DL, PtrVT));
202 EVT PtrVT = Src.getValueType();
203 SDVTList VTs = DAG.getVTList(PtrVT, MVT::i32, MVT::Other);
204 Length = DAG.getZExtOrTrunc(Length, DL, PtrVT);
208 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length);
217 End, DAG.getConstant(0, DL, PtrVT),
220 End = DAG.getNode(SystemZISD::SELECT_CCMASK, DL, PtrVT, Ops);
256 EVT PtrVT = Src.getValueType();
257 SDVTList VTs = DAG.getVTList(PtrVT, MVT::i32, MVT::Other);
261 SDValue Len = DAG.getNode(ISD::SUB, DL, PtrVT, End, Src);
268 EVT PtrVT = Src.getValueType();
269 return getBoundedStrlen(DAG, DL, Chain, Src, DAG.getConstant(0, DL, PtrVT));
275 EVT PtrVT = Src.getValueType();
276 MaxLength = DAG.getZExtOrTrunc(MaxLength, DL, PtrVT);
277 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength);