Lines Matching refs:DL
33 const DataLayout *DL; variable
35 explicit TargetTransformInfoImplBase(const DataLayout *DL) in TargetTransformInfoImplBase() argument
36 : DL(DL) {} in TargetTransformInfoImplBase()
41 : DL(Arg.DL) {} in TargetTransformInfoImplBase()
43 : DL(std::move(Arg.DL)) {} in TargetTransformInfoImplBase()
46 DL = RHS.DL;
50 DL = std::move(RHS.DL);
73 if (!DL) in getOperationCost()
79 if (DL->isLegalInteger(OpSize) && in getOperationCost()
80 OpSize <= DL->getPointerTypeSizeInBits(Ty)) in getOperationCost()
87 if (!DL) in getOperationCost()
93 if (DL->isLegalInteger(DestSize) && in getOperationCost()
94 DestSize >= DL->getPointerTypeSizeInBits(OpTy)) in getOperationCost()
103 if (DL && DL->isLegalInteger(DL->getTypeSizeInBits(Ty))) in getOperationCost()
338 explicit TargetTransformInfoImplCRTPBase(const DataLayout *DL) in TargetTransformInfoImplCRTPBase() argument
339 : BaseT(DL) {} in TargetTransformInfoImplCRTPBase()