public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/106973] New: coroutine generator and setjmp
@ 2022-09-20  8:00 woohp135 at gmail dot com
  2022-09-20  8:44 ` [Bug c++/106973] " marxin at gcc dot gnu.org
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: woohp135 at gmail dot com @ 2022-09-20  8:00 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

            Bug ID: 106973
           Summary: coroutine generator and setjmp
           Product: gcc
           Version: 12.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: woohp135 at gmail dot com
  Target Milestone: ---

#include "generator.hpp"
#include <setjmp.h>
using namespace std;


cppcoro::generator<int> foo()
{
    jmp_buf env;
    setjmp(env);
    co_yield 1;
}


int main()
{
    return 0;
}


The generator.hpp file is from
https://github.com/lewissbaker/cppcoro/blob/master/include/cppcoro/generator.hpp

I'm getting this error:


> g++ -std=c++2a -Wall -Wextra -freport-bug foo.cpp
during GIMPLE pass: coro-early-expand-ifns
foo.cpp: In function ‘void foo(foo()::_Z3foov.Frame*)’:
foo.cpp:6:25: internal compiler error: Segmentation fault
    6 | cppcoro::generator<int> foo()
      |                         ^~~
0x19eab38 internal_error(char const*, ...)
        ???:0


I believe it is the setjmp that is causing the issue. This code compiles fine
on clang.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug c++/106973] coroutine generator and setjmp
  2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
@ 2022-09-20  8:44 ` marxin at gcc dot gnu.org
  2022-09-20  8:54 ` woohp135 at gmail dot com
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: marxin at gcc dot gnu.org @ 2022-09-20  8:44 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2022-09-20
                 CC|                            |marxin at gcc dot gnu.org

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Please provide a pre-processed source file (-E option).

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug c++/106973] coroutine generator and setjmp
  2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
  2022-09-20  8:44 ` [Bug c++/106973] " marxin at gcc dot gnu.org
@ 2022-09-20  8:54 ` woohp135 at gmail dot com
  2022-09-20  9:23 ` marxin at gcc dot gnu.org
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: woohp135 at gmail dot com @ 2022-09-20  8:54 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

--- Comment #2 from Hui Peng Hu <woohp135 at gmail dot com> ---
Created attachment 53592
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53592&action=edit
preprocessed cpp file

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug c++/106973] coroutine generator and setjmp
  2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
  2022-09-20  8:44 ` [Bug c++/106973] " marxin at gcc dot gnu.org
  2022-09-20  8:54 ` woohp135 at gmail dot com
@ 2022-09-20  9:23 ` marxin at gcc dot gnu.org
  2022-09-20 10:32 ` iains at gcc dot gnu.org
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: marxin at gcc dot gnu.org @ 2022-09-20  9:23 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |iains at gcc dot gnu.org
             Status|WAITING                     |NEW

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Thanks, reduced to:

cat preprocessed.cpp
namespace std {
template <typename> using remove_reference_t = int;
template <typename _Result> struct coroutine_traits : _Result {};
template <typename = void> struct coroutine_handle {
  operator coroutine_handle<>();
};
struct suspend_always {
  bool await_ready() noexcept;
  void await_suspend(coroutine_handle<>) noexcept;
  void await_resume() noexcept;
};
} // namespace std
struct generator_promise {
  void get_return_object();
  std::suspend_always initial_suspend();
  std::suspend_always final_suspend() noexcept;
  std::suspend_always yield_value(std::remove_reference_t<int>);
  void unhandled_exception();
};
struct generator {
  using promise_type = generator_promise;
};
void setjmp(int);
int foo_env;
generator foo() {
  setjmp(foo_env);
  co_yield 1;
}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug c++/106973] coroutine generator and setjmp
  2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
                   ` (2 preceding siblings ...)
  2022-09-20  9:23 ` marxin at gcc dot gnu.org
@ 2022-09-20 10:32 ` iains at gcc dot gnu.org
  2022-09-20 10:43 ` redi at gcc dot gnu.org
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: iains at gcc dot gnu.org @ 2022-09-20 10:32 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

