• Home
  • Raw
  • Download

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()
81 EVT PtrVT = Dst.getValueType(); in EmitTargetCodeForMemset() local
105 Dst = DAG.getNode(ISD::ADD, DL, PtrVT, Dst, in EmitTargetCodeForMemset()
106 DAG.getConstant(Size1, DL, PtrVT)); in EmitTargetCodeForMemset()
119 SDValue Dst2 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst, in EmitTargetCodeForMemset()
120 DAG.getConstant(1, DL, PtrVT)); in EmitTargetCodeForMemset()
139 SDValue DstPlus1 = DAG.getNode(ISD::ADD, DL, PtrVT, Dst, in EmitTargetCodeForMemset()
140 DAG.getConstant(1, DL, PtrVT)); in EmitTargetCodeForMemset()
152 EVT PtrVT = Src1.getValueType(); in emitCLC() local
163 DAG.getConstant(Size, DL, PtrVT), in emitCLC()
164 DAG.getConstant(Size / 256, DL, PtrVT)); in emitCLC()
166 DAG.getConstant(Size, DL, PtrVT)); in emitCLC()
201 EVT PtrVT = Src.getValueType(); in EmitTargetCodeForMemchr() local
202 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other, MVT::Glue); in EmitTargetCodeForMemchr()
203 Length = DAG.getZExtOrTrunc(Length, DL, PtrVT); in EmitTargetCodeForMemchr()
207 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length); in EmitTargetCodeForMemchr()
215 SDValue Ops[] = {End, DAG.getConstant(0, DL, PtrVT), in EmitTargetCodeForMemchr()
219 VTs = DAG.getVTList(PtrVT, MVT::Glue); in EmitTargetCodeForMemchr()
255 EVT PtrVT = Src.getValueType(); in getBoundedStrlen() local
256 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other, MVT::Glue); in getBoundedStrlen()
260 SDValue Len = DAG.getNode(ISD::SUB, DL, PtrVT, End, Src); in getBoundedStrlen()
267 EVT PtrVT = Src.getValueType(); in EmitTargetCodeForStrlen() local
268 return getBoundedStrlen(DAG, DL, Chain, Src, DAG.getConstant(0, DL, PtrVT)); in EmitTargetCodeForStrlen()
274 EVT PtrVT = Src.getValueType(); in EmitTargetCodeForStrnlen() local
275 MaxLength = DAG.getZExtOrTrunc(MaxLength, DL, PtrVT); in EmitTargetCodeForStrnlen()
276 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength); in EmitTargetCodeForStrnlen()