diff options
author | John McCall <rjmccall@apple.com> | 2016-01-06 22:34:54 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2016-01-06 22:34:54 +0000 |
commit | 32791cc3e1529efe8ac348eafc94910d421683fc (patch) | |
tree | f87aa3bbefaf37a359cfccc9ee5c927cb3ba0031 /clang/lib/Sema/SemaExpr.cpp | |
parent | a43eacbf9ec8027b18ffef1b768f8303e4ffc7cf (diff) | |
download | bcm5719-llvm-32791cc3e1529efe8ac348eafc94910d421683fc.tar.gz bcm5719-llvm-32791cc3e1529efe8ac348eafc94910d421683fc.zip |
Only instantiate a default argument once.
By storing the instantiated expression back in the ParmVarDecl,
we remove the last need for separately storing the sub-expression
of a CXXDefaultArgExpr. This makes PCH/Modules merging quite
simple: CXXDefaultArgExpr records are serialized as references
to the ParmVarDecl, and we ignore redundant attempts to overwrite
the instantiated expression.
This has some extremely marginal impact on user-facing semantics.
However, the major effect is that it avoids IRGen errors about
conflicting definitions due to lambdas in the argument being
instantiated multiple times while sharing the same mangling.
It should also slightly improve memory usage and module file size.
rdar://23810407
llvm-svn: 256983
Diffstat (limited to 'clang/lib/Sema/SemaExpr.cpp')
-rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index 5d0c6057f54..f1b9987a2f0 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -4315,8 +4315,15 @@ ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, Expr *Arg = Result.getAs<Expr>(); CheckCompletedExpr(Arg, Param->getOuterLocStart()); + + // Remember the instantiated default argument. + Param->setDefaultArg(Arg); + if (ASTMutationListener *L = getASTMutationListener()) { + L->DefaultArgumentInstantiated(Param); + } + // Build the default argument expression. - return CXXDefaultArgExpr::Create(Context, CallLoc, Param, Arg); + return CXXDefaultArgExpr::Create(Context, CallLoc, Param); } // If the default expression creates temporaries, we need to |