--- Comment #4 from Iain Sandoe <iains at gcc dot gnu.org> ---
Of course, we should not crash in this case.

However, I am curious as to how you would expect setjmp/longjmp to work with a
coroutine (I recall that the coroutine implementators discussed this with,
AFAIR, the outcome that it was not really supportable).

Do you have an example of a complete code where setjmp/longjmp is used together
with coroutines in clang or MSVC?

AFAICT Lewis' code for the generator makes no use of the setjmp/longjump.

The exception mechanism that *is* defined in the standard for coroutines is the
regular C++ exceptions.

So - we need to fix this problem, of course, but also to revisit what the
correct behaviours should be for setjmp/longjmp.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug c++/106973] coroutine generator and setjmp
  2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
                   ` (3 preceding siblings ...)
  2022-09-20 10:32 ` iains at gcc dot gnu.org
@ 2022-09-20 10:43 ` redi at gcc dot gnu.org
  2022-09-20 10:52 ` iains at gcc dot gnu.org
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: redi at gcc dot gnu.org @ 2022-09-20 10:43 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

--- Comment #5 from Jonathan Wakely <redi at gcc dot gnu.org> ---
The standard says:

> A call to setjmp or longjmp has undefined behavior if invoked in a suspension context of a coroutine (7.6.2.4).

Given that, I don't see why using setjmp in example would be useful.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug c++/106973] coroutine generator and setjmp
  2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
                   ` (4 preceding siblings ...)
  2022-09-20 10:43 ` redi at gcc dot gnu.org
@ 2022-09-20 10:52 ` iains at gcc dot gnu.org
  2022-09-21  0:33 ` woohp135 at gmail dot com
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: iains at gcc dot gnu.org @ 2022-09-20 10:52 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

--- Comment #6 from Iain Sandoe <iains at gcc dot gnu.org> ---
(In reply to Jonathan Wakely from comment #5)
> The standard says:
> 
> > A call to setjmp or longjmp has undefined behavior if invoked in a suspension context of a coroutine (7.6.2.4).
> 
> Given that, I don't see why using setjmp in example would be useful.

Exactly, but maybe we should diagnose (we should not crash anyway).

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug c++/106973] coroutine generator and setjmp
  2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
                   ` (5 preceding siblings ...)
  2022-09-20 10:52 ` iains at gcc dot gnu.org
@ 2022-09-21  0:33 ` woohp135 at gmail dot com
  2024-09-03 15:41 ` arsen at gcc dot gnu.org
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: woohp135 at gmail dot com @ 2022-09-21  0:33 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

--- Comment #7 from Hui Peng Hu <woohp135 at gmail dot com> ---
I was trying to call libjpeg to decode images inside a generator. A snippet of
code that I found online used setjmp/longjmp for error handling, hence I ran
into this issue. Given that the longjmp is called while the coroutine is
executing, I'd imagine that the behavior is fairly well-defined. I've since
moved on to using regular c++ exceptions for error handling, and so this issue
isn't affecting me anymore, but I thought it'll still be nice to get it fixed
(or at least print a helpful warning/error message) so that gcc is not
segfaulting

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug c++/106973] coroutine generator and setjmp
  2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
                   ` (6 preceding siblings ...)
  2022-09-21  0:33 ` woohp135 at gmail dot com
