From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Emacs Lisp JIT Compiler Date: Thu, 16 Aug 2018 05:45:50 +0300 Message-ID: <83lg97hvvl.fsf@gnu.org> References: <87va8ej4o1.fsf@tromey.com> <87in4bi3et.fsf@tromey.com> NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1534387474 16994 195.159.176.226 (16 Aug 2018 02:44:34 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Thu, 16 Aug 2018 02:44:34 +0000 (UTC) Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org To: Tom Tromey Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 16 04:44:30 2018 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fq8H0-0004IK-Bl for ged-emacs-devel@m.gmane.org; Thu, 16 Aug 2018 04:44:30 +0200 Original-Received: from localhost ([::1]:53186 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fq8J6-0007Hv-SB for ged-emacs-devel@m.gmane.org; Wed, 15 Aug 2018 22:46:40 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:47232) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fq8IX-0007HZ-RG for emacs-devel@gnu.org; Wed, 15 Aug 2018 22:46:06 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fq8IU-0006wQ-N0 for emacs-devel@gnu.org; Wed, 15 Aug 2018 22:46:05 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:60235) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fq8IT-0006vH-Ua; Wed, 15 Aug 2018 22:46:02 -0400 Original-Received: from [176.228.60.248] (port=1637 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fq8IT-0004J8-AG; Wed, 15 Aug 2018 22:46:01 -0400 In-reply-to: <87in4bi3et.fsf@tromey.com> (message from Tom Tromey on Wed, 15 Aug 2018 18:03:06 -0600) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:228582 Archived-At: > From: Tom Tromey > Date: Wed, 15 Aug 2018 18:03:06 -0600 > Cc: Tom Tromey , emacs-devel@gnu.org > > btw on the JIT branch you can M-x jit-disassemble to see the code > for a function Only on platforms that have open_memstream, it seems. Which is a bad limitation, IMO; we could easily write the output to a temp file and then read it into a string instead. Thanks.