Home
last modified time | relevance | path

Searched refs:PointeeTy (Results 1 – 17 of 17) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DStore.cpp96 QualType PointeeTy = CastToTy->getPointeeType(); in castRegion() local
97 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy); in castRegion()
140 return MakeElementRegion(R, PointeeTy); in castRegion()
179 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy); in castRegion()
185 return MakeElementRegion(baseR, PointeeTy); in castRegion()
199 if (IsCompleteType(Ctx, PointeeTy)) { in castRegion()
201 CharUnits pointeeTySize = Ctx.getTypeSizeInChars(PointeeTy); in castRegion()
219 return MakeElementRegion(newSuperR, PointeeTy, newIndex); in castRegion()
DCallEvent.cpp114 QualType PointeeTy = Ty->getPointeeType(); in isPointerToConst() local
115 if (PointeeTy == QualType()) in isPointerToConst()
117 if (!PointeeTy.isConstQualified()) in isPointerToConst()
119 if (PointeeTy->isAnyPointerType()) in isPointerToConst()
/external/clang/lib/Analysis/
DBodyFarm.cpp312 QualType PointeeTy = PT->getPointeeType(); in create_OSAtomicCompareAndSwap() local
322 PointeeTy), in create_OSAtomicCompareAndSwap()
323 PointeeTy), in create_OSAtomicCompareAndSwap()
332 PointeeTy), in create_OSAtomicCompareAndSwap()
/external/llvm/lib/Transforms/Instrumentation/
DDebugIR.cpp401 Type *PointeeTy = T->getPointerElementType(); in getOrCreateType() local
402 if (!(N = getType(PointeeTy))) in getOrCreateType()
404 getOrCreateType(PointeeTy), Layout.getPointerTypeSizeInBits(T), in getOrCreateType()
/external/llvm/include/llvm/IR/
DDIBuilder.h163 createPointerType(DIType PointeeTy, uint64_t SizeInBits,
169 DIDerivedType createMemberPointerType(DIType PointeeTy, DIType Class);
/external/clang/lib/CodeGen/
DCGDebugInfo.h149 llvm::DIType getOrCreateTypeDeclaration(QualType PointeeTy, llvm::DIFile F);
151 const Type *Ty, QualType PointeeTy,
DItaniumCXXABI.cpp2014 void BuildPointerTypeInfo(QualType PointeeTy);
2182 QualType PointeeTy = PointerTy->getPointeeType(); in TypeInfoIsInStandardLibrary() local
2183 const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(PointeeTy); in TypeInfoIsInStandardLibrary()
2188 Qualifiers Quals = PointeeTy.getQualifiers(); in TypeInfoIsInStandardLibrary()
2846 void ItaniumRTTIBuilder::BuildPointerTypeInfo(QualType PointeeTy) { in BuildPointerTypeInfo() argument
2849 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals); in BuildPointerTypeInfo()
2878 QualType PointeeTy = Ty->getPointeeType(); in BuildPointerToMemberTypeInfo() local
2882 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals); in BuildPointerToMemberTypeInfo()
DCGDebugInfo.cpp636 QualType PointeeTy, in CreatePointerLikeType() argument
640 return DBuilder.createReferenceType(Tag, getOrCreateType(PointeeTy, Unit)); in CreatePointerLikeType()
645 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy); in CreatePointerLikeType()
649 return DBuilder.createPointerType(getOrCreateType(PointeeTy, Unit), Size, in CreatePointerLikeType()
1003 QualType PointeeTy = ThisPtrTy->getPointeeType(); in getOrCreateInstanceMethodType() local
1004 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy); in getOrCreateInstanceMethodType()
1007 llvm::DIType PointeeType = getOrCreateType(PointeeTy, Unit); in getOrCreateInstanceMethodType()
/external/clang/lib/AST/
DASTContext.cpp5076 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const { in getLegacyIntegralTypeEncoding()
5077 if (isa<TypedefType>(PointeeTy.getTypePtr())) { in getLegacyIntegralTypeEncoding()
5078 if (const BuiltinType *BT = PointeeTy->getAs<BuiltinType>()) { in getLegacyIntegralTypeEncoding()
5079 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32) in getLegacyIntegralTypeEncoding()
5080 PointeeTy = UnsignedIntTy; in getLegacyIntegralTypeEncoding()
5082 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32) in getLegacyIntegralTypeEncoding()
5083 PointeeTy = IntTy; in getLegacyIntegralTypeEncoding()
5254 QualType PointeeTy; in getObjCEncodingForTypeImpl() local
5261 PointeeTy = PT->getPointeeType(); in getObjCEncodingForTypeImpl()
5263 PointeeTy = T->castAs<ReferenceType>()->getPointeeType(); in getObjCEncodingForTypeImpl()
[all …]
DMicrosoftMangle.cpp1855 QualType PointeeTy = T->getPointeeType(); in mangleType() local
1856 mangleType(PointeeTy, Range); in mangleType()
/external/clang/lib/Sema/
DSema.cpp1304 QualType PointeeTy = ExprTy->getPointeeType(); in tryExprAsCall() local
1305 if (!PointeeTy.isNull()) in tryExprAsCall()
1306 FunTy = PointeeTy->getAs<FunctionType>(); in tryExprAsCall()
DSemaOverload.cpp6616 QualType PointeeTy; in AddPointerWithMoreQualifiedTypeVariants() local
6621 PointeeTy = PTy->getPointeeType(); in AddPointerWithMoreQualifiedTypeVariants()
6624 PointeeTy = PointerTy->getPointeeType(); in AddPointerWithMoreQualifiedTypeVariants()
6631 if (PointeeTy->isArrayType()) in AddPointerWithMoreQualifiedTypeVariants()
6634 unsigned BaseCVR = PointeeTy.getCVRQualifiers(); in AddPointerWithMoreQualifiedTypeVariants()
6648 (!(PointeeTy->isAnyPointerType() || PointeeTy->isReferenceType())))) in AddPointerWithMoreQualifiedTypeVariants()
6652 QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR); in AddPointerWithMoreQualifiedTypeVariants()
6687 QualType PointeeTy = PointerTy->getPointeeType(); in AddMemberPointerWithMoreQualifiedTypeVariants() local
6692 if (PointeeTy->isArrayType()) in AddMemberPointerWithMoreQualifiedTypeVariants()
6698 unsigned BaseCVR = PointeeTy.getCVRQualifiers(); in AddMemberPointerWithMoreQualifiedTypeVariants()
[all …]
DSemaChecking.cpp4087 QualType PointeeTy = DestPtrTy->getPointeeType(); in CheckMemaccessArguments() local
4091 if (PointeeTy->isVoidType()) in CheckMemaccessArguments()
4116 if (!PointeeTy->isIncompleteType() && in CheckMemaccessArguments()
4117 (Context.getTypeSize(PointeeTy) == Context.getCharWidth())) in CheckMemaccessArguments()
4140 << PointeeTy in CheckMemaccessArguments()
4157 if (PointeeTy->isRecordType() && in CheckMemaccessArguments()
4162 << PointeeTy << Dest->getSourceRange() in CheckMemaccessArguments()
4171 getContainedDynamicClass(PointeeTy, IsContained)) { in CheckMemaccessArguments()
4191 } else if (PointeeTy.hasNonTrivialObjCLifetime() && in CheckMemaccessArguments()
4196 << ArgIdx << FnName << PointeeTy in CheckMemaccessArguments()
DSemaExpr.cpp7071 QualType PointeeTy = Operand->getType()->getPointeeType(); in checkArithmeticIncompletePointerType() local
7072 return S.RequireCompleteType(Loc, PointeeTy, in checkArithmeticIncompletePointerType()
7074 PointeeTy, Operand->getSourceRange()); in checkArithmeticIncompletePointerType()
7089 QualType PointeeTy = Operand->getType()->getPointeeType(); in checkArithmeticOpPointerOperand() local
7090 if (PointeeTy->isVoidType()) { in checkArithmeticOpPointerOperand()
7094 if (PointeeTy->isFunctionType()) { in checkArithmeticOpPointerOperand()
/external/llvm/lib/IR/
DDIBuilder.cpp304 DIBuilder::createPointerType(DIType PointeeTy, uint64_t SizeInBits, in createPointerType() argument
317 PointeeTy.getRef() in createPointerType()
322 DIDerivedType DIBuilder::createMemberPointerType(DIType PointeeTy, in createMemberPointerType() argument
335 PointeeTy.getRef(), in createMemberPointerType()
/external/clang/lib/Rewrite/Frontend/
DRewriteModernObjC.cpp1252 QualType PointeeTy; in RewriteTypeIntoString() local
1254 PointeeTy = PT->getPointeeType(); in RewriteTypeIntoString()
1256 PointeeTy = BPT->getPointeeType(); in RewriteTypeIntoString()
1257 if ((FPRetType = PointeeTy->getAs<FunctionType>())) { in RewriteTypeIntoString()
2995 QualType PointeeTy = PT->getPointeeType(); in RewriteObjCDictionaryLiteralExpr() local
2996 convertToUnqualifiedObjCType(PointeeTy); in RewriteObjCDictionaryLiteralExpr()
2997 T = Context->getPointerType(PointeeTy); in RewriteObjCDictionaryLiteralExpr()
4636 QualType PointeeTy; in convertObjCTypeToCStyleType() local
4638 PointeeTy = PT->getPointeeType(); in convertObjCTypeToCStyleType()
4639 if (const FunctionType *FT = PointeeTy->getAs<FunctionType>()) { in convertObjCTypeToCStyleType()
DRewriteObjC.cpp1054 QualType PointeeTy; in RewriteTypeIntoString() local
1056 PointeeTy = PT->getPointeeType(); in RewriteTypeIntoString()
1058 PointeeTy = BPT->getPointeeType(); in RewriteTypeIntoString()
1059 if ((FPRetType = PointeeTy->getAs<FunctionType>())) { in RewriteTypeIntoString()