From: Pip Cet <pipcet@protonmail.com>
To: Eval EXEC <execvy@gmail.com>
Cc: "Eli Zaretskii" <eliz@gnu.org>,
"Gerd Möllmann" <gerd.moellmann@gmail.com>,
emacs-devel@gnu.org
Subject: Re: [scratch/igc] 985247b6bee crash on Linux, KDE, Wayland
Date: Thu, 05 Sep 2024 17:03:59 +0000 [thread overview]
Message-ID: <87zfomqbgk.fsf@protonmail.com> (raw)
In-Reply-To: <87h6aunilt.fsf@gmail.com>
"Eval EXEC" <execvy@gmail.com> writes:
> Pip Cet <pipcet@protonmail.com> writes:
>
>> "Eli Zaretskii" <eliz@gnu.org> writes:
>>
>>>> From: Gerd Möllmann <gerd.moellmann@gmail.com>
>>>> Cc: execvy@gmail.com, pipcet@protonmail.com, emacs-devel@gnu.org
>>>> Date: Thu, 05 Sep 2024 15:57:50 +0200
>>>>
>>>> Eli Zaretskii <eliz@gnu.org> writes:
>>>>
>>>> >> That means FRAME_OUTPUT_DATA can be null during the lifetime of a
>>>> >> frame. If that happens, we'll crash exactly in that way in the new code
>>>> >> for window frames.
>>>> >
>>>> > We never test for FRAME_OUTPUT_DATA being non-NULL in the code, so I
>>>> > don't think I understand why igc.c is different.
>>>>
>>>> Our scan functions can run at arbitrary times, including when
>>>> FRAME_OUTPUT_DATA is still null.
>>>
>>> OK, but if you look at the backtrace, you will see that in this case
>>> the scan functions were run from within code called by
>>> redisplay_internal, so I very much doubt that FRAME_OUTPUT_DATA was
>>> NULL in this case.
>>
>> But the frame we crashed tracing wasn't the same frame that was being
>> redisplayed. It's possible it was a destroyed ("dead") frame, right?
>> Then frame destruction would have freed and subsequently zeroed its
>> FRAME_OUTPUT_DATA.
>>
>> However, debugging further is the only way to be sure. If the OP still
>> has the core dump + executable for this crash, that should contain the
>> necessary data, even without waiting for the crash to happen again.
>>
>> And it definitely looks like a different bug from the previous reports,
>> which all involved consing up a list in -O3 code using -march=native.
>>
>> Pip
>
>
> I reproduce the crash again:
Thanks! I think we crash when scanning deleted frames, and I'll push a
tentative fix in a bit (but it would be good to be sure first, as Eli
had another viable theory for what might have happened).
> Its build by -O2:
> ```bash
> #!/usr/bin/env bash
> set -ex
>
> make extraclean
>
> BRANCH_NAME=$(git branch --show-current | sed 's/\//_/g')
> COMMIT_ID=$(git rev-parse --short=8 HEAD)
> BUILD_DIR=${BRANCH_NAME}-commit-${COMMIT_ID}
> INSTALL_PREFIX=$(realpath ../emacs-build/${BUILD_DIR})
>
> ./autogen.sh
> ./configure CFLAGS='-g3 -ggdb -O2 -fno-omit-frame-pointer -mtune=native -march=native' \
> --prefix=${INSTALL_PREFIX} \
> --with-mps=yes \
> --with-imagemagick \
> --with-modules \
> --without-compress-install \
> --with-native-compilation --with-mailutils\
> --enable-link-time-optimization \
> --with-tree-sitter --with-xinput2 \
> --with-dbus --with-native-compilation=aot \
> --with-file-notification=inotify\
> && make -j30 install
>
> rm ../emacs-build/emacs
> ln -s ${INSTALL_PREFIX} ../emacs-build/emacs
> #24 0x0000000000692cd8 in fix_frame (f=0x7fe4284bb270, ss=0x7ffd2708ff28) at /home/exec/Projects/git.savannah.gnu.org/git/emacs/src/igc.c:2068
> hlinfo = <optimized out>
> _ss = 0x7ffd2708ff28
> _mps_zs = <optimized out>
> _mps_ufs = 144115188176519176
> _mps_wt = <optimized out>
> _mps_w = <optimized out>
Can you run the commands Eli posted? They were:
> (gdb) frame 24
> (gdb) p f
> (gdb) p f->output_data
> (gdb) p f->output_data.x
> (gdb) p f->output_data.x->display_info
> (gdb) p f->output_data.x->display_info->mouse_highlight
Thanks!
Pip
next prev parent reply other threads:[~2024-09-05 17:03 UTC|newest]
Thread overview: 71+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-05 6:24 [scratch/igc] 985247b6bee crash on Linux, KDE, Wayland Eval EXEC
2024-09-05 7:14 ` Eval EXEC
2024-09-05 8:17 ` Eval EXEC
2024-09-05 7:21 ` Eval EXEC
2024-09-05 8:08 ` Eli Zaretskii
2024-09-05 8:14 ` Eval EXEC
2024-09-05 11:12 ` Pip Cet
2024-09-05 8:24 ` Helmut Eller
2024-09-05 8:28 ` Eval EXEC
2024-09-05 8:34 ` Helmut Eller
2024-09-05 8:37 ` Eval EXEC
2024-09-05 10:44 ` Eval EXEC
2024-09-05 11:01 ` Eli Zaretskii
2024-09-05 11:04 ` Eval EXEC
2024-09-05 11:09 ` Pip Cet
2024-09-05 11:15 ` Eval EXEC
2024-09-05 11:19 ` Pip Cet
2024-09-05 11:26 ` Eval EXEC
2024-09-05 16:04 ` Pip Cet
2024-09-05 16:32 ` Eval EXEC
2024-09-05 11:34 ` Eval EXEC
2024-09-05 11:49 ` Eval EXEC
2024-09-05 12:21 ` Eli Zaretskii
2024-09-05 13:20 ` Gerd Möllmann
2024-09-05 13:31 ` Eli Zaretskii
2024-09-05 13:37 ` Gerd Möllmann
2024-09-05 13:52 ` Eli Zaretskii
2024-09-05 13:57 ` Gerd Möllmann
2024-09-05 14:33 ` Eli Zaretskii
2024-09-05 14:44 ` Eli Zaretskii
2024-09-05 14:58 ` Gerd Möllmann
2024-09-05 16:19 ` Pip Cet
2024-09-05 16:40 ` Eval EXEC
2024-09-05 16:45 ` Eval EXEC
2024-09-05 16:57 ` Eval EXEC
2024-09-05 16:59 ` Eval EXEC
2024-09-05 17:03 ` Pip Cet [this message]
2024-09-05 17:05 ` Eval EXEC
2024-09-05 17:16 ` Gerd Möllmann
2024-09-05 18:46 ` Eli Zaretskii
2024-09-05 19:24 ` Gerd Möllmann
2024-09-05 19:31 ` Eli Zaretskii
2024-09-05 18:48 ` Eli Zaretskii
2024-09-05 18:56 ` Eval EXEC
2024-09-05 19:23 ` Eli Zaretskii
2024-09-05 19:31 ` Eli Zaretskii
2024-09-06 2:15 ` Eval EXEC
2024-09-06 3:10 ` Eval EXEC
2024-09-06 5:58 ` Pip Cet
2024-09-06 6:32 ` Eval EXEC
2024-09-06 7:41 ` Pip Cet
2024-09-06 8:28 ` Eval EXEC
2024-09-06 12:58 ` Pip Cet
2024-09-06 13:14 ` Eval EXEC
2024-09-06 10:57 ` Eli Zaretskii
2024-09-06 13:03 ` Eval EXEC
2024-09-06 19:29 ` Pip Cet
2024-09-07 5:57 ` Eli Zaretskii
2024-09-07 9:05 ` Pip Cet
2024-09-06 6:39 ` Eval EXEC
2024-09-06 7:43 ` Pip Cet
2024-09-07 7:46 ` Eval EXEC
2024-09-07 8:10 ` Pip Cet
2024-09-07 13:20 ` Gerd Möllmann
2024-09-06 6:05 ` Eli Zaretskii
2024-09-06 6:30 ` Pip Cet
2024-09-06 6:34 ` Eval EXEC
2024-09-06 11:49 ` Eli Zaretskii
2024-09-06 13:08 ` Eval EXEC
2024-09-05 19:01 ` Eval EXEC
2024-09-05 17:29 ` Eval EXEC
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87zfomqbgk.fsf@protonmail.com \
--to=pipcet@protonmail.com \
--cc=eliz@gnu.org \
--cc=emacs-devel@gnu.org \
--cc=execvy@gmail.com \
--cc=gerd.moellmann@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.