unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: LdBeth <andpuke@foxmail.com>
To: Tomas Hlavaty <tom@logand.com>
Cc: emacs-devel@gnu.org
Subject: Re: funcall consing
Date: Fri, 31 Dec 2021 22:27:00 +0800	[thread overview]
Message-ID: <tencent_839E310C481D0F2BACBF7FB7F06E22C7B107@qq.com> (raw)
In-Reply-To: <87ee5tm422.fsf@logand.com>

>>>>> In <87ee5tm422.fsf@logand.com> 
>>>>>	Tomas Hlavaty <tom@logand.com> wrote:
Tomas> Hi,

Tomas> in order to optimize some elisp code, I am trying to understand where my
Tomas> consing comes from.  So far it looks like that my assumption about the
Tomas> cause of consing are wrong and that the cause of consing is funcall.  Is
Tomas> that plausible?  I am seeing similar results like this (lexical-binding,
Tomas> also byte compiled):

Tomas> (benchmark-run 10 (dotimes (i 100000) (1+ i)))
Tomas> ;;(2.720941123 40 1.7525918699999998)
Tomas> (let ((x (lambda (i) (1+ i)))) (benchmark-run 10 (dotimes (i 100000) (funcall x i))))
Tomas> ;;(4.9373091140000005 80 3.4835688719999958)

Tomas> i.e. funcall conses a lot and introduces cca double performance penalty.

Tomas> Is that right or am I doing something wrong?

Tomas> Would it be possible to improve that?

Try this:

```
(defun bar () (benchmark-run 10 (dotimes (i 100000) (1+ i))))
(defun foo () (let ((x (lambda (i) (1+ i))))
  (benchmark-run 10 (dotimes (i 100000) (funcall x i)))))

(byte-compile 'foo)
(byte-compile 'bar)

(foo)
(0.054734 0 0.0)
(bar)
(0.019939000000000002 0 0.0)
```




  parent reply	other threads:[~2021-12-31 14:27 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-31 11:01 funcall consing Tomas Hlavaty
2021-12-31 12:33 ` Eli Zaretskii
2021-12-31 15:09   ` LdBeth
2021-12-31 17:00     ` Tomas Hlavaty
2021-12-31 18:42     ` Eli Zaretskii
2022-01-01  4:47       ` Richard Stallman
2022-01-01  7:26         ` Eli Zaretskii
2022-01-02 13:30           ` Tomas Hlavaty
2022-01-02 14:46             ` Eli Zaretskii
2022-01-02 15:59               ` Tomas Hlavaty
2022-01-02 18:53             ` Stefan Monnier
2022-01-01  4:51       ` LdBeth
2022-01-01  7:28         ` Eli Zaretskii
2022-01-01 17:05           ` Stefan Monnier
2022-01-01 17:21             ` Eli Zaretskii
2021-12-31 14:27 ` LdBeth [this message]
2021-12-31 16:56   ` Tomas Hlavaty

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=tencent_839E310C481D0F2BACBF7FB7F06E22C7B107@qq.com \
    --to=andpuke@foxmail.com \
    --cc=emacs-devel@gnu.org \
    --cc=tom@logand.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).