Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2318 TypeSourceInfo *NewDI = nullptr; in SubstParmVarDecl() local
2325 NewDI = SubstType(ExpansionTL.getPatternLoc(), TemplateArgs, in SubstParmVarDecl()
2327 if (!NewDI) in SubstParmVarDecl()
2330 if (NewDI->getType()->containsUnexpandedParameterPack()) { in SubstParmVarDecl()
2334 NewDI = CheckPackExpansion(NewDI, ExpansionTL.getEllipsisLoc(), in SubstParmVarDecl()
2343 << NewDI->getType(); in SubstParmVarDecl()
2347 NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(), in SubstParmVarDecl()
2351 if (!NewDI) in SubstParmVarDecl()
2354 if (NewDI->getType()->isVoidType()) { in SubstParmVarDecl()
2403 NewDI->getType(), NewDI, in SubstParmVarDecl()
H A DSemaTemplateInstantiateDecl.cpp2686 TypeSourceInfo *NewDI = in VisitNonTypeTemplateParmDecl() local
2689 if (!NewDI) in VisitNonTypeTemplateParmDecl()
2693 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation()); in VisitNonTypeTemplateParmDecl()
2697 ExpandedParameterPackTypesAsWritten.push_back(NewDI); in VisitNonTypeTemplateParmDecl()
2731 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs, in VisitNonTypeTemplateParmDecl() local
2734 if (!NewDI) in VisitNonTypeTemplateParmDecl()
2738 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation()); in VisitNonTypeTemplateParmDecl()
2742 ExpandedParameterPackTypesAsWritten.push_back(NewDI); in VisitNonTypeTemplateParmDecl()
H A DSemaTemplate.cpp2374 TypeSourceInfo *NewDI; in transformFunctionTypeParam() local
2378 NewDI = in transformFunctionTypeParam()
2381 if (!NewDI) return nullptr; in transformFunctionTypeParam()
2382 NewDI = in transformFunctionTypeParam()
2383 SemaRef.CheckPackExpansion(NewDI, PackTL.getEllipsisLoc(), in transformFunctionTypeParam()
2386 NewDI = SemaRef.SubstType(OldDI, Args, OldParam->getLocation(), in transformFunctionTypeParam()
2388 if (!NewDI) in transformFunctionTypeParam()
2395 NewDI = ExtractTypeForDeductionGuide(SemaRef, MaterializedTypedefs) in transformFunctionTypeParam()
2396 .transform(NewDI); in transformFunctionTypeParam()
2404 QualType ParamTy = NewDI->getType(); in transformFunctionTypeParam()
[all …]
H A DTreeTransform.h4603 TypeSourceInfo *NewDI = getDerived().TransformType(DI); in TransformType() local
4605 if (!NewDI) in TransformType()
4608 return NewDI->getType(); in TransformType()
4655 TypeSourceInfo *NewDI = getDerived().TransformTypeWithDeducedTST(DI); in TransformTypeWithDeducedTST() local
4656 return NewDI ? NewDI->getType() : QualType(); in TransformTypeWithDeducedTST()
5521 TypeSourceInfo *NewDI = nullptr; in TransformFunctionTypeParam() local
5548 NewDI = TLB.getTypeSourceInfo(SemaRef.Context, Result); in TransformFunctionTypeParam()
5550 NewDI = getDerived().TransformType(OldDI); in TransformFunctionTypeParam()
5551 if (!NewDI) in TransformFunctionTypeParam()
5554 if (NewDI == OldDI && indexAdjustment == 0) in TransformFunctionTypeParam()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLocal.cpp1644 auto NewDI = NewDbgValueMap.find({Parent, DbgII}); in insertDebugValuesForPHIs() local
1645 if (NewDI == NewDbgValueMap.end()) { in insertDebugValuesForPHIs()
1647 NewDI = NewDbgValueMap.insert({{Parent, DbgII}, NewDbgII}).first; in insertDebugValuesForPHIs()
1649 DbgVariableIntrinsic *NewDbgII = NewDI->second; in insertDebugValuesForPHIs()