diff options
author | Philip Herron <herron.philip@googlemail.com> | 2023-09-04 15:28:46 +0100 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-01-16 19:04:32 +0100 |
commit | 3afb921cdaeea68ae11096844fefaf743f64db4b (patch) | |
tree | 2ea3199170f0d3fc17b56b0b38dd9838bb00ef1d /gcc/rust/backend | |
parent | 83feca39ba06e865ee4588e607a27e498944f62d (diff) | |
download | gcc-3afb921cdaeea68ae11096844fefaf743f64db4b.zip gcc-3afb921cdaeea68ae11096844fefaf743f64db4b.tar.gz gcc-3afb921cdaeea68ae11096844fefaf743f64db4b.tar.bz2 |
gccrs: Fix match-expression code-gen
We were massing the match scruitinee expression as a way to access the
result of the expression. This is wrong and needs to be stored in a
temporary otherwise it will cause the code to be regnerated for each time
it is used. This is not an issue in the case where the expression is only
used once.
Fixes #1895
gcc/rust/ChangeLog:
* backend/rust-compile-expr.cc (CompileExpr::visit): use a temp for the value
gcc/testsuite/ChangeLog:
* rust/execute/torture/iter1.rs: New test.
Signed-off-by: Philip Herron <herron.philip@googlemail.com>
Diffstat (limited to 'gcc/rust/backend')
-rw-r--r-- | gcc/rust/backend/rust-compile-expr.cc | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/gcc/rust/backend/rust-compile-expr.cc b/gcc/rust/backend/rust-compile-expr.cc index 9358ce2..0e2d92b 100644 --- a/gcc/rust/backend/rust-compile-expr.cc +++ b/gcc/rust/backend/rust-compile-expr.cc @@ -1341,9 +1341,23 @@ CompileExpr::visit (HIR::MatchExpr &expr) ctx->add_statement (ret_var_stmt); // lets compile the scrutinee expression - tree match_scrutinee_expr + tree match_scrutinee_rval = CompileExpr::Compile (expr.get_scrutinee_expr ().get (), ctx); + Bvariable *match_scrutinee_tmp_var = ctx->get_backend ()->temporary_variable ( + fnctx.fndecl, enclosing_scope, TREE_TYPE (match_scrutinee_rval), NULL, + is_address_taken, expr.get_locus (), &ret_var_stmt); + ctx->add_statement (ret_var_stmt); + + tree match_scrutinee_expr = match_scrutinee_tmp_var->get_tree ( + expr.get_scrutinee_expr ()->get_locus ()); + + tree assignment + = ctx->get_backend ()->assignment_statement (match_scrutinee_expr, + match_scrutinee_rval, + expr.get_locus ()); + ctx->add_statement (assignment); + tree match_scrutinee_expr_qualifier_expr; if (TyTy::is_primitive_type_kind (scrutinee_kind)) { |