Lines Matching refs:PT
243 virtual Type *remapScalar(PointerType *PT) = 0;
261 Type *remapScalar(PointerType *PT) override { return DL.getIntPtrType(PT); } in remapScalar() argument
272 Type *remapScalar(PointerType *PT) override;
283 if (auto *PT = dyn_cast<PointerType>(Ty)) { in remapTypeImpl() local
284 if (PT->getAddressSpace() == AMDGPUAS::BUFFER_FAT_POINTER) { in remapTypeImpl()
285 return *Entry = remapScalar(PT); in remapTypeImpl()
289 auto *PT = dyn_cast<PointerType>(VT->getElementType()); in remapTypeImpl() local
290 if (PT && PT->getAddressSpace() == AMDGPUAS::BUFFER_FAT_POINTER) { in remapTypeImpl()
357 Type *BufferFatPtrToStructTypeMap::remapScalar(PointerType *PT) { in remapScalar() argument
358 LLVMContext &Ctx = PT->getContext(); in remapScalar()
373 if (auto *PT = dyn_cast<PointerType>(Ty->getScalarType())) in isBufferFatPtrOrVector() local
374 return PT->getAddressSpace() == AMDGPUAS::BUFFER_FAT_POINTER; in isBufferFatPtrOrVector()