Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better default for MinGW setjmp/longjmp #1443

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

svaarala
Copy link
Owner

@svaarala svaarala commented Mar 27, 2017

Proposal from IRC: mamod/JavaScript-Duktape@91f0ef2.

Changes:

  • For Windows target, when compiling with MinGW, use _builtin{setjmp,longjmp}() to avoid a potential crash issue
  • Identify Cygwin target as "cygwin", not "windows", for clarity
  • Releases entry

@Corion
Copy link

Corion commented Mar 27, 2017

I guess that will work, but note that MinGW is not Cygwin. The MinGW compiler is used without and outside of the Cygwin framework and, for example, uses native filenames instead of /cygdrive/whatever.

I don't know what your configuration framework requires and how it makes the distinction between MinGW and Cygwin.

@svaarala
Copy link
Owner Author

It needs a way of detecting the compiler/platform from preprocessor defines (without #including files) and then whatever goes.

@svaarala
Copy link
Owner Author

@Corion Would setjmp() be a better default than __builtin_setjmp()? Is your environment missing both _setjmp() and setjmp() (that would seem odd)?

@svaarala
Copy link
Owner Author

Ok, so based on the link there's a potential crash issue in longjmp() while __builtin_longjmp() would work.

@Corion
Copy link

Corion commented Mar 29, 2017

According to Stackoverflow and a Sourceforge project collecting #defines , the following should work to identify MinGW:

#ifdef MINGW32

On 64bit, the following also is enabled:

#ifdef MINGW64

Unfortunately, I don't know much about the differences between longjmp, _longjmp, __longjmp and __builtin_longjmp - I just took a solution I found and applied it here ;)

@denisdemaisbr
Copy link

C and C++ (lang/compillers) exceptions handlers differs, i.e., https://msdn.microsoft.com/pt-br/library/yz2ez4as(v=vs.110).aspx

Lua uses a tiny approach to handle it.

NOTE: i know, duktape are written in ANSI C, but, can be compilled using c++ [same lua]

@svaarala
Copy link
Owner Author

@denisdemaisbr The easiest approach would be to rely on ANSI setjmp()/longjmp() and any platform missing it would need to supply it separately. That was pretty much the original approach but there are various reasons (performance, signal handling) to use different variants on each platform. So ultimately I can only rely on the input from people working on each platform as to what the appropriate default (that is, suitable for the majority of users on that platform) would be.

Duktape does support C++ exceptions which allows proper C++ unwinding, -DDUK_USE_CPP_EXCEPTIONS. It's not the default because C++ environments don't always have exception support enabled.

@svaarala
Copy link
Owner Author

Ok, I've updated the pull so that MinGW with POSIX (Cygwin) and Windows targets should now use __builtin_setjmp/longjmp(). I don't actively use Windows so I'm not sure if the checks are correct so if anyone can test, that would be nice. But in principle:

  • When compiling for Cygwin POSIX target, __CYGWIN__ should be set and _WIN32 etc not. Due to the ordering in platforms.yaml, this should be handled by config/platforms/platform_cygwin.h.in which has the custom setjmp/longjmp now (it's #ifdef'd for MinGW which should be pretty pointless but also doesn't harm).
  • When compiling for Windows target, __CYGWIN__ should not be set, and _WIN32 should be set. This should be handled by config/platforms/platform_windows.h.in, which now has a MinGW specific setjmp/longjmp check.

If anyone can confirm whether this is correct, that'd be nice.

@svaarala svaarala force-pushed the mingw-setjmp-longjmp-improvement branch from 2d489b1 to 78e1763 Compare December 17, 2017 22:28
@svaarala
Copy link
Owner Author

Also one thing to consider: should config/platforms/platform_cygwin.h.in define the OS string as "cygwin" rather than "windows"? If so, a POSIX/Cygwin build would identify as "mingw cygwin".

@svaarala
Copy link
Owner Author

I happened to have an unused Windows 10 VM around so I quickly checked that Cygwin GCC doesn't identify as MinGW (= doesn't trigger DUK_F_MINGW) so if the setjmp() crash is confined to MinGW only, then it should only be necessary to add the MinGW check for config/platforms/platform_windows.h.in.

I've updated the diff to reflect this; config/platforms/platform_cygwin.h.in uses _setjmp()/_longjmp() as before, and now sets the OS string to "cygwin" and not "windows".

@svaarala svaarala force-pushed the mingw-setjmp-longjmp-improvement branch from 77b1c9d to d5b7a8f Compare December 18, 2017 03:43
@svaarala svaarala added this to the v2.3.0 milestone Dec 18, 2017
@svaarala
Copy link
Owner Author

So, as things stand now this pull should only affect Win32 + MinGW w.r.t. setjmp/longjmp. It'd be great if @Corion or @mamod could confirm that the pull works in practice for that combination - I'll merge once there is some confirmation of this.

@mamod
Copy link
Contributor

mamod commented Dec 19, 2017

@svaarala I've been checking this yesterday and I came to a conclusion that this may happened because of a bad design from my side, or maybe perl itself :P

I've been compiling Duktape along side with perl headers, perl redefines setjmp
# define setjmp PerlProc_setjmp and PerlProc_setjmp is perl's own Sigsetjmp implementation.

This is already confusing to me so I think this exact case is a major header pollution, separate the build process and linking duktape fixed the problem, at least for me, I'll check with @Corion and I'll try to test duktape compiling under MingW, I'll be commenting here if I find anything.

@svaarala svaarala modified the milestones: v2.3.0, v2.4.0 May 28, 2018
@svaarala svaarala removed this from the v2.4.0 milestone Jul 28, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants