Home
last modified time | relevance | path

Searched refs:VarType (Results 1 – 13 of 13) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DPrettyVariableDumper.cpp45 auto VarType = Var.getType(); in start() local
47 uint64_t Length = VarType->getRawSymbol().getLength(); in start()
57 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
60 if (isa<PDBSymbolTypeEnum>(*VarType)) in start()
64 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
74 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
82 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
/openbsd-src/gnu/llvm/llvm/lib/Target/BPF/
H A DBPFPreserveDIType.cpp108 IntegerType *VarType = Type::getInt64Ty(BB->getContext()); in BPFPreserveDITypeImpl() local
112 *M, VarType, false, GlobalVariable::ExternalLinkage, nullptr, GVName); in BPFPreserveDITypeImpl()
H A DBPFAbstractMemberAccess.cpp1093 IntegerType *VarType; in transformGEPChain() local
1095 VarType = Type::getInt32Ty(BB->getContext()); // 32bit return value in transformGEPChain()
1097 VarType = Type::getInt64Ty(BB->getContext()); // 64bit ptr or enum value in transformGEPChain()
1099 GV = new GlobalVariable(*M, VarType, false, GlobalVariable::ExternalLinkage, in transformGEPChain()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGBlocks.cpp2277 QualType VarType; member in __anon3298161d0911::CXXByrefHelpers
2283 : BlockByrefHelpers(alignment), VarType(type), CopyExpr(copyExpr) {} in CXXByrefHelpers()
2294 CGF.PushDestructorCleanup(VarType, field); in emitDispose()
2299 id.AddPointer(VarType.getCanonicalType().getAsOpaquePtr()); in profileImpl()
2306 QualType VarType; member in __anon3298161d0911::NonTrivialCStructByrefHelpers
2310 : BlockByrefHelpers(alignment), VarType(type) {} in NonTrivialCStructByrefHelpers()
2314 CGF.callCStructMoveConstructor(CGF.MakeAddrLValue(destField, VarType), in emitCopy()
2315 CGF.MakeAddrLValue(srcField, VarType)); in emitCopy()
2319 return VarType.isDestructedType(); in needsDispose()
2324 CGF.pushDestroy(VarType.isDestructedType(), field, VarType); in emitDispose()
[all …]
H A DCGOpenMPRuntime.h1099 QualType VarType,
1929 QualType VarType,
H A DCodeGenModule.cpp5129 QualType VarType = D->getType(); in isVarDeclStrongDefinition() local
5130 if (Context.isAlignmentRequired(VarType)) in isVarDeclStrongDefinition()
5133 if (const auto *RT = VarType->getAs<RecordType>()) { in isVarDeclStrongDefinition()
H A DCGOpenMPRuntime.cpp1965 QualType VarType, in getAddrOfArtificialThreadPrivate() argument
1968 llvm::Type *VarLVType = CGF.ConvertTypeForMem(VarType); in getAddrOfArtificialThreadPrivate()
1975 CGM.getContext().getTypeAlignInChars(VarType)); in getAddrOfArtificialThreadPrivate()
1982 CGF.Builder.CreateIntCast(CGF.getTypeSize(VarType), CGM.SizeTy, in getAddrOfArtificialThreadPrivate()
1994 VarLVType, CGM.getContext().getTypeAlignInChars(VarType)); in getAddrOfArtificialThreadPrivate()
12526 CodeGenFunction &CGF, QualType VarType, StringRef Name) { in getAddrOfArtificialThreadPrivate() argument
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp283 VariadicType VarType; member
407 IO.mapOptional("VariadicType", Propagation.VarType); in mapping()
484 bool IsSrcVariadic = P.VarType == TaintConfiguration::VariadicType::Src; in parseConfig()
485 bool IsDstVariadic = P.VarType == TaintConfiguration::VariadicType::Dst; in parseConfig()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DODRDiagsEmitter.cpp293 VarType, in diagnoseSubMismatchVar() enumerator
322 DiagError(VarType) << FirstName << FirstType; in diagnoseSubMismatchVar()
323 DiagNote(VarType) << SecondName << SecondType; in diagnoseSubMismatchVar()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaOpenMP.cpp8637 QualType VarType = LCDecl->getType().getNonReferenceType(); in buildNumIterations() local
8638 if (!VarType->isIntegerType() && !VarType->isPointerType() && in buildNumIterations()
8805 Step, VarType, TestIsStrictOp, in buildNumIterations()
8813 bool UseVarType = VarType->hasIntegerRepresentation() && in buildNumIterations()
8814 C.getTypeSize(Type) > C.getTypeSize(VarType); in buildNumIterations()
8817 UseVarType ? C.getTypeSize(VarType) : C.getTypeSize(Type); in buildNumIterations()
8818 bool IsSigned = UseVarType ? VarType->hasSignedIntegerRepresentation() in buildNumIterations()
8880 QualType VarType = LCDecl->getType().getNonReferenceType(); in buildMinMaxValues() local
8883 Step, VarType, TestIsStrictOp, in buildMinMaxValues()
8907 if (VarType->isAnyPointerType() && in buildMinMaxValues()
[all …]
H A DSemaStmt.cpp1167 QualType VarType = VD->getType(); in ShouldDiagnoseSwitchCaseNotInEnum() local
1169 if (VD->hasGlobalStorage() && VarType.isConstQualified() && in ShouldDiagnoseSwitchCaseNotInEnum()
1170 S.Context.hasSameUnqualifiedType(EnumType, VarType)) in ShouldDiagnoseSwitchCaseNotInEnum()
H A DSemaDeclCXX.cpp14029 QualType VarType; member in __anonb2dcaa773711::RefBuilder
14033 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc)); in build()
14036 RefBuilder(VarDecl *Var, QualType VarType) in RefBuilder() argument
14037 : Var(Var), VarType(VarType) {} in RefBuilder()
H A DSemaDecl.cpp7386 QualType VarType = VD->getType().getCanonicalType(); in emitReadOnlyPlacementAttrWarning() local
7394 if (VarType->isArrayType()) { in emitReadOnlyPlacementAttrWarning()
7396 VarType = S.getASTContext().getBaseElementType(VarType); in emitReadOnlyPlacementAttrWarning()
7399 const RecordDecl *RD = VarType->getAsRecordDecl(); in emitReadOnlyPlacementAttrWarning()