Home
last modified time | relevance | path

Searched refs:getPointerType (Results 1 – 25 of 80) sorted by relevance

1234

/external/clang/lib/Frontend/Rewrite/
DRewriteModernObjC.cpp509 T = Context->getPointerType(BPT->getPointeeType()); in convertBlockPointerToFunctionPointer()
536 T = Context->getPointerType(T); in convertToUnqualifiedObjCType()
866 QualType PtrStructIMPL = Context->getPointerType(Context->getTagDeclType(RD)); in getIvarAccessString()
888 QualType castT = Context->getPointerType(IvarT); in getIvarAccessString()
1271 selfTy = Context->getPointerType(selfTy); in RewriteObjCMethodDecl()
2100 QualType pToFunc = Context->getPointerType(msgSendType); in SynthesizeCallToFunctionDecl()
2312 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); in SynthSelGetUidFunctionDecl()
2512 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); in SynthGetClassFunctionDecl()
2542 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); in SynthGetMetaClassFunctionDecl()
2587 Context->getPointerType(DRE->getType()), in RewriteObjCStringLiteral()
[all …]
DRewriteObjC.cpp420 T = Context->getPointerType(BPT->getPointeeType()); in convertBlockPointerToFunctionPointer()
443 T = Context->getPointerType(T); in convertToUnqualifiedObjCType()
1103 selfTy = Context->getPointerType(selfTy); in RewriteObjCMethodDecl()
2015 QualType pToFunc = Context->getPointerType(msgSendType); in SynthesizeCallToFunctionDecl()
2223 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); in SynthSelGetUidFunctionDecl()
2354 QualType argT = Context->getPointerType(Context->getTagDeclType(RD)); in SynthMsgSendSuperFunctionDecl()
2397 QualType argT = Context->getPointerType(Context->getTagDeclType(RD)); in SynthMsgSendSuperStretFunctionDecl()
2436 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); in SynthGetClassFunctionDecl()
2466 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); in SynthGetMetaClassFunctionDecl()
2511 Context->getPointerType(DRE->getType()), in RewriteObjCStringLiteral()
[all …]
/external/clang/lib/StaticAnalyzer/Core/
DSValBuilder.cpp125 T = LCtx->getAnalysisDeclContext()->getASTContext().getPointerType(ExType); in conjureSymbolVal()
242 QualType PT = getContext().getPointerType(QualType(T, 0)); in getCXXThis()
502 if (shouldBeModeledWithNoOp(Context, Context.getPointerType(castTy), in evalCast()
503 Context.getPointerType(originalTy))) in evalCast()
DExprEngineC.cpp379 resultType = getContext().getPointerType(resultType); in VisitCast()
431 resultType = getContext().getPointerType(resultType); in VisitCast()
530 Ty = getContext().getPointerType(Ty); in VisitDeclStmt()
/external/swiftshader/third_party/subzero/src/
DIceTypes.cpp180 Type getPointerType() { return TargetLowering::getPointerType(); } in getPointerType() function
DIceTypeConverter.cpp54 return getPointerType(); in convertToIceTypeOther()
DIceTypes.h88 Type getPointerType();
DIceTargetLoweringX8632.cpp52 ::Ice::Type getPointerType() { in getPointerType() function
53 return ::Ice::X8632::TargetX8632::getPointerType(); in getPointerType()
DIceTargetLowering.cpp61 ::Ice::Type getPointerType(); \
302 ::Ice::Type TargetLowering::getPointerType() { in getPointerType() function in Ice::TargetLowering
309 return ::X::getPointerType(); in getPointerType()
DIceELFSection.cpp48 const SizeT RelocAddrSize = typeWidthInBytes(getPointerType()); in appendRelocationOffset()
DIceConverter.cpp379 Ice::Variable *Dest = mapValueToIceVar(Instr, Ice::getPointerType()); in convertIntToPtrInstruction()
593 Ice::Variable *Dest = mapValueToIceVar(Instr, Ice::getPointerType()); in convertAllocaInstruction()
785 Ice::getPointerType()); in addGlobalInitializer()
DIceTargetLoweringX8664.cpp44 ::Ice::Type getPointerType() { in getPointerType() function
45 return ::Ice::X8664::TargetX8664::getPointerType(); in getPointerType()
DWasmTranslator.cpp285 auto *WasmMemoryV = makeVariable(getPointerType()); in Start()
1380 return Ctx->getConstantZero(getPointerType()); in sanitizeAddress()
1385 auto *Addr = makeVariable(Ice::getPointerType()); in sanitizeAddress()
1414 auto RealAddrV = Func->makeVariable(Ice::getPointerType()); in sanitizeAddress()
/external/skia/src/sksl/
DSkSLSPIRVCodeGenerator.h109 SpvId getPointerType(const Type& type, SpvStorageClass_ storageClass);
111 SpvId getPointerType(const Type& type, const MemoryLayout& layout,
DSkSLSPIRVCodeGenerator.cpp1168 parameterTypes.push_back(this->getPointerType(function.fParameters[i]->fType, in getFunctionType()
1186 SpvId SPIRVCodeGenerator::getPointerType(const Type& type, SpvStorageClass_ storageClass) { in getPointerType() function in SkSL::SPIRVCodeGenerator
1187 return this->getPointerType(type, fDefaultLayout, storageClass); in getPointerType()
1190 SpvId SPIRVCodeGenerator::getPointerType(const Type& type, const MemoryLayout& layout, in getPointerType() function in SkSL::SPIRVCodeGenerator
1440 this->getPointerType(c.fArguments[i]->fType, in writeFunctionCall()
1852 this->writeWord(this->getPointerType(expr.fType, get_storage_class(expr)), out); in getLValue()
1872 this->getPointerType(swizzle.fType, in getLValue()
1898 SpvId type = this->getPointerType(expr.fType, SpvStorageClassFunction); in getLValue()
1950 this->writeWord(this->getPointerType(*fContext.fFloat_Type, SpvStorageClassUniform), out); in writeVariableReference()
2422 this->writeInstruction(SpvOpVariable, this->getPointerType(t.fType, SpvStorageClassFunction), in writeTernaryExpression()
[all …]
/external/clang/lib/Analysis/
DFormatString.cpp460 Res = C.getPointerType(C.CharTy); in getRepresentativeType()
463 Res = C.getPointerType(C.getWideCharType()); in getRepresentativeType()
478 Res = C.getPointerType(Res); in getRepresentativeType()
DPrintfFormatString.cpp521 return ArgType(Ctx.getPointerType(Ctx.UnsignedShortTy.withConst()), in getArgType()
530 return ArgType(Ctx.getPointerType(Ctx.UnsignedShortTy.withConst()), in getArgType()
/external/clang/lib/AST/
DASTContext.cpp1117 VoidPtrTy = getPointerType(VoidTy); in InitBuiltinTypes()
1389 T = getPointerType(RT->getPointeeType()); in getDeclAlign()
2207 return getPointerType(ResultType); in getObjCGCQualType()
2345 QualType ASTContext::getPointerType(QualType T) const { in getPointerType() function in ASTContext
2359 Canonical = getPointerType(getCanonicalType(T)); in getPointerType()
2410 Decayed = getPointerType(T); in getDecayedType()
2674 result = getPointerType(getVariableArrayDecayedType( in getVariableArrayDecayedType()
4181 Result = getPointerType(QualType(Ty, 0)); in getCanonicalParamType()
4590 QualType PtrTy = getPointerType(PrettyArrayType->getElementType()); in getArrayDecayedType()
4898 FieldTypes[0] = getPointerType(IntTy.withConst()); in getCFConstantStringDecl()
[all …]
/external/clang/lib/Sema/
DSemaFixItUtils.cpp136 CanConvert = CompareTypes(S.Context.getPointerType(FromQTy), ToQTy, in tryToFixConversion()
DSemaCast.cpp559 = Context.getPointerType(Context.getQualifiedType(SrcConstruct, *i1)); in CastsAwayConstness()
561 = Context.getPointerType(Context.getQualifiedType(DestConstruct, *i2)); in CastsAwayConstness()
1593 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType()); in TryConstCast()
1594 SrcType = Self.Context.getPointerType(SrcType); in TryConstCast()
1928 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType()); in TryReinterpretCast()
1929 SrcType = Self.Context.getPointerType(SrcType); in TryReinterpretCast()
DSemaExprCXX.cpp916 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
951 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
958 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
988 ThisTy = Context.getPointerType(ClassTy); in getCurrentThisType()
1019 = S.Context.getPointerType( in CXXThisScopeRAII()
1046 AdjustedThisTy = Context.getPointerType(CaptureThisFieldTy); in captureThis()
1591 QualType ResultType = Context.getPointerType(AllocType); in BuildCXXNew()
2348 QualType VoidPtr = Context.getPointerType(Context.VoidTy); in DeclareGlobalNewDelete()
3417 FromType = Context.getPointerType(FromType); in PerformImplicitConversion()
4860 QualType UseType = isIndirect ? Context.getPointerType(Class) : Class; in CheckPointerToMemberOperands()
[all …]
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp744 QualType PtrTy = C.getPointerType(Ty).withRestrict(); in emitCombinerOrInitializer()
1572 CGM.getContext().getPointerType(getTgtBinaryDescriptorQTy()); in createRuntimeFunction()
1582 CGM.getContext().getPointerType(getTgtBinaryDescriptorQTy()); in createRuntimeFunction()
3059 KmpRoutineEntryPtrQTy = C.getPointerType( in emitKmpRoutineEntryT()
3091 addFieldToRecordDecl(C, RD, C.getPointerType(C.CharTy)); in getTgtOffloadEntryQTy()
3117 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy())); in getTgtDeviceImageQTy()
3118 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy())); in getTgtDeviceImageQTy()
3141 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtDeviceImageQTy())); in getTgtBinaryDescriptorQTy()
3142 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy())); in getTgtBinaryDescriptorQTy()
3143 addFieldToRecordDecl(C, RD, C.getPointerType(getTgtOffloadEntryQTy())); in getTgtBinaryDescriptorQTy()
[all …]
DCGDebugInfo.cpp806 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); in CreateType()
811 FType = CGM.getContext().getPointerType(Ty->getPointeeType()); in CreateType()
814 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); in CreateType()
2165 getOrCreateInstanceMethodType(CGM.getContext().getPointerType(QualType( in CreateType()
2821 ResultTy = CGM.getContext().getPointerType( in getOrCreateFunctionType()
3059 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); in EmitTypeForVarWithBlocksAttr()
3068 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); in EmitTypeForVarWithBlocksAttr()
3079 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); in EmitTypeForVarWithBlocksAttr()
3381 auto FnPtrType = CGM.getContext().getPointerType(FnTy->desugar()); in EmitDeclareOfBlockLiteralArgVariable()
3386 "__descriptor", C.getPointerType(block.NeedsCopyDispose in EmitDeclareOfBlockLiteralArgVariable()
/external/swiftshader/src/Reactor/
DNucleus.hpp167 static Type *getPointerType(Type *elementType);
/external/clang/lib/Tooling/Core/
DQualTypeNames.cpp392 QT = Ctx.getPointerType(QT); in getFullyQualifiedType()

1234