| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyVariableDumper.cpp | 45 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-14.2/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFPreserveDIType.cpp | 110 IntegerType *VarType = Type::getInt64Ty(BB->getContext()); in BPFPreserveDITypeImpl() local 114 *M, VarType, false, GlobalVariable::ExternalLinkage, nullptr, GVName); in BPFPreserveDITypeImpl()
|
| H A D | BPFAbstractMemberAccess.cpp | 1075 IntegerType *VarType; in transformGEPChain() local 1077 VarType = Type::getInt32Ty(BB->getContext()); // 32bit return value in transformGEPChain() 1079 VarType = Type::getInt64Ty(BB->getContext()); // 64bit ptr or enum value in transformGEPChain() 1081 GV = new GlobalVariable(*M, VarType, false, GlobalVariable::ExternalLinkage, in transformGEPChain()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGBlocks.cpp | 2241 QualType VarType; member in __anon460c559c0911::CXXByrefHelpers 2247 : BlockByrefHelpers(alignment), VarType(type), CopyExpr(copyExpr) {} in CXXByrefHelpers() 2258 CGF.PushDestructorCleanup(VarType, field); in emitDispose() 2263 id.AddPointer(VarType.getCanonicalType().getAsOpaquePtr()); in profileImpl() 2270 QualType VarType; member in __anon460c559c0911::NonTrivialCStructByrefHelpers 2274 : BlockByrefHelpers(alignment), VarType(type) {} in NonTrivialCStructByrefHelpers() 2278 CGF.callCStructMoveConstructor(CGF.MakeAddrLValue(destField, VarType), in emitCopy() 2279 CGF.MakeAddrLValue(srcField, VarType)); in emitCopy() 2283 return VarType.isDestructedType(); in needsDispose() 2288 CGF.pushDestroy(VarType.isDestructedType(), field, VarType); in emitDispose() [all …]
|
| H A D | CGOpenMPRuntime.h | 1104 QualType VarType, 1946 QualType VarType,
|
| H A D | CGOpenMPRuntime.cpp | 1794 QualType VarType, in getAddrOfArtificialThreadPrivate() argument 1797 llvm::Type *VarLVType = CGF.ConvertTypeForMem(VarType); in getAddrOfArtificialThreadPrivate() 1804 CGM.getContext().getTypeAlignInChars(VarType)); in getAddrOfArtificialThreadPrivate() 1811 CGF.Builder.CreateIntCast(CGF.getTypeSize(VarType), CGM.SizeTy, in getAddrOfArtificialThreadPrivate() 1823 VarLVType, CGM.getContext().getTypeAlignInChars(VarType)); in getAddrOfArtificialThreadPrivate() 12067 CodeGenFunction &CGF, QualType VarType, StringRef Name) { in getAddrOfArtificialThreadPrivate() argument
|
| H A D | CodeGenModule.cpp | 5577 QualType VarType = D->getType(); in isVarDeclStrongDefinition() local 5578 if (Context.isAlignmentRequired(VarType)) in isVarDeclStrongDefinition() 5581 if (const auto *RT = VarType->getAs<RecordType>()) { in isVarDeclStrongDefinition()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | GenericTaintChecker.cpp | 347 VariadicType VarType; member 471 IO.mapOptional("VariadicType", Propagation.VarType); in mapping() 548 bool IsSrcVariadic = P.VarType == TaintConfiguration::VariadicType::Src; in parseConfig() 549 bool IsDstVariadic = P.VarType == TaintConfiguration::VariadicType::Dst; in parseConfig()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ODRDiagsEmitter.cpp | 293 VarType, in diagnoseSubMismatchVar() enumerator 322 DiagError(VarType) << FirstName << FirstType; in diagnoseSubMismatchVar() 323 DiagNote(VarType) << SecondName << SecondType; in diagnoseSubMismatchVar()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 8789 QualType VarType = LCDecl->getType().getNonReferenceType(); in buildNumIterations() local 8790 if (!VarType->isIntegerType() && !VarType->isPointerType() && in buildNumIterations() 8977 bool UseVarType = VarType->hasIntegerRepresentation() && in buildNumIterations() 9044 QualType VarType = LCDecl->getType().getNonReferenceType(); in buildMinMaxValues() local 9071 if (VarType->isAnyPointerType() && in buildMinMaxValues() 9226 QualType VarType = LCDecl->getType().getNonReferenceType(); in buildOrderedLoopData() local 9227 if (!VarType->isIntegerType() && !VarType->isPointerType() && in buildOrderedLoopData() 9239 SemaRef, S, DefaultLoc, Lower, Upper, Step, VarType, in buildOrderedLoopData() 9417 if (!VarType->isDependentType() && !VarType->isIntegerType() && in checkOpenMPIterationSpace() 9418 !VarType->isPointerType() && in checkOpenMPIterationSpace() [all …]
|
| H A D | SemaStmt.cpp | 1175 QualType VarType = VD->getType(); in ShouldDiagnoseSwitchCaseNotInEnum() local 1177 if (VD->hasGlobalStorage() && VarType.isConstQualified() && in ShouldDiagnoseSwitchCaseNotInEnum() 1178 S.Context.hasSameUnqualifiedType(EnumType, VarType)) in ShouldDiagnoseSwitchCaseNotInEnum()
|
| H A D | SemaDeclCXX.cpp | 14468 QualType VarType; member in __anonc650e9f63811::RefBuilder 14472 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc)); in build() 14475 RefBuilder(VarDecl *Var, QualType VarType) in RefBuilder() argument 14476 : Var(Var), VarType(VarType) {} in RefBuilder()
|
| H A D | SemaDecl.cpp | 7530 QualType VarType = VD->getType().getCanonicalType(); in emitReadOnlyPlacementAttrWarning() local 7538 if (VarType->isArrayType()) { in emitReadOnlyPlacementAttrWarning() 7540 VarType = S.getASTContext().getBaseElementType(VarType); in emitReadOnlyPlacementAttrWarning() 7543 const RecordDecl *RD = VarType->getAsRecordDecl(); in emitReadOnlyPlacementAttrWarning()
|