/* Detect a call to a constructor function, or if returning a struct
literal, write result directly into the return value. */
StructLiteralExp *sle = NULL;
+ bool using_rvo_p = false;
if (DotVarExp *dve = (s->exp->op == TOKcall
&& s->exp->isCallExp ()->e1->op == TOKdotvar
? s->exp->isCallExp ()->e1->isDotVarExp ()
: NULL))
{
- sle = (dve->var->isCtorDeclaration ()
- ? dve->e1->isStructLiteralExp () : NULL);
+ if (dve->var->isCtorDeclaration ())
+ {
+ if (CommaExp *ce = dve->e1->isCommaExp ())
+ {
+ /* Temporary initialized inside a return expression, and
+ used as the return value. Replace it with the hidden
+ reference to allow RVO return. */
+ DeclarationExp *de = ce->e1->isDeclarationExp ();
+ VarExp *ve = ce->e2->isVarExp ();
+ if (de != NULL && ve != NULL
+ && ve->var == de->declaration
+ && ve->var->storage_class & STCtemp)
+ {
+ tree var = get_symbol_decl (ve->var);
+ TREE_ADDRESSABLE (var) = 1;
+ SET_DECL_VALUE_EXPR (var, decl);
+ DECL_HAS_VALUE_EXPR_P (var) = 1;
+ SET_DECL_LANG_NRVO (var, this->func_->shidden);
+ using_rvo_p = true;
+ }
+ }
+ else
+ sle = dve->e1->isStructLiteralExp ();
+ }
}
else
sle = s->exp->isStructLiteralExp ();
{
StructDeclaration *sd = type->baseElemOf ()->isTypeStruct ()->sym;
sle->sym = build_address (this->func_->shidden);
+ using_rvo_p = true;
/* Fill any alignment holes in the return slot using memset. */
if (!identity_compare_p (sd) || sd->isUnionDeclaration ())
add_stmt (build_memset_call (this->func_->shidden));
+ }
+ if (using_rvo_p == true)
+ {
+ /* Generate: (expr, return <retval>); */
add_stmt (build_expr_dtor (s->exp));
}
else