unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: Andrew Cohen <acohen@ust.hk>
Cc: emacs-devel@gnu.org
Subject: Re: sorting in C
Date: Sun, 27 Feb 2022 11:29:29 +0200	[thread overview]
Message-ID: <83r17oodxi.fsf@gnu.org> (raw)
In-Reply-To: <87o82sfzc6.fsf@ust.hk> (message from Andrew Cohen on Sun, 27 Feb 2022 17:11:53 +0800)

> From: Andrew Cohen <acohen@ust.hk>
> Date: Sun, 27 Feb 2022 17:11:53 +0800
> 
>     EZ> However, from your description, it doesn't sound like the more
>     EZ> optimal approach of allocating dynamically is much more
>     EZ> complicated.  In particular, what Mattias said should be easy
>     EZ> using the unwind-protect machinery we already have (and use in
>     EZ> many similar situations).  See the calls to
>     EZ> record_unwind_protect_ptr whose first argument is 'xfree'.  We
>     EZ> also have reallocation routines ready to be used.
> 
> That is how I am handling it now, but I'm not sure if I have it right
> (sorry for the naive question):
> 
> When I need new memory I call
> 
> :   specpdl_ref sa_count = SPECPDL_INDEX ();
> :   a = (Lisp_Object *) record_xmalloc (need * sizeof (Lisp_Object));
> 
> and I save =sa_count=; I guess =record_xmalloc= handles freeing the
> memory on exception. Later during the sorting process I free the memory
> explicitly with 
> 
> : safe_free (sa_count)
> 
> Does this seem right? (Probably, since I've been running this way for
> awhile and would have expected lots of problems if I weren't allocating
> and freeing the memory :))

I'd rather you didn't use safe_free, since that is for SAFE_ALLOCA
etc.  Just use unbind_to directly, like we do elsewhere where
record_xmalloc is used.



  reply	other threads:[~2022-02-27  9:29 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-22  2:52 sorting in C Andrew Cohen
2022-02-22 12:30 ` Eli Zaretskii
2022-02-22 12:54   ` Andrew Cohen
2022-02-22 13:11     ` Eli Zaretskii
2022-02-23  4:14   ` Andrew Cohen
2022-02-23 12:34     ` Eli Zaretskii
2022-02-23 12:53       ` Andrew Cohen
2022-02-23 13:14         ` Eli Zaretskii
2022-02-23 13:52           ` Andrew Cohen
2022-02-23 14:06           ` Andrew Cohen
2022-02-23 14:18             ` Eli Zaretskii
2022-02-26 23:54               ` Andrew Cohen
2022-02-27  2:27                 ` Andrew Cohen
2022-02-27  7:28                   ` Eli Zaretskii
2022-02-27  9:11                     ` Andrew Cohen
2022-02-27  9:29                       ` Eli Zaretskii [this message]
2022-02-27 10:42                         ` Andrew Cohen
2022-03-04  0:13                           ` Andrew Cohen
2022-03-04  7:05                             ` Eli Zaretskii
2022-02-23 13:19         ` Yuri Khan
2022-02-23 14:12           ` Andrew Cohen
2022-02-22 13:12 ` Lars Ingebrigtsen

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=83r17oodxi.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=acohen@ust.hk \
    --cc=emacs-devel@gnu.org \
    /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).