Searched refs:PointeeTy (Results 1 - 21 of 21) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp85 QualType PointeeTy = CastToTy->getPointeeType(); local
86 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
129 return MakeElementRegion(R, PointeeTy);
168 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
174 return MakeElementRegion(baseR, PointeeTy);
178 // if the offset can be evenly divided by sizeof(PointeeTy). If so,
187 // We can only compute sizeof(PointeeTy) if it is a complete type.
188 if (!PointeeTy->isIncompleteType()) {
190 CharUnits pointeeTySize = Ctx.getTypeSizeInChars(PointeeTy);
193 // ElementRegion (with elementType == PointeeTy) directl
[all...]
H A DCallEvent.cpp79 QualType PointeeTy = PT->getPointeeType(); local
80 if (PointeeTy.isConstQualified())
82 return PointeeTy->isVoidType();
132 QualType PointeeTy = Ty->getPointeeType(); local
133 if (PointeeTy == QualType())
135 if (!PointeeTy.isConstQualified())
137 if (PointeeTy->isAnyPointerType())
/external/clang/lib/Analysis/
H A DBodyFarm.cpp309 QualType PointeeTy = PT->getPointeeType();
319 PointeeTy),
320 PointeeTy),
329 PointeeTy),
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp1343 QualType PointeeTy = pd->getType()->getPointeeType(); local
1344 if (!PointeeTy.isNull())
1345 if (coreFoundation::isCFObjectRef(PointeeTy))
1348 QualType PointeeTy = pd->getType()->getPointeeType(); local
1349 if (!PointeeTy.isNull())
1350 if (coreFoundation::isCFObjectRef(PointeeTy))
1384 QualType PointeeTy = pd->getType()->getPointeeType(); local
1385 if (!PointeeTy.isNull())
1386 if (coreFoundation::isCFObjectRef(PointeeTy))
1389 QualType PointeeTy local
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DDerivedTypes.h446 Type *PointeeTy; member in class:llvm::PointerType
462 Type *getElementType() const { return PointeeTy; }
/external/llvm/include/llvm/IR/
H A DDIBuilder.h135 /// \param PointeeTy Type pointed by this pointer.
139 DIDerivedType *createPointerType(DIType *PointeeTy, uint64_t SizeInBits,
144 /// \param PointeeTy Type pointed to by this pointer.
148 DIDerivedType *createMemberPointerType(DIType *PointeeTy, DIType *Class,
/external/llvm/lib/IR/
H A DDIBuilder.cpp209 DIDerivedType *DIBuilder::createPointerType(DIType *PointeeTy, argument
215 nullptr, 0, nullptr, PointeeTy, SizeInBits,
219 DIDerivedType *DIBuilder::createMemberPointerType(DIType *PointeeTy, argument
225 nullptr, 0, nullptr, PointeeTy, SizeInBits,
H A DConstantFold.cpp2050 static Constant *ConstantFoldGetElementPtrImpl(Type *PointeeTy, Constant *C, argument
2060 Type *Ty = GetElementPtrInst::getIndexedType(PointeeTy, Idxs);
2077 Type *Ty = GetElementPtrInst::getIndexedType(PointeeTy, Idxs);
2190 Type *Ty = PointeeTy;
2263 return ConstantExpr::getGetElementPtr(PointeeTy, C, NewIdxs, inBounds);
2271 return ConstantExpr::getInBoundsGetElementPtr(PointeeTy, C, Idxs);
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DDIBuilder.h120 /// @param PointeeTy Type pointed by this pointer.
124 DIType createPointerType(DIType PointeeTy, uint64_t SizeInBits,
/external/clang/lib/Sema/
H A DSema.cpp1373 QualType PointeeTy = ExprTy->getPointeeType(); local
1374 if (!PointeeTy.isNull())
1375 FunTy = PointeeTy->getAs<FunctionType>();
H A DSemaChecking.cpp6152 QualType PointeeTy; local
6154 PointeeTy = DestPtrTy->getPointeeType();
6158 if (PointeeTy->isVoidType())
6183 if (!PointeeTy->isIncompleteType() &&
6184 (Context.getTypeSize(PointeeTy) == Context.getCharWidth()))
6207 << PointeeTy
6224 if (PointeeTy->isRecordType() &&
6229 << PointeeTy << Dest->getSourceRange()
6235 PointeeTy = DestTy;
6238 if (PointeeTy
[all...]
H A DSemaOverload.cpp6928 QualType PointeeTy;
6933 PointeeTy = PTy->getPointeeType();
6936 PointeeTy = PointerTy->getPointeeType();
6943 if (PointeeTy->isArrayType())
6946 unsigned BaseCVR = PointeeTy.getCVRQualifiers();
6960 (!(PointeeTy->isAnyPointerType() || PointeeTy->isReferenceType()))))
6964 QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
6999 QualType PointeeTy = PointerTy->getPointeeType(); local
7004 if (PointeeTy
7694 QualType PointeeTy = (*Ptr)->getPointeeType(); local
[all...]
H A DSemaExpr.cpp8149 QualType PointeeTy = ResType->getPointeeType(); local
8150 return S.RequireCompleteType(Loc, PointeeTy,
8152 PointeeTy, Operand->getSourceRange());
8171 QualType PointeeTy = ResType->getPointeeType();
8172 if (PointeeTy->isVoidType()) {
8176 if (PointeeTy->isFunctionType()) {
H A DSemaType.cpp6510 QualType PointeeTy = TypedefTy->desugar(); local
6514 switch (cast<BuiltinType>(PointeeTy.getTypePtr())->getKind()) {
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp2409 void BuildPointerTypeInfo(QualType PointeeTy);
2587 QualType PointeeTy = PointerTy->getPointeeType(); local
2588 const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(PointeeTy);
2593 Qualifiers Quals = PointeeTy.getQualifiers();
3274 void ItaniumRTTIBuilder::BuildPointerTypeInfo(QualType PointeeTy) { argument
3277 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
3306 QualType PointeeTy = Ty->getPointeeType(); local
3310 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
H A DCGDebugInfo.h196 QualType PointeeTy, llvm::DIFile *F);
H A DCGDebugInfo.cpp748 QualType PointeeTy,
753 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
759 return DBuilder.createReferenceType(Tag, getOrCreateType(PointeeTy, Unit),
762 return DBuilder.createPointerType(getOrCreateType(PointeeTy, Unit), Size,
1165 QualType PointeeTy = ThisPtrTy->getPointeeType(); local
1166 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
1169 llvm::DIType *PointeeType = getOrCreateType(PointeeTy, Unit);
746 CreatePointerLikeType(llvm::dwarf::Tag Tag, const Type *Ty, QualType PointeeTy, llvm::DIFile *Unit) argument
/external/clang/lib/AST/
H A DASTContext.cpp5453 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
5454 if (isa<TypedefType>(PointeeTy.getTypePtr())) {
5455 if (const BuiltinType *BT = PointeeTy->getAs<BuiltinType>()) {
5456 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
5457 PointeeTy = UnsignedIntTy;
5459 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
5460 PointeeTy = IntTy;
5634 QualType PointeeTy; local
5641 PointeeTy = PT->getPointeeType();
5643 PointeeTy
5886 QualType PointeeTy = OPT->getPointeeType(); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DDIBuilder.cpp212 DIType DIBuilder::createPointerType(DIType PointeeTy, uint64_t SizeInBits, argument
225 PointeeTy
/external/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp1213 QualType PointeeTy; local
1215 PointeeTy = PT->getPointeeType();
1217 PointeeTy = BPT->getPointeeType();
1218 if ((FPRetType = PointeeTy->getAs<FunctionType>())) {
2938 QualType PointeeTy = PT->getPointeeType(); local
2939 convertToUnqualifiedObjCType(PointeeTy);
2940 T = Context->getPointerType(PointeeTy);
4517 QualType PointeeTy; local
4519 PointeeTy = PT->getPointeeType();
4520 if (const FunctionType *FT = PointeeTy
[all...]
H A DRewriteObjC.cpp1045 QualType PointeeTy; local
1047 PointeeTy = PT->getPointeeType();
1049 PointeeTy = BPT->getPointeeType();
1050 if ((FPRetType = PointeeTy->getAs<FunctionType>())) {

Completed in 607 milliseconds