Searched refs:NewDI (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateDeductionGuide.cpp | 626 TypeSourceInfo *NewDI; in transformFunctionTypeParam() local 630 NewDI = in transformFunctionTypeParam() 633 if (!NewDI) in transformFunctionTypeParam() 635 NewDI = in transformFunctionTypeParam() 636 SemaRef.CheckPackExpansion(NewDI, PackTL.getEllipsisLoc(), in transformFunctionTypeParam() 639 NewDI = SemaRef.SubstType(OldDI, Args, OldParam->getLocation(), in transformFunctionTypeParam() 641 if (!NewDI) in transformFunctionTypeParam() 648 NewDI = ExtractTypeForDeductionGuide( in transformFunctionTypeParam() 651 .transform(NewDI); in transformFunctionTypeParam() 659 QualType ParamTy = NewDI->getType(); in transformFunctionTypeParam() [all …]
|
| H A D | SemaTemplateInstantiate.cpp | 3268 TypeSourceInfo *NewDI = nullptr; in SubstParmVarDecl() local 3275 NewDI = SubstType(ExpansionTL.getPatternLoc(), TemplateArgs, in SubstParmVarDecl() 3277 if (!NewDI) in SubstParmVarDecl() 3280 if (NewDI->getType()->containsUnexpandedParameterPack()) { in SubstParmVarDecl() 3284 NewDI = CheckPackExpansion(NewDI, ExpansionTL.getEllipsisLoc(), in SubstParmVarDecl() 3293 << NewDI->getType(); in SubstParmVarDecl() 3297 NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(), in SubstParmVarDecl() 3301 if (!NewDI) in SubstParmVarDecl() 3304 if (NewDI->getType()->isVoidType()) { in SubstParmVarDecl() 3334 NewDI->getType(), NewDI, in SubstParmVarDecl()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 3534 TypeSourceInfo *NewDI = in VisitNonTypeTemplateParmDecl() local 3537 if (!NewDI) in VisitNonTypeTemplateParmDecl() 3541 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation()); in VisitNonTypeTemplateParmDecl() 3545 ExpandedParameterPackTypesAsWritten.push_back(NewDI); in VisitNonTypeTemplateParmDecl() 3579 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs, in VisitNonTypeTemplateParmDecl() local 3582 if (!NewDI) in VisitNonTypeTemplateParmDecl() 3586 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation()); in VisitNonTypeTemplateParmDecl() 3590 ExpandedParameterPackTypesAsWritten.push_back(NewDI); in VisitNonTypeTemplateParmDecl()
|
| H A D | TreeTransform.h | 5171 TypeSourceInfo *NewDI = getDerived().TransformType(DI); in TransformType() local 5173 if (!NewDI) in TransformType() 5176 return NewDI->getType(); in TransformType() 5223 TypeSourceInfo *NewDI = getDerived().TransformTypeWithDeducedTST(DI); in TransformTypeWithDeducedTST() local 5224 return NewDI ? NewDI->getType() : QualType(); in TransformTypeWithDeducedTST() 6126 TypeSourceInfo *NewDI = nullptr; in TransformFunctionTypeParam() local 6153 NewDI = TLB.getTypeSourceInfo(SemaRef.Context, Result); in TransformFunctionTypeParam() 6155 NewDI = getDerived().TransformType(OldDI); in TransformFunctionTypeParam() 6156 if (!NewDI) in TransformFunctionTypeParam() 6159 if (NewDI == OldDI && indexAdjustment == 0) in TransformFunctionTypeParam() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | Local.cpp | 2092 auto NewDI = NewDbgValueMap.find({Parent, DbgII}); in insertDbgVariableRecordsForPHIs() local 2093 if (NewDI == NewDbgValueMap.end()) { in insertDbgVariableRecordsForPHIs() 2095 NewDI = NewDbgValueMap.insert({{Parent, DbgII}, NewDbgII}).first; in insertDbgVariableRecordsForPHIs() 2097 DbgVariableRecord *NewDbgII = NewDI->second; in insertDbgVariableRecordsForPHIs() 2158 auto [NewDI, Inserted] = NewDbgValueMap.try_emplace({Parent, DbgII}); in insertDebugValuesForPHIs() 2160 NewDI->second = cast<DbgVariableIntrinsic>(DbgII->clone()); in insertDebugValuesForPHIs() 2161 DbgVariableIntrinsic *NewDbgII = NewDI->second; in insertDebugValuesForPHIs()
|