Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2887 TypeSourceInfo *NewDI = nullptr; in SubstParmVarDecl() local
2894 NewDI = SubstType(ExpansionTL.getPatternLoc(), TemplateArgs, in SubstParmVarDecl()
2896 if (!NewDI) in SubstParmVarDecl()
2899 if (NewDI->getType()->containsUnexpandedParameterPack()) { in SubstParmVarDecl()
2903 NewDI = CheckPackExpansion(NewDI, ExpansionTL.getEllipsisLoc(), in SubstParmVarDecl()
2912 << NewDI->getType(); in SubstParmVarDecl()
2916 NewDI = SubstType(OldDI, TemplateArgs, OldParm->getLocation(), in SubstParmVarDecl()
2920 if (!NewDI) in SubstParmVarDecl()
2923 if (NewDI->getType()->isVoidType()) { in SubstParmVarDecl()
2953 NewDI->getType(), NewDI, in SubstParmVarDecl()
H A DSemaTemplateInstantiateDecl.cpp2946 TypeSourceInfo *NewDI = in VisitNonTypeTemplateParmDecl() local
2949 if (!NewDI) in VisitNonTypeTemplateParmDecl()
2953 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation()); in VisitNonTypeTemplateParmDecl()
2957 ExpandedParameterPackTypesAsWritten.push_back(NewDI); in VisitNonTypeTemplateParmDecl()
2991 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs, in VisitNonTypeTemplateParmDecl() local
2994 if (!NewDI) in VisitNonTypeTemplateParmDecl()
2998 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation()); in VisitNonTypeTemplateParmDecl()
3002 ExpandedParameterPackTypesAsWritten.push_back(NewDI); in VisitNonTypeTemplateParmDecl()
H A DSemaTemplate.cpp2592 TypeSourceInfo *NewDI; in transformFunctionTypeParam() local
2596 NewDI = in transformFunctionTypeParam()
2599 if (!NewDI) return nullptr; in transformFunctionTypeParam()
2600 NewDI = in transformFunctionTypeParam()
2601 SemaRef.CheckPackExpansion(NewDI, PackTL.getEllipsisLoc(), in transformFunctionTypeParam()
2604 NewDI = SemaRef.SubstType(OldDI, Args, OldParam->getLocation(), in transformFunctionTypeParam()
2606 if (!NewDI) in transformFunctionTypeParam()
2613 NewDI = ExtractTypeForDeductionGuide(SemaRef, MaterializedTypedefs) in transformFunctionTypeParam()
2614 .transform(NewDI); in transformFunctionTypeParam()
2622 QualType ParamTy = NewDI->getType(); in transformFunctionTypeParam()
[all …]
H A DTreeTransform.h4877 TypeSourceInfo *NewDI = getDerived().TransformType(DI); in TransformType() local
4879 if (!NewDI) in TransformType()
4882 return NewDI->getType(); in TransformType()
4930 return NewDI ? NewDI->getType() : QualType(); in TransformTypeWithDeducedTST()
5802 TypeSourceInfo *NewDI = nullptr; in TransformFunctionTypeParam() local
5829 NewDI = TLB.getTypeSourceInfo(SemaRef.Context, Result); in TransformFunctionTypeParam()
5831 NewDI = getDerived().TransformType(OldDI); in TransformFunctionTypeParam()
5832 if (!NewDI) in TransformFunctionTypeParam()
5835 if (NewDI == OldDI && indexAdjustment == 0) in TransformFunctionTypeParam()
5843 NewDI->getType(), in TransformFunctionTypeParam()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp2027 auto NewDI = NewDbgValueMap.find({Parent, DbgII}); in insertDPValuesForPHIs() local
2028 if (NewDI == NewDbgValueMap.end()) { in insertDPValuesForPHIs()
2030 NewDI = NewDbgValueMap.insert({{Parent, DbgII}, NewDbgII}).first; in insertDPValuesForPHIs()
2032 DPValue *NewDbgII = NewDI->second; in insertDPValuesForPHIs()
2093 auto NewDI = NewDbgValueMap.find({Parent, DbgII}); in insertDebugValuesForPHIs() local
2094 if (NewDI == NewDbgValueMap.end()) { in insertDebugValuesForPHIs()
2096 NewDI = NewDbgValueMap.insert({{Parent, DbgII}, NewDbgII}).first; in insertDebugValuesForPHIs()
2098 DbgVariableIntrinsic *NewDbgII = NewDI->second; in insertDebugValuesForPHIs()