]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gccrs: Fix ICE when compiling block expressions in array capacity
authorPhilip Herron <herron.philip@googlemail.com>
Thu, 27 Mar 2025 12:04:41 +0000 (12:04 +0000)
committerPhilip Herron <philip.herron@embecosm.com>
Thu, 27 Mar 2025 13:22:30 +0000 (13:22 +0000)
We need to reuse the existing compile_constant_item helper which handles
the case if this is a simple expression, fn-call or a block expression.
The patch extracts out this helper as a static method so this can be used
in more places.

Fixes Rust-GCC#3566

gcc/rust/ChangeLog:

* backend/rust-compile-base.cc (HIRCompileBase::address_expression): new helper constexpr
* backend/rust-compile-base.h: prototype
* backend/rust-compile-type.cc (TyTyResolveCompile::visit): call constexpr helper

gcc/testsuite/ChangeLog:

* rust/compile/issue-3566-1.rs: New test.
* rust/compile/issue-3566-2.rs: New test.

Signed-off-by: Philip Herron <herron.philip@googlemail.com>
gcc/rust/backend/rust-compile-base.cc
gcc/rust/backend/rust-compile-base.h
gcc/rust/backend/rust-compile-type.cc
gcc/testsuite/rust/compile/issue-3566-1.rs [new file with mode: 0644]
gcc/testsuite/rust/compile/issue-3566-2.rs [new file with mode: 0644]

index a4d0d062acccef43095675f16e5b46a29e75d3c1..c71417da41eb9fbe979238aa44da21097eabe43d 100644 (file)
@@ -560,6 +560,18 @@ HIRCompileBase::address_expression (tree expr, location_t location)
   return build_fold_addr_expr_loc (location, expr);
 }
 
+tree
+HIRCompileBase::compile_constant_expr (
+  Context *ctx, HirId coercion_id, TyTy::BaseType *resolved_type,
+  TyTy::BaseType *expected_type, const Resolver::CanonicalPath &canonical_path,
+  HIR::Expr &const_value_expr, location_t locus, location_t expr_locus)
+{
+  HIRCompileBase c (ctx);
+  return c.compile_constant_item (coercion_id, resolved_type, expected_type,
+                                 canonical_path, const_value_expr, locus,
+                                 expr_locus);
+}
+
 tree
 HIRCompileBase::indirect_expression (tree expr, location_t locus)
 {
index 3c50535552f542491ce385a5314ab9450978e45f..4d55407ca3b9a33cca7c0123c3ed785013ddb43b 100644 (file)
@@ -31,6 +31,12 @@ public:
 
   static tree address_expression (tree expr, location_t locus);
 
+  static tree compile_constant_expr (
+    Context *ctx, HirId coercion_id, TyTy::BaseType *resolved_type,
+    TyTy::BaseType *expected_type,
+    const Resolver::CanonicalPath &canonical_path, HIR::Expr &const_value_expr,
+    location_t locus, location_t expr_locus);
+
 protected:
   HIRCompileBase (Context *ctx) : ctx (ctx) {}
 
index 30849db12f226da62017c8f5eafe23d2c51ccf05..58a0d9aaf58630dc5dcb106fab38f4ba16326778 100644 (file)
@@ -456,7 +456,17 @@ TyTyResolveCompile::visit (const TyTy::ArrayType &type)
     = TyTyResolveCompile::compile (ctx, type.get_element_type ());
 
   ctx->push_const_context ();
-  tree capacity_expr = CompileExpr::Compile (type.get_capacity_expr (), ctx);
+
+  HIR::Expr &hir_capacity_expr = type.get_capacity_expr ();
+  TyTy::BaseType *capacity_expr_ty = nullptr;
+  bool ok = ctx->get_tyctx ()->lookup_type (
+    hir_capacity_expr.get_mappings ().get_hirid (), &capacity_expr_ty);
+  rust_assert (ok);
+  tree capacity_expr = HIRCompileBase::compile_constant_expr (
+    ctx, hir_capacity_expr.get_mappings ().get_hirid (), capacity_expr_ty,
+    capacity_expr_ty, Resolver::CanonicalPath::create_empty (),
+    hir_capacity_expr, type.get_locus (), hir_capacity_expr.get_locus ());
+
   ctx->pop_const_context ();
 
   tree folded_capacity_expr = fold_expr (capacity_expr);
diff --git a/gcc/testsuite/rust/compile/issue-3566-1.rs b/gcc/testsuite/rust/compile/issue-3566-1.rs
new file mode 100644 (file)
index 0000000..b7e5be0
--- /dev/null
@@ -0,0 +1,8 @@
+mod a {
+    pub mod b {
+
+        pub fn f(x: [u8; { 100 }]) -> [u8; { 100 }] {
+            x
+        }
+    }
+}
diff --git a/gcc/testsuite/rust/compile/issue-3566-2.rs b/gcc/testsuite/rust/compile/issue-3566-2.rs
new file mode 100644 (file)
index 0000000..3f3ea73
--- /dev/null
@@ -0,0 +1,22 @@
+// run-pass
+
+#![allow(H8)]
+#![allow(dead_code)]
+
+
+// pretty-expanded FIXME #23616
+
+mod a {
+    pub mod b {
+        pub type t = isize;
+
+        pub fn f(x: [u8; { let s = 17; 100 }]) -> [u8;  { let z = 18; 100 }] {
+    //~^ WARN unused variable: `s`
+    //~| WARN unused variable: `z`
+    x
+}
+    }
+}
+
+pub fn main() {    //~ ERROR cannot move out
+    }