unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Pip Cet <pipcet@gmail.com>
To: Andrea Corallo <akrl@sdf.org>
Cc: andrewjmoreton@gmail.com, 46256@debbugs.gnu.org
Subject: bug#46256: [feature/native-comp] AOT eln files ignored if run from build tree
Date: Sun, 7 Mar 2021 22:16:58 +0000	[thread overview]
Message-ID: <CAOqdjBcHEH4ooeDLgwDmr=r-KMdY8XDs-BMRAzNkKg8YM2JthA@mail.gmail.com> (raw)
In-Reply-To: <xjf8s6yzl7w.fsf@sdf.org>

On Sun, Mar 7, 2021 at 9:51 PM Andrea Corallo <akrl@sdf.org> wrote:
> Pip Cet <pipcet@gmail.com> writes:
> > On Sun, Mar 7, 2021 at 8:17 PM Andrea Corallo via Bug reports for GNU
> > Emacs, the Swiss army knife of text editors <bug-gnu-emacs@gnu.org>
> > wrote:
> >> Eli Zaretskii <eliz@gnu.org> writes:
> >> >> From: Andrea Corallo <akrl@sdf.org>
> >> >> Cc: 46256@debbugs.gnu.org, andrewjmoreton@gmail.com
> >> >> Date: Sun, 07 Mar 2021 18:53:50 +0000
> >> What I think is going on here:
> >>
> >> The same .eln file is loaded two times, we detect that and try to reuse
> >> the same compilation unit (the Lisp object) instead of a new one.
> >>
> >> We keep a pointer to the compilation unit representing the .eln file in
> >> each .eln.  Here we read it and we have it into 'saved_cu', we try to
> >> dereference it and extract the CU with XNATIVE_COMP_UNIT but something
> >> goes wrong.
> >>
> >> This object might have been GC'ed for some reason and we might be
> >> looking at the same GC issue I've seen on 32bit wide-int (my guess).
> >> *If* this is the case the question is: why is the CU GC'ed?
> >
> > Why wouldn't it be? I'm trying to follow along here :-)
>
> If the CU was GC'ed the eln should have been dlclosed.

Wait, I thought this was on Windows?

> If that's the
> case at the next load we should get a fresh handle

You're assuming
1. FreeLibrary() succeeded
2. The module's refcount was 1
3. The module wasn't pinned.

If any of these assumptions is violated, the behavior would be
precisely as observed.

It's easy enough to test this: we can put a printf in dynlib_open
which tells us whether we see the same handle more than once.

> and 'saved_cu' should
> be NULL (ops!  Qnil... :/) because static allocated.

Well, for one reason or another, it wasn't reset to Qnil.

> Here what we see is that we are loading two times without dlclosing and
> the object pointed by 'cu_saved' has some issue.

I don't think so. I think we called dynlib_close(), it didn't actually
unmap the library, and everything else follows.

> So thinking about: the fact that the eln was never dlclosed should be
> prove that the CU was not GC'ed and so I was wrong.

I don't think you were wrong.

Pip





  reply	other threads:[~2021-03-07 22:16 UTC|newest]

