Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2379 TypeSourceInfo *NewDI = nullptr; in SubstParmVarDecl() local
2386 NewDI = SubstType(ExpansionTL.getPatternLoc(), TemplateArgs, in SubstParmVarDecl()
2388 if (!NewDI) in SubstParmVarDecl()
2391 if (NewDI->getType()->containsUnexpandedParameterPack()) { in SubstParmVarDecl()
2395 NewDI = CheckPackExpansion(NewDI, ExpansionTL.getEllipsisLoc(), in SubstParmVarDecl()
2404 << NewDI->getType(); in SubstParmVarDecl()
2408 NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(), in SubstParmVarDecl()
2412 if (!NewDI) in SubstParmVarDecl()
2415 if (NewDI->getType()->isVoidType()) { in SubstParmVarDecl()
2447 NewDI->getType(), NewDI, in SubstParmVarDecl()
H A DSemaTemplate.cpp2379 TypeSourceInfo *NewDI; in transformFunctionTypeParam() local
2383 NewDI = in transformFunctionTypeParam()
2386 if (!NewDI) return nullptr; in transformFunctionTypeParam()
2387 NewDI = in transformFunctionTypeParam()
2388 SemaRef.CheckPackExpansion(NewDI, PackTL.getEllipsisLoc(), in transformFunctionTypeParam()
2391 NewDI = SemaRef.SubstType(OldDI, Args, OldParam->getLocation(), in transformFunctionTypeParam()
2393 if (!NewDI) in transformFunctionTypeParam()
2401 .transform(NewDI); in transformFunctionTypeParam()
2409 QualType ParamTy = NewDI->getType(); in transformFunctionTypeParam()
2422 NewDI->getType(), in transformFunctionTypeParam()
[all …]
H A DSemaTemplateInstantiateDecl.cpp2816 TypeSourceInfo *NewDI = in VisitNonTypeTemplateParmDecl() local
2819 if (!NewDI) in VisitNonTypeTemplateParmDecl()
2823 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation()); in VisitNonTypeTemplateParmDecl()
2827 ExpandedParameterPackTypesAsWritten.push_back(NewDI); in VisitNonTypeTemplateParmDecl()
2861 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs, in VisitNonTypeTemplateParmDecl() local
2864 if (!NewDI) in VisitNonTypeTemplateParmDecl()
2868 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation()); in VisitNonTypeTemplateParmDecl()
2872 ExpandedParameterPackTypesAsWritten.push_back(NewDI); in VisitNonTypeTemplateParmDecl()
H A DTreeTransform.h4692 TypeSourceInfo *NewDI = getDerived().TransformType(DI); in TransformType() local
4694 if (!NewDI) in TransformType()
4697 return NewDI->getType(); in TransformType()
4745 return NewDI ? NewDI->getType() : QualType(); in TransformTypeWithDeducedTST()
5610 TypeSourceInfo *NewDI = nullptr; in TransformFunctionTypeParam() local
5637 NewDI = TLB.getTypeSourceInfo(SemaRef.Context, Result); in TransformFunctionTypeParam()
5639 NewDI = getDerived().TransformType(OldDI); in TransformFunctionTypeParam()
5640 if (!NewDI) in TransformFunctionTypeParam()
5643 if (NewDI == OldDI && indexAdjustment == 0) in TransformFunctionTypeParam()
5651 NewDI->getType(), in TransformFunctionTypeParam()
[all …]
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DLocal.cpp1665 auto NewDI = NewDbgValueMap.find({Parent, DbgII}); in insertDebugValuesForPHIs() local
1666 if (NewDI == NewDbgValueMap.end()) { in insertDebugValuesForPHIs()
1668 NewDI = NewDbgValueMap.insert({{Parent, DbgII}, NewDbgII}).first; in insertDebugValuesForPHIs()
1670 DbgVariableIntrinsic *NewDbgII = NewDI->second; in insertDebugValuesForPHIs()