Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFPreserveDIType.cpp110 IntegerType *VarType = Type::getInt64Ty(BB->getContext()); in BPFPreserveDITypeImpl() local
114 *M, VarType, false, GlobalVariable::ExternalLinkage, nullptr, GVName); in BPFPreserveDITypeImpl()
H A DBPFAbstractMemberAccess.cpp1076 IntegerType *VarType; in transformGEPChain() local
1078 VarType = Type::getInt32Ty(BB->getContext()); // 32bit return value in transformGEPChain()
1080 VarType = Type::getInt64Ty(BB->getContext()); // 64bit ptr or enum value in transformGEPChain()
1082 GV = new GlobalVariable(*M, VarType, false, GlobalVariable::ExternalLinkage, in transformGEPChain()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.cpp2258 QualType VarType; member in __anonc28374260911::CXXByrefHelpers
2264 : BlockByrefHelpers(alignment), VarType(type), CopyExpr(copyExpr) {} in CXXByrefHelpers()
2275 CGF.PushDestructorCleanup(VarType, field); in emitDispose()
2280 id.AddPointer(VarType.getCanonicalType().getAsOpaquePtr()); in profileImpl()
2287 QualType VarType; member in __anonc28374260911::NonTrivialCStructByrefHelpers
2291 : BlockByrefHelpers(alignment), VarType(type) {} in NonTrivialCStructByrefHelpers()
2295 CGF.callCStructMoveConstructor(CGF.MakeAddrLValue(destField, VarType), in emitCopy()
2296 CGF.MakeAddrLValue(srcField, VarType)); in emitCopy()
2300 return VarType.isDestructedType(); in needsDispose()
2305 CGF.pushDestroy(VarType.isDestructedType(), field, VarType); in emitDispose()
[all …]
H A DCGOpenMPRuntime.h1111 QualType VarType,
1957 QualType VarType,
H A DCGOpenMPRuntime.cpp1797 QualType VarType, in getAddrOfArtificialThreadPrivate() argument
1800 llvm::Type *VarLVType = CGF.ConvertTypeForMem(VarType); in getAddrOfArtificialThreadPrivate()
1807 CGM.getContext().getTypeAlignInChars(VarType)); in getAddrOfArtificialThreadPrivate()
1814 CGF.Builder.CreateIntCast(CGF.getTypeSize(VarType), CGM.SizeTy, in getAddrOfArtificialThreadPrivate()
1826 VarLVType, CGM.getContext().getTypeAlignInChars(VarType)); in getAddrOfArtificialThreadPrivate()
12102 CodeGenFunction &CGF, QualType VarType, StringRef Name) { in getAddrOfArtificialThreadPrivate() argument
H A DCodeGenModule.cpp5721 QualType VarType = D->getType(); in isVarDeclStrongDefinition() local
5722 if (Context.isAlignmentRequired(VarType)) in isVarDeclStrongDefinition()
5725 if (const auto *RT = VarType->getAs<RecordType>()) { in isVarDeclStrongDefinition()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp333 VariadicType VarType; member
455 IO.mapOptional("VariadicType", Propagation.VarType); in mapping()
533 bool IsSrcVariadic = P.VarType == TaintConfiguration::VariadicType::Src; in parseConfig()
534 bool IsDstVariadic = P.VarType == TaintConfiguration::VariadicType::Dst; in parseConfig()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp8595 QualType VarType = LCDecl->getType().getNonReferenceType(); in buildNumIterations() local
8596 if (!VarType->isIntegerType() && !VarType->isPointerType() && in buildNumIterations()
8775 Step, VarType, TestIsStrictOp, in buildNumIterations()
8783 bool UseVarType = VarType->hasIntegerRepresentation() && in buildNumIterations()
8784 C.getTypeSize(Type) > C.getTypeSize(VarType); in buildNumIterations()
8787 UseVarType ? C.getTypeSize(VarType) : C.getTypeSize(Type); in buildNumIterations()
8788 bool IsSigned = UseVarType ? VarType->hasSignedIntegerRepresentation() in buildNumIterations()
8850 QualType VarType = LCDecl->getType().getNonReferenceType(); in buildMinMaxValues() local
8853 Step, VarType, TestIsStrictOp, in buildMinMaxValues()
8877 if (VarType->isAnyPointerType() && in buildMinMaxValues()
[all …]
H A DSemaStmt.cpp1198 QualType VarType = VD->getType(); in ShouldDiagnoseSwitchCaseNotInEnum() local
1200 if (VD->hasGlobalStorage() && VarType.isConstQualified() && in ShouldDiagnoseSwitchCaseNotInEnum()
1201 S.Context.hasSameUnqualifiedType(EnumType, VarType)) in ShouldDiagnoseSwitchCaseNotInEnum()
H A DSemaDeclCXX.cpp14340 QualType VarType; member in __anon42c808803911::RefBuilder
14344 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc)); in build()
14347 RefBuilder(VarDecl *Var, QualType VarType) in RefBuilder() argument
14348 : Var(Var), VarType(VarType) {} in RefBuilder()
H A DSemaDecl.cpp7330 QualType VarType = VD->getType().getCanonicalType(); in emitReadOnlyPlacementAttrWarning() local
7338 if (VarType->isArrayType()) { in emitReadOnlyPlacementAttrWarning()
7340 VarType = S.getASTContext().getBaseElementType(VarType); in emitReadOnlyPlacementAttrWarning()
7343 const RecordDecl *RD = VarType->getAsRecordDecl(); in emitReadOnlyPlacementAttrWarning()