From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 7FE8F38582A2; Mon, 4 Jul 2022 19:30:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7FE8F38582A2 From: "gcc-bugzilla at decltype dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/106188] New: [11.3 Regression] [coroutines] Incorrect frame layout after transforming conditional statement without top-level bind expression Date: Mon, 04 Jul 2022 19:30:58 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 11.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gcc-bugzilla at decltype dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2022 19:30:58 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D106188 Bug ID: 106188 Summary: [11.3 Regression] [coroutines] Incorrect frame layout after transforming conditional statement without top-level bind expression Product: gcc Version: 11.3.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: gcc-bugzilla at decltype dot org Target Milestone: --- Created attachment 53257 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D53257&action=3Dedit Minimal test case During `morph_fn_to_coro`, `await_statement_walker` rewrites IF and SWITCH statements by breaking the condition out into a local variable. The new variable is inserted at the beginning of the containing bind expression. If the original function lacked a top-level bind expression, this pushes the resume function pointer and all following fixed-layout frame members away f= rom their intended placement. Expected frame layout: _Coro_resume_fn _Coro_destroy_fn _Coro_promise _Coro_self_handle params _Coro_resume_index _Coro_frame_needs_free _Coro_initial_await_resume_called locals (ifcd/swch) Actual frame layout (since 11.3.0): locals (ifcd/swch) <- out of place _Coro_resume_fn _Coro_destroy_fn _Coro_promise _Coro_self_handle params _Coro_resume_index _Coro_frame_needs_free _Coro_initial_await_resume_called The attached program triggers this error and crashes. Uncommenting the unus= ed local variable resolves the crash.=