| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| PrettyVariableDumper.cpp | 177 auto PointeeType = Symbol.getPointeeType(); 178 if (!PointeeType) 180 PointeeType->dump(*this); 181 if (auto FuncSig = unique_dyn_cast<PDBSymbolTypeFunctionSig>(PointeeType)) { 186 } else if (isa<PDBSymbolTypeArray>(PointeeType)) { 200 auto PointeeType = Symbol.getPointeeType(); 201 assert(PointeeType); 202 if (!PointeeType) 204 if (isa<PDBSymbolTypeFunctionSig>(PointeeType) || 205 isa<PDBSymbolTypeArray>(PointeeType)) { [all...] |
| PrettyTypedefDumper.cpp | 58 auto PointeeType = Symbol.getPointeeType(); 59 if (auto FuncSig = unique_dyn_cast<PDBSymbolTypeFunctionSig>(PointeeType)) { 66 PointeeType->dump(*this);
|
| PrettyFunctionDumper.cpp | 243 auto PointeeType = Symbol.getPointeeType(); 244 if (!PointeeType) 247 if (auto FuncSig = unique_dyn_cast<PDBSymbolTypeFunctionSig>(PointeeType)) { 257 PointeeType->dump(*this);
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| MallocSizeofChecker.cpp | 186 QualType PointeeType = CastedType->getPointeeType(); 187 if (PointeeType->isVoidType()) 202 if (typesCompatible(BR.getContext(), PointeeType, SizeofType)) 207 if (compatibleWithArrayType(BR.getContext(), PointeeType, SizeofType)) 228 << PointeeType.getAsString() << "', which is incompatible with "
|
| MallocChecker.cpp | 1362 QualType Result = T, PointeeType = T->getPointeeType(); 1363 while (!PointeeType.isNull()) { 1364 Result = PointeeType; 1365 PointeeType = PointeeType->getPointeeType();
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| SmallSet.h | 255 template <typename PointeeType, unsigned N> 256 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CodeGenTypes.cpp | 634 llvm::Type *PointeeType = ConvertTypeForMem(ETy); 636 ResultType = llvm::PointerType::get(PointeeType, AS); 642 llvm::Type *PointeeType = ConvertTypeForMem(ETy); 643 if (PointeeType->isVoidTy()) 644 PointeeType = llvm::Type::getInt8Ty(getLLVMContext()); 646 unsigned AS = PointeeType->isFunctionTy() 650 ResultType = llvm::PointerType::get(PointeeType, AS); 747 llvm::Type *PointeeType = CGM.getLangOpts().OpenCL 751 ResultType = llvm::PointerType::get(PointeeType, AS);
|
| MicrosoftCXXABI.cpp | 3834 QualType PointeeType = T->getPointeeType(); 3835 if (!PointeeType.isNull()) { 3836 IsConst = PointeeType.isConstQualified(); 3837 IsVolatile = PointeeType.isVolatileQualified(); 3838 IsUnaligned = PointeeType.getQualifiers().hasUnaligned(); 3844 T = Context.getMemberPointerType(PointeeType.getUnqualifiedType(), 3850 T = Context.getPointerType(PointeeType.getUnqualifiedType()); 4123 QualType PointeeType = T; 4125 PointeeType = T->getPointeeType(); 4126 if (const CXXRecordDecl *RD = PointeeType->getAsCXXRecordDecl()) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| MicrosoftMangle.cpp | 397 void manglePointerExtQualifiers(Qualifiers Quals, QualType PointeeType); 2024 QualType PointeeType) { 2026 bool is64Bit = PointeeType.isNull() ? PointersAre64Bit : 2027 is64BitPointer(PointeeType.getQualifiers()); 2028 if (is64Bit && (PointeeType.isNull() || !PointeeType->isFunctionType())) 2035 (!PointeeType.isNull() && PointeeType.getLocalQualifiers().hasUnaligned())) 2536 manglePointerExtQualifiers(Quals, /*PointeeType=*/QualType()); 2906 QualType PointeeType = T->getPointeeType() [all...] |
| Type.cpp | 265 QualType PointeeType, 271 PointeeType->getDependence() | 274 Context(Context), AddrSpaceExpr(AddrSpaceExpr), PointeeType(PointeeType), 279 QualType PointeeType, 281 ID.AddPointer(PointeeType.getAsOpaquePtr()); 893 QualType pointeeType = recurse(T->getPointeeType()); 894 if (pointeeType.isNull()) 897 if (pointeeType.getAsOpaquePtr() == T->getPointeeType().getAsOpaquePtr()) 900 return Ctx.getPointerType(pointeeType); [all...] |
| ASTContext.cpp | 3329 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); 3330 Canonical = getLValueReferenceType(getCanonicalType(PointeeType)); 3365 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); 3366 Canonical = getRValueReferenceType(getCanonicalType(PointeeType)); 4122 QualType ASTContext::getDependentAddressSpaceType(QualType PointeeType, 4127 QualType canonPointeeType = getCanonicalType(PointeeType); 4145 if (canonPointeeType == PointeeType && 4151 DependentAddressSpaceType(*this, PointeeType, QualType(canonTy, 0),
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| Type.h | 2637 QualType PointeeType; 2641 PointeeType(Pointee) {} 2644 QualType getPointeeType() const { return PointeeType; } 2718 QualType PointeeType; 2722 PointeeType(Pointee) {} 2726 QualType getPointeeType() const { return PointeeType; } 2746 QualType PointeeType; 2752 PointeeType(Referencee) { 2761 QualType getPointeeTypeAsWritten() const { return PointeeType; } 2767 T = T->PointeeType->castAs<ReferenceType>() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| Instructions.h | 927 inline GetElementPtrInst(Type *PointeeType, Value *Ptr, 930 inline GetElementPtrInst(Type *PointeeType, Value *Ptr, 943 static GetElementPtrInst *Create(Type *PointeeType, Value *Ptr, 948 if (!PointeeType) { 949 PointeeType = 953 ->isOpaqueOrPointeeTypeMatches(PointeeType)); 955 return new (Values) GetElementPtrInst(PointeeType, Ptr, IdxList, Values, 959 static GetElementPtrInst *Create(Type *PointeeType, Value *Ptr, 964 if (!PointeeType) { 965 PointeeType [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| TargetTransformInfoImpl.h | 51 getGEPCost(Type *PointeeType, const Value *Ptr, 856 getGEPCost(Type *PointeeType, const Value *Ptr, 859 assert(PointeeType && Ptr && "can't get GEPCost of nullptr"); 862 PointeeType && 871 auto GTI = gep_type_begin(PointeeType, Operands);
|
| TargetTransformInfo.h | 268 getGEPCost(Type *PointeeType, const Value *Ptr, 1443 virtual InstructionCost getGEPCost(Type *PointeeType, const Value *Ptr, 1742 getGEPCost(Type *PointeeType, const Value *Ptr, 1745 return Impl.getGEPCost(PointeeType, Ptr, Operands);
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| TreeTransform.h | 752 QualType RebuildPointerType(QualType PointeeType, SourceLocation Sigil); 758 QualType RebuildBlockPointerType(QualType PointeeType, SourceLocation Sigil); 777 QualType RebuildMemberPointerType(QualType PointeeType, QualType ClassType, 804 QualType RebuildObjCObjectPointerType(QualType PointeeType, 917 QualType RebuildDependentAddressSpaceType(QualType PointeeType, 4928 QualType PointeeType 4930 if (PointeeType.isNull()) 4934 if (PointeeType->getAs<ObjCObjectType>()) { 4939 Result = SemaRef.Context.getObjCObjectPointerType(PointeeType); 4947 PointeeType != TL.getPointeeLoc().getType()) [all...] |
| SemaType.cpp | 2059 static QualType deduceOpenCLPointeeAddrSpace(Sema &S, QualType PointeeType) { 2060 if (!PointeeType->isUndeducedAutoType() && !PointeeType->isDependentType() && 2061 !PointeeType->isSamplerT() && 2062 !PointeeType.hasAddressSpace()) 2063 PointeeType = S.getASTContext().getAddrSpaceQualType( 2064 PointeeType, S.getLangOpts().OpenCLGenericAddressSpace 2067 return PointeeType; 7159 const Type *pointeeType = nullptr; 7161 pointeeType = desugared->getArrayElementTypeNoTypeQual() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| BTFDebug.h | 72 void setPointeeType(uint32_t PointeeType);
|
| BTFDebug.cpp | 93 void BTFTypeDerived::setPointeeType(uint32_t PointeeType) { 94 BTFType.Type = PointeeType;
|
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/ |
| debuginfo_ocaml.c | 596 value Builder, LLVMMetadataRef PointeeType, LLVMMetadataRef ClassType, 600 DIBuilder_val(Builder), PointeeType, ClassType, 608 (LLVMMetadataRef)argv[1], // PointeeType
|
| /src/external/apache2/llvm/dist/llvm/include/llvm-c/ |
| DebugInfo.h | 775 * \param PointeeType Type pointed to by this pointer. 783 LLVMMetadataRef PointeeType,
|
| /src/external/apache2/llvm/dist/clang/lib/Edit/ |
| RewriteObjCFoundationAPI.cpp | 1146 QualType PointeeType = PT->getPointeeType(); 1147 if (Ctx.hasSameUnqualifiedType(PointeeType, Ctx.CharTy)) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| TargetTransformInfo.cpp | 210 TargetTransformInfo::getGEPCost(Type *PointeeType, const Value *Ptr, 213 return TTIImpl->getGEPCost(PointeeType, Ptr, Operands, CostKind);
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| DebugInfo.cpp | 1298 LLVMMetadataRef PointeeType, 1304 unwrapDI<DIType>(PointeeType),
|
| /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
| BitcodeReader.cpp | 2672 Type *PointeeType = nullptr; 2675 PointeeType = getTypeByID(Record[OpNum++]); 2702 if (!PointeeType) 2703 PointeeType = ImplicitPointeeType; 2704 else if (PointeeType != ImplicitPointeeType) 2709 V = ConstantExpr::getGetElementPtr(PointeeType, Elts[0], Indices,
|