Lines Matching refs:PtrVT

29   EVT PtrVT = Src.getValueType();  in emitMemMem()  local
43 DAG.getConstant(Size, DL, PtrVT), in emitMemMem()
44 DAG.getConstant(Size / 256, DL, PtrVT)); in emitMemMem()
46 DAG.getConstant(Size, DL, PtrVT)); in emitMemMem()
80 EVT PtrVT = Dst.getValueType(); in EmitTargetCodeForMemset() local
104 Dst = DAG.getNode(ISD::ADD, DL, PtrVT, Dst, in EmitTargetCodeForMemset()
105 DAG.getConstant(Size1, DL, PtrVT)); in EmitTargetCodeForMemset()
117 SDValue Dst2 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst, in EmitTargetCodeForMemset()
118 DAG.getConstant(1, DL, PtrVT)); in EmitTargetCodeForMemset()
136 SDValue DstPlus1 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst, in EmitTargetCodeForMemset()
137 DAG.getConstant(1, DL, PtrVT)); in EmitTargetCodeForMemset()
149 EVT PtrVT = Src1.getValueType(); in emitCLC() local
160 DAG.getConstant(Size, DL, PtrVT), in emitCLC()
161 DAG.getConstant(Size / 256, DL, PtrVT)); in emitCLC()
163 DAG.getConstant(Size, DL, PtrVT)); in emitCLC()
199 EVT PtrVT = Src.getValueType(); in EmitTargetCodeForMemchr() local
200 SDVTList VTs = DAG.getVTList(PtrVT, MVT::i32, MVT::Other); in EmitTargetCodeForMemchr()
201 Length = DAG.getZExtOrTrunc(Length, DL, PtrVT); in EmitTargetCodeForMemchr()
205 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length); in EmitTargetCodeForMemchr()
213 SDValue Ops[] = {End, DAG.getConstant(0, DL, PtrVT), in EmitTargetCodeForMemchr()
217 End = DAG.getNode(SystemZISD::SELECT_CCMASK, DL, PtrVT, Ops); in EmitTargetCodeForMemchr()
253 EVT PtrVT = Src.getValueType(); in getBoundedStrlen() local
254 SDVTList VTs = DAG.getVTList(PtrVT, MVT::i32, MVT::Other); in getBoundedStrlen()
258 SDValue Len = DAG.getNode(ISD::SUB, DL, PtrVT, End, Src); in getBoundedStrlen()
265 EVT PtrVT = Src.getValueType(); in EmitTargetCodeForStrlen() local
266 return getBoundedStrlen(DAG, DL, Chain, Src, DAG.getConstant(0, DL, PtrVT)); in EmitTargetCodeForStrlen()
272 EVT PtrVT = Src.getValueType(); in EmitTargetCodeForStrnlen() local
273 MaxLength = DAG.getZExtOrTrunc(MaxLength, DL, PtrVT); in EmitTargetCodeForStrnlen()
274 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength); in EmitTargetCodeForStrnlen()