HomeSort by: relevance | last modified time | path
    Searched refs:PointeeTy (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
Store.cpp 96 QualType PointeeTy = CastToTy->getPointeeType();
97 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
142 return MakeElementRegion(cast<SubRegion>(R), PointeeTy);
181 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
187 return MakeElementRegion(cast<SubRegion>(baseR), PointeeTy);
191 // if the offset can be evenly divided by sizeof(PointeeTy). If so,
200 // We can only compute sizeof(PointeeTy) if it is a complete type.
201 if (!PointeeTy->isIncompleteType()) {
203 CharUnits pointeeTySize = Ctx.getTypeSizeInChars(PointeeTy);
206 // ElementRegion (with elementType == PointeeTy) directly on top o
    [all...]
CallEvent.cpp 123 QualType PointeeTy = PT->getPointeeType();
124 if (PointeeTy.isConstQualified())
126 return PointeeTy->isVoidType();
227 QualType PointeeTy = Ty->getPointeeType();
228 if (PointeeTy == QualType())
230 if (!PointeeTy.isConstQualified())
232 if (PointeeTy->isAnyPointerType())
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DerivedTypes.h 638 Type *PointeeTy;
665 return PointeeTy;
668 bool isOpaque() const { return !PointeeTy; }
684 return isOpaque() || PointeeTy == Ty;
DIBuilder.h 215 /// \param PointeeTy Type pointed by this pointer.
220 DIDerivedType *createPointerType(DIType *PointeeTy, uint64_t SizeInBits,
227 /// \param PointeeTy Type pointed to by this pointer.
232 createMemberPointerType(DIType *PointeeTy, DIType *Class,
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
BodyFarm.cpp 623 QualType PointeeTy = PT->getPointeeType();
633 PointeeTy),
634 PointeeTy),
643 PointeeTy),
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Type.cpp 717 : Type(E->getContext(), PointerTyID), PointeeTy(E) {
718 ContainedTys = &PointeeTy;
724 : Type(C, PointerTyID), PointeeTy(nullptr) {
DIBuilder.cpp 282 DIType *PointeeTy,
289 nullptr, 0, nullptr, PointeeTy, SizeInBits,
294 DIDerivedType *DIBuilder::createMemberPointerType(DIType *PointeeTy,
300 nullptr, 0, nullptr, PointeeTy, SizeInBits,
ConstantFold.cpp 2357 Constant *llvm::ConstantFoldGetElementPtr(Type *PointeeTy, Constant *C,
2364 PointeeTy, C, makeArrayRef((Value *const *)Idxs.data(), Idxs.size()));
2390 Type *Ty = GetElementPtrInst::getIndexedType(PointeeTy, Idxs);
2533 Type *Ty = PointeeTy;
2535 auto GEPIter = gep_type_begin(PointeeTy, Idxs);
2659 return ConstantExpr::getGetElementPtr(PointeeTy, C, NewIdxs, InBounds,
2668 return ConstantExpr::getGetElementPtr(PointeeTy, C, Idxs,
DebugInfo.cpp 1144 LLVMDIBuilderRef Builder, LLVMMetadataRef PointeeTy,
1147 return wrap(unwrap(Builder)->createPointerType(unwrapDI<DIType>(PointeeTy),
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountChecker.cpp 559 QualType PointeeTy = ArgRegion->getValueType();
570 RefVal::makeNotOwned(AE.getObjKind(), PointeeTy));
574 RefVal::makeOwned(ObjKind::OS, PointeeTy));
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
debuginfo_ocaml.c 487 value Builder, LLVMMetadataRef PointeeTy, value SizeInBits,
490 DIBuilder_val(Builder), PointeeTy, (uint64_t)Int_val(SizeInBits),
499 (LLVMMetadataRef)argv[1], // PointeeTy
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
ItaniumCXXABI.cpp 3071 void BuildPointerTypeInfo(QualType PointeeTy);
3307 QualType PointeeTy = PointerTy->getPointeeType();
3308 const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(PointeeTy);
3313 Qualifiers Quals = PointeeTy.getQualifiers();
4100 void ItaniumRTTIBuilder::BuildPointerTypeInfo(QualType PointeeTy) {
4104 unsigned Flags = extractPBaseFlags(CGM.getContext(), PointeeTy);
4114 ItaniumRTTIBuilder(CXXABI).BuildTypeInfo(PointeeTy);
4122 QualType PointeeTy = Ty->getPointeeType();
4127 unsigned Flags = extractPBaseFlags(CGM.getContext(), PointeeTy);
4141 ItaniumRTTIBuilder(CXXABI).BuildTypeInfo(PointeeTy);
    [all...]
CGOpenMPRuntimeGPU.cpp 3932 QualType PointeeTy = cast<ReferenceType>(NonQualTy)->getPointeeType();
3935 PointeeTy = CGM.getContext().getAddrSpaceQualType(PointeeTy,
3938 PointeeTy.isConstant(CGM.getContext())) {
3939 PointeeTy = CGM.getContext().getAddrSpaceQualType(PointeeTy,
3943 ArgType = CGM.getContext().getPointerType(PointeeTy);
CGDebugInfo.h 243 QualType PointeeTy, llvm::DIFile *F);
CGDebugInfo.cpp 1129 QualType PointeeTy,
1134 unsigned AddressSpace = CGM.getContext().getTargetAddressSpace(PointeeTy);
1142 return DBuilder.createReferenceType(Tag, getOrCreateType(PointeeTy, Unit),
1145 return DBuilder.createPointerType(getOrCreateType(PointeeTy, Unit), Size,
1625 QualType PointeeTy = ThisPtrTy->getPointeeType();
1626 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
1629 llvm::DIType *PointeeType = getOrCreateType(PointeeTy, Unit);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 10096 QualType PointeeTy;
10098 PointeeTy = DestPtrTy->getPointeeType();
10102 if (PointeeTy->isVoidType())
10127 if (!PointeeTy->isIncompleteType() &&
10128 (Context.getTypeSize(PointeeTy) == Context.getCharWidth()))
10151 << PointeeTy
10168 if (PointeeTy->isRecordType() &&
10173 << PointeeTy << Dest->getSourceRange()
10179 PointeeTy = DestTy;
10182 if (PointeeTy == QualType()
    [all...]
Sema.cpp 2294 QualType PointeeTy = ExprTy->getPointeeType();
2295 if (!PointeeTy.isNull())
2296 FunTy = PointeeTy->getAs<FunctionType>();
SemaOverload.cpp 7878 QualType PointeeTy;
7883 PointeeTy = PTy->getPointeeType();
7886 PointeeTy = PointerTy->getPointeeType();
7893 if (PointeeTy->isArrayType())
7896 unsigned BaseCVR = PointeeTy.getCVRQualifiers();
7910 (!(PointeeTy->isAnyPointerType() || PointeeTy->isReferenceType()))))
7914 QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
7949 QualType PointeeTy = PointerTy->getPointeeType();
7954 if (PointeeTy->isArrayType()
    [all...]
SemaExpr.cpp 10408 QualType PointeeTy = ResType->getPointeeType();
10410 Loc, PointeeTy,
10431 QualType PointeeTy = ResType->getPointeeType();
10432 if (PointeeTy->isVoidType()) {
10436 if (PointeeTy->isFunctionType()) {
17377 QualType PointeeTy = PT->getPointeeType();
17379 if (!Invalid && PointeeTy->getAs<ObjCObjectPointerType>() &&
17380 PointeeTy.getObjCLifetime() == Qualifiers::OCL_Autoreleasing &&
17381 !S.Context.hasDirectOwnershipQualifier(PointeeTy)) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
AttributorAttributes.cpp 5600 Type *PointeeTy = PrivStructType->getElementType(u)->getPointerTo();
5602 constructPointer(PointeeTy, PrivType, &Base,
5607 Type *PointeeTy = PrivArrayType->getElementType();
5608 Type *PointeePtrTy = PointeeTy->getPointerTo();
5609 uint64_t PointeeTySize = DL.getTypeStoreSize(PointeeTy);
5640 Type *PointeeTy = PrivStructType->getElementType(u);
5642 constructPointer(PointeeTy->getPointerTo(), PrivType, Base,
5644 LoadInst *L = new LoadInst(PointeeTy, Ptr, "", IP);
5649 Type *PointeeTy = PrivArrayType->getElementType();
5650 uint64_t PointeeTySize = DL.getTypeStoreSize(PointeeTy);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 7171 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
7172 if (isa<TypedefType>(PointeeTy.getTypePtr())) {
7173 if (const auto *BT = PointeeTy->getAs<BuiltinType>()) {
7174 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32)
7175 PointeeTy = UnsignedIntTy;
7177 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32)
7178 PointeeTy = IntTy;
7442 QualType PointeeTy;
7449 PointeeTy = PT->getPointeeType();
7451 PointeeTy = T->castAs<ReferenceType>()->getPointeeType()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm-c/
DebugInfo.h 693 * \param PointeeTy Type pointed by this pointer.
701 LLVMDIBuilderRef Builder, LLVMMetadataRef PointeeTy,
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 1215 QualType PointeeTy;
1217 PointeeTy = PT->getPointeeType();
1219 PointeeTy = BPT->getPointeeType();
1220 if ((FPRetType = PointeeTy->getAs<FunctionType>())) {
2940 QualType PointeeTy = PT->getPointeeType();
2941 convertToUnqualifiedObjCType(PointeeTy);
2942 T = Context->getPointerType(PointeeTy);
4520 QualType PointeeTy;
4522 PointeeTy = PT->getPointeeType();
4523 if (const FunctionType *FT = PointeeTy->getAs<FunctionType>())
    [all...]
RewriteObjC.cpp 1049 QualType PointeeTy;
1051 PointeeTy = PT->getPointeeType();
1053 PointeeTy = BPT->getPointeeType();
1054 if ((FPRetType = PointeeTy->getAs<FunctionType>())) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 803 Type *PointeeTy = PtrTy->getElementType();
804 auto Name = solveTypeName(PointeeTy);

Completed in 107 milliseconds

1 2