unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: Dan Nicolaescu <dann@ics.uci.edu>
Cc: "Tobias C. Rittweiler" <tcr@freebits.de>, emacs-devel@gnu.org
Subject: Re: t and nil in pure memory?
Date: Fri, 13 Nov 2009 09:39:19 -0500	[thread overview]
Message-ID: <jwvws1uh545.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <200911130524.nAD5O5uu009102@godzilla.ics.uci.edu> (Dan Nicolaescu's message of "Thu, 12 Nov 2009 21:24:05 -0800 (PST)")

>> Actually, it's even worse than that: (interned) symbols have a `next'
>> field which points to the next symbol in the obarray (hash) bucket.
>> So that's yet another reason why (pure)symbols can have pointers to non
>> pure memory.
> Can't the next pointers could be NULL.

Of course: the last symbol in a bucket has a NULL there (as do
non-interned symbols).  Can't see why that would make a difference, tho.

> Is the next pointer used for anything else other than GC?

Yes, of course: it's used for the hash-lookup done in `intern' (and
`intern-soft').

> Because if it's not, then it seems that if the next pointer was stored
> in the obarray the cache footprint of a Lisp_Symbol would be smaller.

You can remove the `next' pointer to make symbols smaller (tho on 32bit
machines it would only make them smaller if you additionally remove
another field (like plist), because of the alignment constraint).
But then you need to link all interned symbols via an (external) list,
and since most symbols are interned (AFAIK), that would end up adding
more memory than is saved.  Admittedly, it could still result in
a smaller cache footprint.  It's just far from obvious that there's much
to gain here.

I still strongly believe there's more to be gained by optimizing the
tight mark_object (recursive) loop than by trying to squeeze a few more
bytes into the purespace: once your Emacs session grows sufficiently
large, the saving of not tracing through the purespace
becomes negligible.


        Stefan




  reply	other threads:[~2009-11-13 14:39 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-11 20:23 t and nil in pure memory? Dan Nicolaescu
2009-11-11 22:56 ` Stefan Monnier
2009-11-12  8:21   ` Tobias C. Rittweiler
2009-11-12 15:22     ` Stefan Monnier
2009-11-13  5:24       ` Dan Nicolaescu
2009-11-13 14:39         ` Stefan Monnier [this message]
2009-11-14 11:23           ` Richard Stallman
2009-11-15 20:25           ` David Kastrup
2009-11-16  1:26             ` Stefan Monnier
2009-11-16  8:24               ` David Kastrup
2009-11-17  7:57                 ` Richard Stallman
2009-11-17 13:16                   ` Stefan Monnier
2009-11-17 13:55                     ` David Kastrup
2009-11-18 12:11                     ` Richard Stallman
2009-11-18 15:52                       ` Stefan Monnier
2009-11-18 17:53                         ` Daniel Colascione
2009-11-18 18:19                           ` Stefan Monnier
2009-11-19 16:23                         ` Richard Stallman
2009-11-19 20:08                           ` Stefan Monnier
2009-11-20  4:12                             ` Richard Stallman
2009-11-20  5:47                               ` Chong Yidong
2009-11-22  6:48                                 ` Sam Steingold
2009-11-22  8:14                                   ` David Kastrup
2009-11-19 21:05                           ` Dan Nicolaescu
2009-11-15 21:08           ` Dan Nicolaescu
2009-11-16  1:34             ` Stefan Monnier
2009-11-18 18:53               ` Ken Raeburn
2009-11-18 19:03                 ` Daniel Colascione
2009-11-18 19:18                   ` Tom Tromey
2009-11-18 19:13                 ` Tom Tromey
2009-11-23  3:05                   ` Ken Raeburn
2009-11-23  5:31                     ` Stephen J. Turnbull
2009-11-24 16:03                       ` Ken Raeburn
2009-11-24 16:28                         ` Stefan Monnier
2009-11-19  1:01                 ` Stefan Monnier
2009-11-12  4:06 ` Eli Zaretskii
2009-11-13  4:55   ` Richard Stallman
2009-11-13  8:37     ` Eli Zaretskii
2009-11-14 11:23       ` Richard Stallman
2009-11-14 11:46         ` Eli Zaretskii
2009-11-15 22:38           ` Richard Stallman
2009-11-13  4:56 ` Richard Stallman
  -- strict thread matches above, loose matches on Subject: below --
2009-11-20  7:28 A. Soare
2009-11-20  8:09 ` David Kastrup

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=jwvws1uh545.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=dann@ics.uci.edu \
    --cc=emacs-devel@gnu.org \
    --cc=tcr@freebits.de \
    /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).