@ 2024-09-03 15:41 ` arsen at gcc dot gnu.org
  2024-09-04 14:53 ` cvs-commit at gcc dot gnu.org
  2024-09-04 15:12 ` arsen at gcc dot gnu.org
  9 siblings, 0 replies; 11+ messages in thread
From: arsen at gcc dot gnu.org @ 2024-09-03 15:41 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

Arsen Arsenović <arsen at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |arsen at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |arsen at gcc dot gnu.org
             Status|NEW                         |ASSIGNED

--- Comment #8 from Arsen Arsenović <arsen at gcc dot gnu.org> ---
I've a WIP fix locally for the ICE (currently undergoing reg-testing).  I doubt
that setjmp can be used reliably in a coroutine, but, technically, I suspect
it'll work if usual setjmp rules are respected (so, no returning, suspending -
which involves returning, etc).  I haven't tested that much, just the ICE.

(In reply to Hui Peng Hu from comment #7)
> I was trying to call libjpeg to decode images inside a generator. A snippet
> of code that I found online used setjmp/longjmp for error handling, hence I
> ran into this issue. Given that the longjmp is called while the coroutine is
> executing, I'd imagine that the behavior is fairly well-defined.

the standard is fairly absolute in this regard: setjmp/longjmp are UB in
suspension contexts ( https://eel.is/c++draft/csetjmp.syn#2.sentence-3 )

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug c++/106973] coroutine generator and setjmp
  2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
                   ` (7 preceding siblings ...)
  2024-09-03 15:41 ` arsen at gcc dot gnu.org
@ 2024-09-04 14:53 ` cvs-commit at gcc dot gnu.org
  2024-09-04 15:12 ` arsen at gcc dot gnu.org
  9 siblings, 0 replies; 11+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-09-04 14:53 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

--- Comment #9 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The trunk branch has been updated by Arsen Arsenovic <arsen@gcc.gnu.org>:

https://gcc.gnu.org/g:7b7ad3f4b2455072f42e7884b93fd96ebb920bc8

commit r15-3453-g7b7ad3f4b2455072f42e7884b93fd96ebb920bc8
Author: Arsen ArsenoviÄ <arsen@aarsen.me>
Date:   Tue Sep 3 17:14:13 2024 +0200

    coros: mark .CO_YIELD as LEAF [PR106973]

    We rely on .CO_YIELD calls being followed by an assignment (optionally)
    and then a switch/if in the same basic block.  This implies that a
    .CO_YIELD can never end a block.  However, since a call to .CO_YIELD is
    still a call, if the function containing it calls setjmp, GCC thinks
    that the .CO_YIELD can introduce abnormal control flow, and generates an
    edge for the call.

    We know this is not the case; .CO_YIELD calls get removed quite early on
    and have no effect, and result in no other calls, so .CO_YIELD can be
    considered a leaf function, preventing generating an edge when calling
    it.

    PR c++/106973 - coroutine generator and setjmp

            PR c++/106973

    gcc/ChangeLog:

            * internal-fn.def (CO_YIELD): Mark as ECF_LEAF.

    gcc/testsuite/ChangeLog:

            * g++.dg/coroutines/pr106973.C: New test.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug c++/106973] coroutine generator and setjmp
  2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
                   ` (8 preceding siblings ...)
  2024-09-04 14:53 ` cvs-commit at gcc dot gnu.org
@ 2024-09-04 15:12 ` arsen at gcc dot gnu.org
  9 siblings, 0 replies; 11+ messages in thread
From: arsen at gcc dot gnu.org @ 2024-09-04 15:12 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106973

Arsen Arsenović <arsen at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |WAITING

--- Comment #10 from Arsen Arsenović <arsen at gcc dot gnu.org> ---
fixed on trunk, waiting for possible backport

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2024-09-04 15:12 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-20  8:00 [Bug c++/106973] New: coroutine generator and setjmp woohp135 at gmail dot com
2022-09-20  8:44 ` [Bug c++/106973] " marxin at gcc dot gnu.org
2022-09-20  8:54 ` woohp135 at gmail dot com
2022-09-20  9:23 ` marxin at gcc dot gnu.org
2022-09-20 10:32 ` iains at gcc dot gnu.org
2022-09-20 10:43 ` redi at gcc dot gnu.org
2022-09-20 10:52 ` iains at gcc dot gnu.org
2022-09-21  0:33 ` woohp135 at gmail dot com
2024-09-03 15:41 ` arsen at gcc dot gnu.org
2024-09-04 14:53 ` cvs-commit at gcc dot gnu.org
2024-09-04 15:12 ` arsen at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).