Home
last modified time | relevance | path

Searched refs:NewDI (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2698 TypeSourceInfo *NewDI = nullptr; in SubstParmVarDecl() local
2705 NewDI = SubstType(ExpansionTL.getPatternLoc(), TemplateArgs, in SubstParmVarDecl()
2707 if (!NewDI) in SubstParmVarDecl()
2710 if (NewDI->getType()->containsUnexpandedParameterPack()) { in SubstParmVarDecl()
2714 NewDI = CheckPackExpansion(NewDI, ExpansionTL.getEllipsisLoc(), in SubstParmVarDecl()
2723 << NewDI->getType(); in SubstParmVarDecl()
2727 NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(), in SubstParmVarDecl()
2731 if (!NewDI) in SubstParmVarDecl()
2734 if (NewDI->getType()->isVoidType()) { in SubstParmVarDecl()
2764 NewDI->getType(), NewDI, in SubstParmVarDecl()
H A DSemaTemplate.cpp2475 TypeSourceInfo *NewDI; in transformFunctionTypeParam() local
2479 NewDI = in transformFunctionTypeParam()
2482 if (!NewDI) return nullptr; in transformFunctionTypeParam()
2483 NewDI = in transformFunctionTypeParam()
2484 SemaRef.CheckPackExpansion(NewDI, PackTL.getEllipsisLoc(), in transformFunctionTypeParam()
2487 NewDI = SemaRef.SubstType(OldDI, Args, OldParam->getLocation(), in transformFunctionTypeParam()
2489 if (!NewDI) in transformFunctionTypeParam()
2496 NewDI = ExtractTypeForDeductionGuide(SemaRef, MaterializedTypedefs) in transformFunctionTypeParam()
2497 .transform(NewDI); in transformFunctionTypeParam()
2505 QualType ParamTy = NewDI->getType(); in transformFunctionTypeParam()
[all …]
H A DSemaTemplateInstantiateDecl.cpp2881 TypeSourceInfo *NewDI = in VisitNonTypeTemplateParmDecl() local
2884 if (!NewDI) in VisitNonTypeTemplateParmDecl()
2888 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation()); in VisitNonTypeTemplateParmDecl()
2892 ExpandedParameterPackTypesAsWritten.push_back(NewDI); in VisitNonTypeTemplateParmDecl()
2926 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs, in VisitNonTypeTemplateParmDecl() local
2929 if (!NewDI) in VisitNonTypeTemplateParmDecl()
2933 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation()); in VisitNonTypeTemplateParmDecl()
2937 ExpandedParameterPackTypesAsWritten.push_back(NewDI); in VisitNonTypeTemplateParmDecl()
H A DTreeTransform.h4782 TypeSourceInfo *NewDI = getDerived().TransformType(DI); in TransformType() local
4784 if (!NewDI) in TransformType()
4787 return NewDI->getType(); in TransformType()
4834 TypeSourceInfo *NewDI = getDerived().TransformTypeWithDeducedTST(DI); in TransformTypeWithDeducedTST() local
4835 return NewDI ? NewDI->getType() : QualType(); in TransformTypeWithDeducedTST()
5704 TypeSourceInfo *NewDI = nullptr; in TransformFunctionTypeParam() local
5731 NewDI = TLB.getTypeSourceInfo(SemaRef.Context, Result); in TransformFunctionTypeParam()
5733 NewDI = getDerived().TransformType(OldDI); in TransformFunctionTypeParam()
5734 if (!NewDI) in TransformFunctionTypeParam()
5737 if (NewDI == OldDI && indexAdjustment == 0) in TransformFunctionTypeParam()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLocal.cpp1729 auto NewDI = NewDbgValueMap.find({Parent, DbgII}); in insertDebugValuesForPHIs() local
1730 if (NewDI == NewDbgValueMap.end()) { in insertDebugValuesForPHIs()
1732 NewDI = NewDbgValueMap.insert({{Parent, DbgII}, NewDbgII}).first; in insertDebugValuesForPHIs()
1734 DbgVariableIntrinsic *NewDbgII = NewDI->second; in insertDebugValuesForPHIs()