Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DPrettyVariableDumper.cpp43 auto VarType = Var.getType(); in start() local
45 uint64_t Length = VarType->getRawSymbol().getLength(); in start()
55 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
58 if (isa<PDBSymbolTypeEnum>(*VarType)) in start()
62 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
72 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
80 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp68 VariadicType VarType; member
233 VariadicType VarType; member
239 : VariadicIndex(InvalidArgIndex), VarType(VariadicType::None), in TaintPropagationRule()
247 VariadicIndex(VarIndex), VarType(Var), PropagationFunc(Func) {} in TaintPropagationRule()
259 VariadicType::None == VarType; in isNull()
331 IO.mapOptional("VariadicType", Propagation.VarType, in mapping()
390 P.VarType, P.VarIndex})); in parseConfiguration()
696 if (!IsTainted && VariadicType::Src == VarType) { in process()
727 if (VariadicType::Dst == VarType) { in process()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBPFPreserveDIType.cpp102 IntegerType *VarType = Type::getInt64Ty(BB->getContext()); in BPFPreserveDITypeImpl() local
106 *M, VarType, false, GlobalVariable::ExternalLinkage, NULL, GVName); in BPFPreserveDITypeImpl()
H A DBPFAbstractMemberAccess.cpp995 IntegerType *VarType; in transformGEPChain() local
997 VarType = Type::getInt32Ty(BB->getContext()); // 32bit return value in transformGEPChain()
999 VarType = Type::getInt64Ty(BB->getContext()); // 64bit ptr or enum value in transformGEPChain()
1001 GV = new GlobalVariable(*M, VarType, false, GlobalVariable::ExternalLinkage, in transformGEPChain()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGBlocks.cpp2316 QualType VarType; member in __anona61db5d10911::CXXByrefHelpers
2322 : BlockByrefHelpers(alignment), VarType(type), CopyExpr(copyExpr) {} in CXXByrefHelpers()
2333 CGF.PushDestructorCleanup(VarType, field); in emitDispose()
2338 id.AddPointer(VarType.getCanonicalType().getAsOpaquePtr()); in profileImpl()
2345 QualType VarType; member in __anona61db5d10911::NonTrivialCStructByrefHelpers
2349 : BlockByrefHelpers(alignment), VarType(type) {} in NonTrivialCStructByrefHelpers()
2353 CGF.callCStructMoveConstructor(CGF.MakeAddrLValue(destField, VarType), in emitCopy()
2354 CGF.MakeAddrLValue(srcField, VarType)); in emitCopy()
2358 return VarType.isDestructedType(); in needsDispose()
2363 CGF.pushDestroy(VarType.isDestructedType(), field, VarType); in emitDispose()
[all …]
H A DCGOpenMPRuntime.h1293 QualType VarType,
2174 QualType VarType,
H A DCodeGenModule.cpp4554 QualType VarType = D->getType(); in isVarDeclStrongDefinition() local
4555 if (Context.isAlignmentRequired(VarType)) in isVarDeclStrongDefinition()
4558 if (const auto *RT = VarType->getAs<RecordType>()) { in isVarDeclStrongDefinition()
H A DCGOpenMPRuntime.cpp2002 QualType VarType, in getAddrOfArtificialThreadPrivate() argument
2005 llvm::Type *VarLVType = CGF.ConvertTypeForMem(VarType); in getAddrOfArtificialThreadPrivate()
2011 return Address(GAddr, CGM.getContext().getTypeAlignInChars(VarType)); in getAddrOfArtificialThreadPrivate()
2018 CGF.Builder.CreateIntCast(CGF.getTypeSize(VarType), CGM.SizeTy, in getAddrOfArtificialThreadPrivate()
2029 CGM.getContext().getTypeAlignInChars(VarType)); in getAddrOfArtificialThreadPrivate()
12737 CodeGenFunction &CGF, QualType VarType, StringRef Name) { in getAddrOfArtificialThreadPrivate() argument
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp8015 QualType VarType = LCDecl->getType().getNonReferenceType(); in buildNumIterations() local
8016 if (!VarType->isIntegerType() && !VarType->isPointerType() && in buildNumIterations()
8183 Step, VarType, TestIsStrictOp, in buildNumIterations()
8191 bool UseVarType = VarType->hasIntegerRepresentation() && in buildNumIterations()
8192 C.getTypeSize(Type) > C.getTypeSize(VarType); in buildNumIterations()
8195 UseVarType ? C.getTypeSize(VarType) : C.getTypeSize(Type); in buildNumIterations()
8196 bool IsSigned = UseVarType ? VarType->hasSignedIntegerRepresentation() in buildNumIterations()
8258 QualType VarType = LCDecl->getType().getNonReferenceType(); in buildMinMaxValues() local
8261 Step, VarType, TestIsStrictOp, in buildMinMaxValues()
8285 if (VarType->isAnyPointerType() && in buildMinMaxValues()
[all …]
H A DSemaStmt.cpp1130 QualType VarType = VD->getType(); in ShouldDiagnoseSwitchCaseNotInEnum() local
1132 if (VD->hasGlobalStorage() && VarType.isConstQualified() && in ShouldDiagnoseSwitchCaseNotInEnum()
1133 S.Context.hasSameUnqualifiedType(EnumType, VarType)) in ShouldDiagnoseSwitchCaseNotInEnum()
H A DSemaDeclCXX.cpp13525 QualType VarType; member in __anon26624a2b3711::RefBuilder
13529 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc)); in build()
13532 RefBuilder(VarDecl *Var, QualType VarType) in RefBuilder() argument
13533 : Var(Var), VarType(VarType) {} in RefBuilder()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp9595 VarType, in diagnoseOdrViolations() enumerator
9794 FirstVD->getSourceRange(), VarType) in diagnoseOdrViolations()
9797 SecondVD->getSourceRange(), VarType) in diagnoseOdrViolations()