Thread overview: 179+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-02 11:11 bug#46256: [feature/native-comp] AOT eln files ignored if run from build tree Andy Moreton
2021-02-03 20:51 ` akrl--- via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-04  0:03   ` Andy Moreton
2021-02-04  1:40     ` Andy Moreton
2021-02-05 14:42       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-05 20:59         ` Andy Moreton
2021-02-05 23:55       ` Andy Moreton
2021-02-17 22:39         ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-18 20:48           ` Andy Moreton
2021-02-18 21:00             ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-19  8:02               ` Eli Zaretskii
2021-02-19 14:49                 ` Andy Moreton
2021-02-19 15:28                   ` Eli Zaretskii
2021-02-19 16:01                   ` Andrea Corallo
2021-02-26 20:34                   ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-26 20:45                     ` Eli Zaretskii
2021-02-26 20:48                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-26 20:52                         ` Eli Zaretskii
2021-02-27  6:58                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-27  7:55                             ` Eli Zaretskii
2021-02-27 12:08                     ` Andy Moreton
2021-02-27 19:14                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-27 19:20                         ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-27 19:46                         ` Andy Moreton
2021-02-27 21:58                           ` Andy Moreton
2021-02-28 17:35                             ` Eli Zaretskii
2021-02-28 21:15                               ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-01  5:36                                 ` Eli Zaretskii
2021-03-01  6:34                                   ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-01  9:48                               ` Andy Moreton
2021-03-03 18:27                                 ` Eli Zaretskii
2021-03-03 18:43                                   ` Eli Zaretskii
2021-03-03 19:46                                     ` Eli Zaretskii
2021-03-03 20:04                                       ` Eli Zaretskii
2021-03-03 20:21                                         ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-04  8:30                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-04 11:54                                             ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-04 14:13                                               ` Eli Zaretskii
2021-03-04 14:24                                                 ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-04 14:49                                                   ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-04 17:24                                                     ` Eli Zaretskii
2021-03-04 18:56                                                       ` Eli Zaretskii
2021-03-04 20:11                                                         ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-04 21:33                                                           ` Eli Zaretskii
2021-03-05  9:32                                                             ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-05 10:09                                                               ` Pip Cet
2021-03-05 10:19                                                                 ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-06  1:47                                                                   ` Andy Moreton
2021-03-06  9:54                                                                     ` Pip Cet
2021-03-06 10:30                                                                       ` Eli Zaretskii
2021-03-06 12:15                                                                       ` Andy Moreton
2021-03-06 13:10                                                                         ` Eli Zaretskii
2021-03-06 15:18                                                                           ` Andy Moreton
2021-03-06 18:37                                                                             ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-07  9:22                                                                         ` Pip Cet
2021-03-05 11:55                                                               ` Eli Zaretskii
2021-03-05 13:56                                                                 ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-05 14:54                                                                   ` Eli Zaretskii
2021-03-05 15:18                                                                     ` Pip Cet
2021-03-05 15:22                                                                       ` Eli Zaretskii
2021-03-05 15:54                                                                         ` Pip Cet
2021-03-05 18:44                                                                           ` Eli Zaretskii
2021-03-05 15:26                                                                     ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-04 21:30                                                         ` Andy Moreton
2021-03-04 20:47                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-05 13:52                                                     ` Eli Zaretskii
2021-03-05 14:04                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-05 15:00                                                         ` Eli Zaretskii
2021-03-05 15:56                                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-05 18:46                                                             ` Eli Zaretskii
2021-03-05 19:22                                                               ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-05 20:31                                                                 ` Eli Zaretskii
2021-03-05 22:25                                                                   ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-06  7:39                                                                     ` Eli Zaretskii
2021-03-06 14:38                                                                 ` Eli Zaretskii
2021-03-06 15:35                                                                   ` Eli Zaretskii
2021-03-06 17:47                                                                     ` Eli Zaretskii
2021-03-06 18:31                                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-06 18:48                                                                         ` Eli Zaretskii
2021-03-06 19:19                                                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-06 19:40                                                                             ` Pip Cet
2021-03-06 19:48                                                                               ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-06 20:24                                                                                 ` Eli Zaretskii
2021-03-06 20:31                                                                                   ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-06 20:53                                                                                     ` Eli Zaretskii
2021-03-06 21:02                                                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-07  5:55                                                                                         ` Eli Zaretskii
2021-03-07  6:57                                                                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-07  7:40                                                                                             ` Eli Zaretskii
2021-03-07 19:05                                                                                               ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-07 18:56                                                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-07 19:08                                                                                         ` Eli Zaretskii
2021-03-06 20:08                                                                             ` Eli Zaretskii
2021-03-06 20:19                                                                               ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-06 18:30                                                                   ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-06 18:44                                                                     ` Eli Zaretskii
2021-03-06 19:21                                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-06 20:10                                                                         ` Eli Zaretskii
2021-03-06 20:26                                                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-06  0:33                                             ` Andy Moreton
2021-03-06  7:42                                               ` Eli Zaretskii
2021-03-06 12:09                                                 ` Andy Moreton
2021-03-06 13:05                                                   ` Eli Zaretskii
2021-03-06 15:46                                                     ` Andy Moreton
2021-03-06 19:31                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-07 17:59                                     ` Eli Zaretskii
2021-03-07 18:53                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-07 19:15                                         ` Eli Zaretskii
2021-03-07 20:16                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-07 21:27                                             ` Pip Cet
2021-03-07 21:47                                               ` Pip Cet
2021-03-07 21:51                                               ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-07 22:16                                                 ` Pip Cet [this message]
2021-03-08 13:26                                                   ` Eli Zaretskii
2021-03-08 13:52                                                     ` Pip Cet
2021-03-08 14:39                                                       ` Eli Zaretskii
2021-03-08 14:50                                                         ` Pip Cet
2021-03-08 15:14                                                           ` Eli Zaretskii
2021-03-08 17:40                                                           ` Eli Zaretskii
2021-03-08  3:31                                                 ` Eli Zaretskii
2021-03-08  5:54                                                   ` Pip Cet
2021-03-08  6:48                                                     ` Pip Cet
2021-03-08 10:14                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-08 10:45                                                         ` Pip Cet
2021-03-08 15:02                                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-08 15:09                                                             ` Pip Cet
2021-03-08 15:38                                                               ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09 12:36                                                           ` Eli Zaretskii
2021-03-09  8:32                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09 13:05                                                         ` Eli Zaretskii
2021-03-09 13:58                                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09 16:36                                                             ` Eli Zaretskii
2021-03-09 17:10                                                               ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-08 14:11                                                     ` Eli Zaretskii
2021-03-08 14:27                                                       ` Pip Cet
2021-03-08 18:06                                                         ` Eli Zaretskii
2021-03-08 18:15                                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-08 20:37                                                             ` Eli Zaretskii
2021-03-09  7:03                                                               ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09 12:55                                                                 ` Eli Zaretskii
2021-03-09 14:55                                                                   ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09 16:42                                                                     ` Eli Zaretskii
2021-03-09 18:31                                                                     ` Eli Zaretskii
2021-03-09 19:38                                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09 16:30                                                                   ` Eli Zaretskii
2021-03-10 13:14                                                                     ` Alan Mackenzie
2021-03-10 13:20                                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-10 14:07                                                                       ` Eli Zaretskii
2021-03-10 15:24                                                                         ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-10 16:56                                                                         ` Alan Mackenzie
2021-03-10 17:43                                                                           ` Eli Zaretskii
2021-03-08 18:18                                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-08 18:32                                                             ` Pip Cet
2021-03-08 20:47                                                               ` Eli Zaretskii
2021-03-08 20:50                                                                 ` Pip Cet
2021-03-09  8:28                                                                   ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09  8:35                                                                     ` Pip Cet
2021-03-09  8:43                                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09 14:32                                                                       ` Eli Zaretskii
2021-03-08 20:49                                                             ` Eli Zaretskii
2021-03-09  8:35                                                               ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09 14:34                                                                 ` Eli Zaretskii
2021-03-09 15:38                                                                   ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09 16:51                                                                     ` Eli Zaretskii
2021-03-09 17:04                                                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-09 18:20                                                                         ` Eli Zaretskii
2021-03-09 19:23                                                                           ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-08 18:13                                                         ` Eli Zaretskii
2021-03-08 20:53                                                           ` Pip Cet
2021-03-08 15:07                                             ` Eli Zaretskii
2021-03-03 18:48                                   ` Eli Zaretskii
2021-03-03 19:28                                     ` Eli Zaretskii
2021-03-03 19:50                                       ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-03 20:08                                         ` Eli Zaretskii
2021-03-03 19:37                                     ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-03-03 20:13                                       ` Eli Zaretskii
2021-02-28 21:04                             ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-05 14:39     ` Andrea Corallo via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-02-05 15:08       ` Eli Zaretskii

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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAOqdjBcHEH4ooeDLgwDmr=r-KMdY8XDs-BMRAzNkKg8YM2JthA@mail.gmail.com' \
    --to=pipcet@gmail.com \
    --cc=46256@debbugs.gnu.org \
    --cc=akrl@sdf.org \
    --cc=andrewjmoreton@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 public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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).