Home
last modified time | relevance | path

Searched refs:PType (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DPredicateInfo.h139 PredicateWithEdge(PredicateType PType, Value *Op, BasicBlock *From, in PredicateWithEdge() argument
141 : PredicateBase(PType, Op, Cond), From(From), To(To) {} in PredicateWithEdge()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVGlobalRegistry.cpp705 if (auto PType = dyn_cast<PointerType>(Ty)) { in createSPIRVType() local
711 auto SC = addressSpaceToStorageClass(PType->getAddressSpace()); in createSPIRVType()
716 ForwardPointerTypes[PType] = getOpTypeForwardPointer(SC, MIRBuilder); in createSPIRVType()
717 return ForwardPointerTypes[PType]; in createSPIRVType()
722 if (ForwardPointerTypes.contains(PType)) in createSPIRVType()
723 Reg = getSPIRVTypeID(ForwardPointerTypes[PType]); in createSPIRVType()
H A DSPIRVBuiltins.cpp1686 Type *PType = const_cast<Type *>(getBlockStructType(BlockLiteralReg, MRI)); in buildEnqueueKernel() local
1689 MIB.addUse(buildConstantIntReg(DL.getTypeStoreSize(PType), MIRBuilder, GR)); in buildEnqueueKernel()
1692 buildConstantIntReg(DL.getPrefTypeAlign(PType).value(), MIRBuilder, GR)); in buildEnqueueKernel()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp499 const DIType *PType = stripQualifiers(cast<DIType>(ParentType)); in IsValidAIChain() local
508 if (const auto *PtrTy = dyn_cast<DIDerivedType>(PType)) { in IsValidAIChain()
515 const auto *PTy = dyn_cast<DICompositeType>(PType); in IsValidAIChain()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp7667 QualType PType = PI->getType(); in getObjCEncodingForBlock() local
7688 PType = PVDecl->getType(); in getObjCEncodingForBlock()
7689 } else if (PType->isFunctionType()) in getObjCEncodingForBlock()
7690 PType = PVDecl->getType(); in getObjCEncodingForBlock()
7711 QualType PType = PI->getType(); in getObjCEncodingForFunctionDecl() local
7731 PType = PVDecl->getType(); in getObjCEncodingForFunctionDecl()
7733 PType = PVDecl->getType(); in getObjCEncodingForFunctionDecl()
7734 getObjCEncodingForType(PType, S); in getObjCEncodingForFunctionDecl()
7778 QualType PType = (*PI)->getType(); in getObjCEncodingForMethodDecl() local
7802 PType = PVDecl->getType(); in getObjCEncodingForMethodDecl()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp418 auto PType = PrototypeDescriptorStr.back(); in parsePrototypeDescriptor() local
419 switch (PType) { in parsePrototypeDescriptor()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp17567 static void diagnoseArrayStarInParamType(Sema &S, QualType PType, in diagnoseArrayStarInParamType() argument
17569 if (!PType->isVariablyModifiedType()) in diagnoseArrayStarInParamType()
17571 if (const auto *PointerTy = dyn_cast<PointerType>(PType)) { in diagnoseArrayStarInParamType()
17575 if (const auto *ReferenceTy = dyn_cast<ReferenceType>(PType)) { in diagnoseArrayStarInParamType()
17579 if (const auto *ParenTy = dyn_cast<ParenType>(PType)) { in diagnoseArrayStarInParamType()
17584 const ArrayType *AT = S.Context.getAsArrayType(PType); in diagnoseArrayStarInParamType()
17638 QualType PType = Param->getOriginalType(); in CheckParmsForFunctionDef() local
17641 diagnoseArrayStarInParamType(*this, PType, Param->getLocation()); in CheckParmsForFunctionDef()
H A DSemaTemplateDeduction.cpp6058 QualType PType = Context.getCanonicalTemplateSpecializationType(X, PArgs); in isTemplateTemplateParameterAtLeastAsSpecializedAs() local
6064 return isAtLeastAsSpecializedAs(*this, PType, AType, AArg, Info); in isTemplateTemplateParameterAtLeastAsSpecializedAs()