unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Debugging emacs memory management
@ 2015-02-11  6:01 Dima Kogan
  2015-02-11 15:05 ` Stefan Monnier
                   ` (2 more replies)
  0 siblings, 3 replies; 37+ messages in thread
From: Dima Kogan @ 2015-02-11  6:01 UTC (permalink / raw)
  To: emacs-devel

Hi.

I'm running emacs snapshots from the latest git, usually as a
long-running daemon. For a few months now I've had to restart my emacs
session every week or so because it eats all my RAM, and cycling emacs
is the only way to get the RAM back. So two main questions:

1. How does one debug this? There's a memory profiler (launched with
(profiler-start) ), but it only instruments allocations, which is
useless for hunting leaks. Past that, there's some mailing list wisdom
such as this:

 https://lists.gnu.org/archive/html/emacs-devel/2008-12/msg00782.html

It turned up some variables that it claimed were about 20MB long, not x
GB, but admittedly it's not obvious to me that 

 (length (prin1-to-string (symbol-value sym)))

is an accurate measure of the memory footprint of a variable, especially
if it represents something like a hash table.

That's about it, though. Are there better techniques available now? Are
there obvious ways to improve the profiler? Should I look at it?



2. This is specifically about my problem, so maybe this is better as a
bug report; putting it here anyway.

As a test, I tried to split out my ERC and mu4e use to a different
session and that made no difference, so it's not those. As a random
guess, I have a sequence that appears to leak, but I'm not 100% sure how
this is supposed to work. As I ran through this sequence, I looked at
resident memory with this:

 while (true) { sleep 1; ps -o rss `pidof emacs-snapshot` | grep --line-buffered -v RSS }

init.el only has this line:

 (global-set-key (kbd "C-S-w") 'delete-region)

Sequence:

1.  seq 1000000 > /tmp/dat                  [ create large file on disk ]
2.  emacs-snapshot                          [ 32MB RSS ]

3.  open /tmp/dat                           [ 40MB ]
4.  (delete-region (point-min) (point-max)) [ 40MB ]
5.  (undo)                                  [ 47MB ]
6.  (kill-buffer)                           [ 40MB ]
7.  (garbage-collect)                       [ 40MB ]

3a. open /tmp/dat                           [ 46MB ]
4a. (delete-region (point-min) (point-max)) [ 60MB ]
5a. (undo)                                  [ 60MB ]
6a. (kill-buffer)                           [ 60MB ]
7a. (garbage-collect)                       [ 60MB ]

3b. open /tmp/dat                           [ 60MB ]
4b. (delete-region (point-min) (point-max)) [ 60MB ]
5b. (undo)                                  [ 60MB ]
6b. (kill-buffer)                           [ 60MB ]
7b. (garbage-collect)                       [ 60MB ]

So here it looks like 28MB vanished. Is this a leak? I'm using
(delete-region) specifically because it doesn't move anything to the
kill ring. The undo information shouldn't persist either because the
buffer is being killed.

Without knowing the internals, it looks like a leak, but I can't be
sure. If I move around the /tmp/dat buffer, and (delete-region) various
other chunks, I can eat up even more memory. The exact usage values
aren't consistent every time, but it always looks like it leaks. Also,
'emacs -Q' shows the same behavior, just not as badly. Advice?

dima



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-02-11  6:01 Debugging emacs memory management Dima Kogan
@ 2015-02-11 15:05 ` Stefan Monnier
  2015-02-15 20:28   ` Dima Kogan
  2015-02-11 19:07 ` Florian Weimer
  2015-09-15 19:27 ` Dima Kogan
  2 siblings, 1 reply; 37+ messages in thread
From: Stefan Monnier @ 2015-02-11 15:05 UTC (permalink / raw)
  To: Dima Kogan; +Cc: emacs-devel

> 1. How does one debug this? There's a memory profiler (launched with
> (profiler-start) ),

Right, it's not really memory profiler.

Have you tried `memory-usage' (available from a GNU ELPA near you)?
It won't give you an answer, but it does give a slightly more detailed
account of the memory known to be used, so we can tell whether it's Lisp
data that's retained for too long, or whether the leak is in data not
managed in the Lisp heap, for example.

> 1.  seq 1000000 > /tmp/dat                  [ create large file on disk ]
> 2.  emacs-snapshot                          [ 32MB RSS ]

> 3.  open /tmp/dat                           [ 40MB ]
> 4.  (delete-region (point-min) (point-max)) [ 40MB ]
> 5.  (undo)                                  [ 47MB ]
> 6.  (kill-buffer)                           [ 40MB ]
> 7.  (garbage-collect)                       [ 40MB ]

> 3a. open /tmp/dat                           [ 46MB ]
> 4a. (delete-region (point-min) (point-max)) [ 60MB ]
> 5a. (undo)                                  [ 60MB ]
> 6a. (kill-buffer)                           [ 60MB ]
> 7a. (garbage-collect)                       [ 60MB ]

> 3b. open /tmp/dat                           [ 60MB ]
> 4b. (delete-region (point-min) (point-max)) [ 60MB ]
> 5b. (undo)                                  [ 60MB ]
> 6b. (kill-buffer)                           [ 60MB ]
> 7b. (garbage-collect)                       [ 60MB ]

Failure to shrink after you stop using something is not considered
a leak: there can be any number of reasons why some part of Emacs
decides not to return the space to the OS, even though it's known (at
some level) to be free and can/will be reused for something else in
the future.

> Without knowing the internals, it looks like a leak, but I can't be
> sure.  If I move around the /tmp/dat buffer, and (delete-region) various
> other chunks, I can eat up even more memory.

That's no guarantee that there's a leak, but if you can keep eating
arbitrary amount of memory by repeated use of
delete-region+kill-buffer+find-file then it does look like
a leak, indeed.


        Stefan



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-02-11  6:01 Debugging emacs memory management Dima Kogan
  2015-02-11 15:05 ` Stefan Monnier
@ 2015-02-11 19:07 ` Florian Weimer
  2015-09-15 19:27 ` Dima Kogan
  2 siblings, 0 replies; 37+ messages in thread
From: Florian Weimer @ 2015-02-11 19:07 UTC (permalink / raw)
  To: Dima Kogan; +Cc: emacs-devel

* Dima Kogan:

> I'm running emacs snapshots from the latest git, usually as a
> long-running daemon. For a few months now I've had to restart my emacs
> session every week or so because it eats all my RAM, and cycling emacs
> is the only way to get the RAM back.

For discovering incorrectly retained GCed objects, I used this patch,
which adds a `garbage-collect-dump' function:

<http://lists.gnu.org/archive/html/emacs-devel/2004-09/msg00951.html>

However, the leak in question was a native memory allocation, so I had
to use a different kind of allocation tracking:

<http://lists.gnu.org/archive/html/emacs-devel/2004-09/msg00983.html>

It probably won't work on current systems due to frame pointer
omission.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-02-11 15:05 ` Stefan Monnier
@ 2015-02-15 20:28   ` Dima Kogan
  2015-02-15 20:47     ` Eli Zaretskii
  0 siblings, 1 reply; 37+ messages in thread
From: Dima Kogan @ 2015-02-15 20:28 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: emacs-devel

Stefan Monnier <monnier@iro.umontreal.ca> writes:

> Have you tried `memory-usage' (available from a GNU ELPA near you)?

This was useful; thanks for the suggestion. My current emacs session has
been running for 4 days. The OS ways that it's usinng 1143MB of RAM.
This is too much, and will keep growing quickly with time.
(memory-usage) says

   Garbage collection stats:
   ((conses 16 1059730 177764) (symbols 48 58721 0) (miscs 40 18919 13229) (strings 32 168864 83786) (string-bytes 1 5968100) (vectors 16 90041) (vector-slots 8 2368533 70421) (floats 8 1302 1671) (intervals 56 94677 4911) (buffers 976 375) (heap 1024 1257157 52692))

    =>	16.2MB (+ 2.71MB dead) in conses
           2.69MB (+ 0.00kB dead) in symbols
            739kB (+  517kB dead) in miscs
           5.15MB (+ 2.56MB dead) in strings
           5.69MB in string-bytes
           1.37MB in vectors
           18.1MB (+  550kB dead) in vector-slots
           10.2kB (+ 13.1kB dead) in floats
           5.06MB (+  269kB dead) in intervals
            357kB in buffers
           1.20GB (+ 51.5MB dead) in heap

   Total in lisp objects: 1.31GB (live 1.25GB, dead 58.0MB)

   Buffer ralloc memory usage:
   122 buffers
   37.6MB total (64.9kB in gaps)

   ...


No significant difference is observed when I (garbage-collect). It looks
like the bulk of the memory is in the "heap". Is this meaningful to
anybody? Any insight greatly appreciated.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-02-15 20:28   ` Dima Kogan
@ 2015-02-15 20:47     ` Eli Zaretskii
  2015-02-16  1:39       ` Stefan Monnier
  0 siblings, 1 reply; 37+ messages in thread
From: Eli Zaretskii @ 2015-02-15 20:47 UTC (permalink / raw)
  To: Dima Kogan; +Cc: monnier, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Date: Sun, 15 Feb 2015 12:28:33 -0800
> Cc: emacs-devel@gnu.org
> 
>            1.20GB (+ 51.5MB dead) in heap
> 
>    Total in lisp objects: 1.31GB (live 1.25GB, dead 58.0MB)
> 
>    Buffer ralloc memory usage:
>    122 buffers
>    37.6MB total (64.9kB in gaps)
> 
>    ...
> 
> 
> No significant difference is observed when I (garbage-collect). It looks
> like the bulk of the memory is in the "heap". Is this meaningful to
> anybody? Any insight greatly appreciated.

It probably means that the leak is not in Lisp objects, but in memory
allocated via xmalloc for other means.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-02-15 20:47     ` Eli Zaretskii
@ 2015-02-16  1:39       ` Stefan Monnier
  2015-02-17  7:59         ` Dima Kogan
  0 siblings, 1 reply; 37+ messages in thread
From: Stefan Monnier @ 2015-02-16  1:39 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Dima Kogan, emacs-devel

> It probably means that the leak is not in Lisp objects, but in memory
> allocated via xmalloc for other means.

IIUC it can also be memory allocated with plain old malloc by library code.


        Stefan



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-02-16  1:39       ` Stefan Monnier
@ 2015-02-17  7:59         ` Dima Kogan
  2015-02-17 15:59           ` Eli Zaretskii
  2015-02-18  0:07           ` Stefan Monnier
  0 siblings, 2 replies; 37+ messages in thread
From: Dima Kogan @ 2015-02-17  7:59 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: Eli Zaretskii, emacs-devel

Stefan Monnier <monnier@IRO.UMontreal.CA> writes:

>> It probably means that the leak is not in Lisp objects, but in memory
>> allocated via xmalloc for other means.
>
> IIUC it can also be memory allocated with plain old malloc by library code.

Just so I'm clear, is it normal for almost all the consumed memory to be
"heap" memory, as I'm observing?



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-02-17  7:59         ` Dima Kogan
@ 2015-02-17 15:59           ` Eli Zaretskii
  2015-02-18  0:07           ` Stefan Monnier
  1 sibling, 0 replies; 37+ messages in thread
From: Eli Zaretskii @ 2015-02-17 15:59 UTC (permalink / raw)
  To: Dima Kogan; +Cc: monnier, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Cc: Eli Zaretskii <eliz@gnu.org>, emacs-devel@gnu.org
> Date: Mon, 16 Feb 2015 23:59:23 -0800
> 
> Just so I'm clear, is it normal for almost all the consumed memory to be
> "heap" memory, as I'm observing?

That's where Emacs allocates dynamic memory from, yes.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-02-17  7:59         ` Dima Kogan
  2015-02-17 15:59           ` Eli Zaretskii
@ 2015-02-18  0:07           ` Stefan Monnier
  1 sibling, 0 replies; 37+ messages in thread
From: Stefan Monnier @ 2015-02-18  0:07 UTC (permalink / raw)
  To: Dima Kogan; +Cc: Eli Zaretskii, emacs-devel

> Just so I'm clear, is it normal for almost all the consumed memory to be
> "heap" memory, as I'm observing?

The "heap" memory is the memory managed by malloc.  It's frequently
significantly larger than the size of the Lisp heap (it usually
includes the Lisp heap, so it's normal to be larger), because of all the
memory allocated for fonts, images, GUI widgets, you name it, ...


        Stefan



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-02-11  6:01 Debugging emacs memory management Dima Kogan
  2015-02-11 15:05 ` Stefan Monnier
  2015-02-11 19:07 ` Florian Weimer
@ 2015-09-15 19:27 ` Dima Kogan
  2015-09-16 16:28   ` Paul Eggert
                     ` (2 more replies)
  2 siblings, 3 replies; 37+ messages in thread
From: Dima Kogan @ 2015-09-15 19:27 UTC (permalink / raw)
  To: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 2432 bytes --]

Dima Kogan <lists@dima.secretsauce.net> writes:

> I'm running emacs snapshots from the latest git, usually as a
> long-running daemon. For a few months now I've had to restart my emacs
> session every week or so because it eats all my RAM, and cycling emacs
> is the only way to get the RAM back.

Hi. I'm resurrecting this thread. My issues have never gone away, and
I've been unhappily living with this bug for at least a year now.
Yesterday I FINALLY found a sequence of steps to reliably reproduce the
issue, so debugging became possible. Sequence:

1. emacs --daemon
2. Repeat:
   1. pop up a number of emacs clients
   2. kill clients

I do this in zsh:

  while true; do for i in `seq 10`; do timeout 5 emacsclient.emacs-snapshot -a '' -c & ; done; sleep 10; done

While this runs, the memory consumption can be monitored with

  while (true) { ps -h -p `pidof emacs-snapshot-lucid` -O rss; sleep 1 }

It looked like something in my .emacs.d/init.el was causing the leak,
and a bisection found it: winner-mode

Apparently winner-mode keeps a list of all active frames, and it doesn't
clean dead frames off of this list, so a daemon workflow where frames
are often created/removed causes it to keep references to data
structures that are no longer active, preventing the gc from cleaning
them up. I'm attaching a patch that fixes this in winner-mode.

I'm also attaching a plot of memory usage over time, as the clients are
opened and closed. As you can see, patching winner-mode makes a HUGE
difference.

However another observation is that even with an empty init.el this
sequence still leaks memory, albeit more slowly. It looks like a bug
also. I have some malloc tracing set up with backtrace reporting, but
there're a LOT of allocations, and I haven't figured out a good way to
sort through them yet.

Another observation is that the gc never really gives back the memory.
If I run the unpatched winner-mode for a while, then manually clear out
the dead frames from the list and (garbage-collect), the memory usage
(as reported by the OS) does not go back down. What does happen is that
the memory usage stays flat for a while when clients are
created/deleted, and starts climbing again much later. So the memory IS
freed, but emacs never gives it back to the OS.

I'll run with this for a while, and report back if I have any more
patches. Hopefully this fixes my main issue; we'll see. Any further
insight welcome.



[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-winner-no-longer-holds-on-to-dead-frames.patch --]
[-- Type: text/x-diff, Size: 934 bytes --]

From 28a605a074afcde758ef0a2b1a7b5756f85b787a Mon Sep 17 00:00:00 2001
From: Dima Kogan <dima@secretsauce.net>
Date: Tue, 15 Sep 2015 11:53:54 -0700
Subject: [PATCH] winner no longer holds on to dead frames

This prevents a potentially massive memory leak
---
 lisp/winner.el | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lisp/winner.el b/lisp/winner.el
index fdf6213..ecb009b 100644
--- a/lisp/winner.el
+++ b/lisp/winner.el
@@ -177,6 +177,11 @@ You may want to include buffer names such as *Help*, *Apropos*,
 ;; Called whenever the window configuration changes
 ;; (a `window-configuration-change-hook').
 (defun winner-change-fun ()
+
+  ;; cull dead frames
+  (setq winner-modified-list
+        (cl-remove-if-not 'frame-live-p winner-modified-list))
+
   (unless (or (memq (selected-frame) winner-modified-list)
               (/= 0 (minibuffer-depth)))
     (push (selected-frame) winner-modified-list)))
-- 
2.1.4


[-- Attachment #3: emacs_memory_consumption.pdf --]
[-- Type: application/pdf, Size: 17509 bytes --]

^ permalink raw reply related	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-15 19:27 ` Dima Kogan
@ 2015-09-16 16:28   ` Paul Eggert
  2015-09-20 22:01     ` Dima Kogan
  2015-09-16 16:34   ` Davis Herring
  2015-09-16 22:03   ` Markus Triska
  2 siblings, 1 reply; 37+ messages in thread
From: Paul Eggert @ 2015-09-16 16:28 UTC (permalink / raw)
  To: Dima Kogan, emacs-devel

Thanks for all that work.  I installed the patch after tweaking its comment and 
ChangeLog entry.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-15 19:27 ` Dima Kogan
  2015-09-16 16:28   ` Paul Eggert
@ 2015-09-16 16:34   ` Davis Herring
  2015-09-16 22:03   ` Markus Triska
  2 siblings, 0 replies; 37+ messages in thread
From: Davis Herring @ 2015-09-16 16:34 UTC (permalink / raw)
  To: Dima Kogan; +Cc: emacs-devel

> Another observation is that the gc never really gives back the memory.
> [...]
> So the memory IS freed, but emacs never gives it back to the OS.

The Emacs GC can relocate some things (e.g., strings) to help make
memory available all the way back to the OS, but -- at least for many
small allocations -- it is typical that memory freed within a process
never makes it back to the OS.  The "small allocations" is because
modern malloc(3)s use mmap(2) to obtain large blocks of memory and those
are returned to the OS immediately upon free(3).  Otherwise the best you
can hope for is for some of Emacs' pages to be dropped to swap, where
(if that memory is never used again by Emacs) they will languish until
Emacs exits.

Davis

-- 
This product is sold by volume, not by mass.  If it appears too dense or
too sparse, it is because mass-energy conversion has occurred during
shipping.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-15 19:27 ` Dima Kogan
  2015-09-16 16:28   ` Paul Eggert
  2015-09-16 16:34   ` Davis Herring
@ 2015-09-16 22:03   ` Markus Triska
  2 siblings, 0 replies; 37+ messages in thread
From: Markus Triska @ 2015-09-16 22:03 UTC (permalink / raw)
  To: emacs-devel

Hi Dima,

Dima Kogan <lists@dima.secretsauce.net> writes:

> Yesterday I FINALLY found a sequence of steps to reliably reproduce the
> issue, so debugging became possible. Sequence:

Many thanks for looking into this!

> However another observation is that even with an empty init.el this
> sequence still leaks memory, albeit more slowly. It looks like a bug
> also. I have some malloc tracing set up with backtrace reporting, but
> there're a LOT of allocations, and I haven't figured out a good way to
> sort through them yet.

I have previously also found memory leaks in connection with
emacsclient. Please see #1504 for a test case:

   http://debbugs.gnu.org/cgi/bugreport.cgi?bug=1504

A major problem with such memory management issues is that they prevent
you from running longer automated test cases to track down other, often
unrelated, issues that sometimes take a long time to reproduce.

Therefore, thank you for your work in this direction!

All the best,
Markus




^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-16 16:28   ` Paul Eggert
@ 2015-09-20 22:01     ` Dima Kogan
  2015-09-21  6:46       ` Eli Zaretskii
  0 siblings, 1 reply; 37+ messages in thread
From: Dima Kogan @ 2015-09-20 22:01 UTC (permalink / raw)
  To: Paul Eggert; +Cc: emacs-devel

Paul Eggert <eggert@cs.ucla.edu> writes:

> Thanks for all that work.  I installed the patch after tweaking its comment and 
> ChangeLog entry.

Thank you Paul. I'm continuint to dig. I found out that repeatedly
creating/destroying the first frame is far more leaky than a non-first
frame:

  http://debbugs.gnu.org/cgi/bugreport.cgi?bug=21509

This should be fixed, but in my use I always have multiple frames open,
so this isn't biting me. Even with a frame open, each new frame
create/destroy cycle leaks about 15kB. Digging into this, the leaky
malloc() path is:

  emacs-snapshot- 28044 [000] 587944.079120: probe_libc:malloc: (7fa38bffc020) bytes=0x1000
                     7c020 malloc (/lib/x86_64-linux-gnu/libc-2.19.so)
                    14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
                    145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
                     a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
                     a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
                     a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
                     a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
                     a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
                    1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
                    1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
                     c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
                     2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
                     23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
                     26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
                     d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
                     d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
                    15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
                    195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
                    15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
                    15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
                    195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
                    15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
                    160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
                    15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
                    195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
                    15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
                    195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
                    15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
                    195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
                    15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
                    195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
                    15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
                    195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
                    15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
                    160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
                    160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
                    15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
                    1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
                    1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
                     1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
                     f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
                     f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
                     f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
                    15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
                     ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
                    15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
                     ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
                     ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
                     ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
                     148c6 main (/usr/bin/emacs-snapshot-lucid)
                     21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

I'll do a writeup about how exactly to get that later. In the meantime,
does this speak to anybody? It looks like we're creating a new Lisp
object, so I guess the gc is supposed to clean it out. I don't (yet)
know the details about how references are managed, but maybe they're not
handled properly here. Is the recursive call to
sub_char_table_set_range() causing issues?



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-20 22:01     ` Dima Kogan
@ 2015-09-21  6:46       ` Eli Zaretskii
  2015-09-21  8:54         ` Dima Kogan
  0 siblings, 1 reply; 37+ messages in thread
From: Eli Zaretskii @ 2015-09-21  6:46 UTC (permalink / raw)
  To: Dima Kogan; +Cc: eggert, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Date: Sun, 20 Sep 2015 15:01:01 -0700
> Cc: emacs-devel@gnu.org
> 
> Thank you Paul. I'm continuint to dig. I found out that repeatedly
> creating/destroying the first frame is far more leaky than a non-first
> frame:
> 
>   http://debbugs.gnu.org/cgi/bugreport.cgi?bug=21509
> 
> This should be fixed, but in my use I always have multiple frames open,
> so this isn't biting me. Even with a frame open, each new frame
> create/destroy cycle leaks about 15kB. Digging into this, the leaky
> malloc() path is:
> 
>   emacs-snapshot- 28044 [000] 587944.079120: probe_libc:malloc: (7fa38bffc020) bytes=0x1000
>                      7c020 malloc (/lib/x86_64-linux-gnu/libc-2.19.so)
>                     14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
>                     145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
>                      a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
>                      a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
>                      a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
>                      a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
>                      a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
>                     1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
>                     1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
>                      c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
>                      2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
>                      23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
>                      26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
>                      d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
>                      d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)

This doesn't seem to be a leak in itself.  What happens here is that
Emacs is creating a new frame, one of whose parameters is a font spec.
You didn't show your font/fontset customizations (I'm assuming this is
not from "emacs -Q"), so I can only guess the details of what follows
from this incomplete backtrace: the font definitions cause Emacs to
modify the existing fontset, and that requires an addition of a
sub-char-table to the existing char-table (fontsets are implemented as
char-tables internally), because your font customizations affect only
some subset of the Unicode codespace.  See the definition of
FONTSET_ADD in fontset.c and the call to it in Fset_fontset_font.

Since the fontset is a global structure in Emacs, it is okay to add
information to it that never gets GC'ed until the session ends.  What
would be NOT okay is if the information about the same font and/or the
same modification of the fontset repeatedly created more and more of
these additional sub-char-tables, instead of reusing the one created
the first time.

So what we need to investigate this particular issue is:

  . a full backtrace from GDB, including parameters of each function
    calls, preferably from an unoptimized build
  . details about your font/fontset related customizations, if any
  . evidence that this very backtrace, including the call to
    make_sub_char_table and the associated memory consumption, is
    repeated each time you create a new frame with the same
    font/fontset customizations, when you create several such frames
    one after another

> I'll do a writeup about how exactly to get that later. In the meantime,
> does this speak to anybody? It looks like we're creating a new Lisp
> object

We are creating a sub-char-table.  This is needed when some call sets
a range of characters in a char-table to some value, where previously
a much larger range was set to another (usually, the default) value.
Char-tables are memory-efficient, so they only allocate additional
storage when needed, in this fashion.

> so I guess the gc is supposed to clean it out.

GC should clean it up only if the char-table that is being modified is
not needed afterwards.  If I'm right, and the char-table in question
is the (global) fontset, then it will not be GC'ed any time soon.

In any case, to make sure that it isn't GC'ed, you need to call
garbage-collect by hand.

> Is the recursive call to sub_char_table_set_range() causing issues?

No, it shouldn't.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-21  6:46       ` Eli Zaretskii
@ 2015-09-21  8:54         ` Dima Kogan
  2015-09-21 10:00           ` Eli Zaretskii
  0 siblings, 1 reply; 37+ messages in thread
From: Dima Kogan @ 2015-09-21  8:54 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: eggert, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 5663 bytes --]

Eli Zaretskii <eliz@gnu.org> writes:

> This doesn't seem to be a leak in itself.

Hi. I'm fairly certain that this is the leak. I know I didn't show any
evidence to that effect earlier, but I simply haven't written it up yet.
Doing that now. Note that the attached scripts aren't particularly nice;
they were quickly whipped up to solve a problem.


Procedure:

0. Preliminaries. I built my own emacs with -fno-omit-frame-pointer. I'm
   using the lucid X11 widgets. I'm on Debian/sid and the split debug
   symbols are available. I patched my perf to be able to find these
   split debug symbols:

     http://lkml.iu.edu/hypermail/linux/kernel/1509.0/04006.html

1. Set up emacs to continually leak memory. Here I do that by running
   'emacs -Q --daemon'. Then "emacsclient -a '' -c" to open a frame.
   Then in a loop open/destroy a second frame:

     while true; do timeout 1 emacsclient -a '' -c; sleep 1; done

   This is described in earlier emails. As this goes I can observe the
   memory leak:

     while (true) { ps -h -p `pidof emacs` -O rss; sleep 1 } | awk '{print $2;}'

   A snapshot of this is attached in memory.log, and plotted in
   memory.pdf:

     <memory.log | feedgnuplot --lines --xlabel 'Time(s)' --ylabel 'Emacs memory footprint (kB)'

   We leak on the order of 8.5kB/s. There's a new frame every 2s so
   that's 17kB/client frame.

2. As this runs make a record of all memory allocation operations. I use
   perf to do this:

     perf probe --del '*'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'malloc=malloc bytes'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'malloc_ret=malloc%return $retval'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'calloc=calloc elem_size n'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'calloc_ret=calloc%return $retval'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'realloc=realloc oldmem bytes'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'realloc_ret=realloc%return $retval'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'aligned_alloc alignment bytes'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'aligned_alloc_ret=aligned_alloc%return $retval'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'posix_memalign alignment size'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'posix_memalign_ret=posix_memalign%return $retval'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'free mem'

     timeout 40 perf record -m512 -r50 -g --call-graph=fp -p `pidof emacs` -eprobe_libc:{free,{malloc,calloc,realloc}{,_ret}} -eprobe_libc:aligned_alloc{,_1,_ret} -eprobe_libc:posix_memalign{,_ret}

   This makes a (very large) perf.data file with all the data in it. Too
   big; not attaching it. Back traces are available wherever frame
   pointers are, so malloc() directly from emacs has a backtrace,
   malloc() that goes through something like libgtk first does not. Perf
   can get overloaded and not write all the data. I make sure to only
   keep full data files

3. Convert the log file to a human-readable one

     perf script > script

   This makes a human-readable, but even larger file. Way too big;
   definitely not attaching it.

4. Analyze.

Note that the emacs client loop creates a client for 1 second, then
kills it and waits 1 more second. So there's a new client every 2
seconds. I "perf record" for 40 seconds, so ~ 20 new clients were
created in that time.

I now run the script file through parse_script.pl to follow all
allocations, and report any that have not been freed. Anything that has
been allocated at the start of the log file, and hasn't been freed by
the end is potentially a leak. Attaching a "leaks" file that's the
result of this. I make a plot of leak size vs line number:

  <leaks awk '$1=="Leaked" {print $6,$2}' | feedgnuplot --domain --points --xlabel 'script line number' --ylabel 'size leaked'

Attaching that too; leaks_all.pdf. Note that it looks like we leak 4096
bytes (4k from now on) at regular intervals, about 20 times. This is a
strong indication that whatever happens with those 4k allocations
happens every time we create (or destroy) a client frame. It actually
turns out to be a little more complicated than that. If we look just at
the 4k leaks and plot each one against its line number in the log then
we see that each time we leak a 4k chunk several times
(leaks_4k_line_numbers.pdf)

  <leaks awk '$1=="Leaked" && $2==4096 {print $6}' | feedgnuplot --points --xlabel '4k leak index' --ylabel 'script line number'

As shown earlier, we leak 17kB per frame. On average we have:

  $ echo $(( 4. * $(<leaks awk '$1=="Leaked" && $2==4096 {print $6}' | wc -l) / 19 ))
  10.947368421052632

So these 4k leaks could be responsible for ~ 11kB out of the 17kB.

OK. So what are those 4k leaks? I follow all the 4k allocations with a
follow_alloc.pl script. This acts as a filter to pull out the salient
parts of the "script" file.

  <script ./follow_alloc.pl 4096 > follow4096

Looking at the follow4096 file I see that most of the 4k allocs have the
backtrace in the previous email. None of these are ever freed. Some of
the 4k allocs touch the menu stuff, and those are all freed (in
garbage_collect, so the gc IS being called). Some of the 4k allocs are
from the tool bar, and those all leak too, but there aren't as many of
them as the font ones.



So this tells me that the backtrace in the previous email is the main
one causing the leak. There's more stuff to look at however, like the
toolbar stuff and a suspicious 16384 byte alloc, but those aren't as
significant as this 4k one.



[-- Attachment #2: memory.log --]
[-- Type: application/octet-stream, Size: 1860 bytes --]

41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41768
41768
41772
41624
41756
41756
41772
41772
41772
41772
41772
41772
41772
41772
41772
41772
41772
41772
41772
41772
41980
41980
41980
41980
41980
41980
41980
41980
41980
42052
42052
42052
42052
42052
42052
42052
42052
42052
42052
42112
42112
42112
42112
42112
42112
42112
42112
42112
42112
42184
42180
42180
42180
42180
42180
42228
42188
42192
42192
42192
42192
42192
42192
42356
42356
42356
42356
42356
42356
42356
42412
42412
42412
42412
42412
42412
42412
42384
42388
42388
42388
42388
42488
42488
42488
42488
42488
42488
42488
42488
42488
42488
42488
42488
42564
42564
42564
42564
42564
42564
42612
42612
42612
42612
42612
42612
42612
42612
42744
42744
42744
42744
42744
42744
42744
42744
42744
42744
42744
42776
42776
42776
42776
42776
42776
42832
42832
42832
42832
42832
42832
42832
42832
42832
42832
42900
42868
42868
42868
42868
42868
42868
42924
42924
42924
42924
42924
42924
42924
42832
42832
42832
42832
43060
43060
43060
43060
43060
43060
43124
43124
43124
43124
43124
43124
43172
43172
43172
43172
43172
43172
43208
43208
43208
43208
43208
43316
43276
43276
43276
43276
43276
43352
43324
43324
43324
43324
43324
43384
43360
43360
43360
43360
43360
43360
43360
43428
43428
43428
43428
43472
43472
43472
43472
43472
43472
43472
43472
43472
43472
43472
43540
43540
43576
43576
43576
43576
43576
43576
43652
43652
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43836
43808
43808
43808
43808
43808
43808
43808
43812
43812
43812
43812
43812
43956
43812
43812
43812
43812
43812
44028
44028
44028
44028
44028
44028
44028
44028
44028
44028
44108
44108
44108
44108
44108
44108
44108
44108
44192
44192
44192
44192
44192
44156
44156
44156
44156
44156
44232
44232
44232
44232
44232
44232
44288

[-- Attachment #3: memory.pdf --]
[-- Type: application/pdf, Size: 9442 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: parse_script.pl --]
[-- Type: text/x-perl, Size: 5168 bytes --]

#!/usr/bin/perl

use strict;
use warnings;


use feature 'say';


my $Nbytes_allocated = 0;
my %allocated;

my ($prev_addr, $prev_ret, $prev_type, $prev_realloc0, $prev_realloc0_addr, $prev_realloc0_bytes);
my $allocating;


while(<>)
{
    next unless /probe_libc:([^:]+)/;

    my $type = $1;
    my $ret = $type =~ /_ret$/;
    $type =~ s/_ret$//;


    if ( $ret && !( !$prev_ret && $type eq $prev_type) &&
         !($prev_realloc0 && $prev_type eq 'malloc' && $prev_ret && $type eq 'realloc') ) {
        die "$type ret, but prev wasn't a corresponding !ret";
    }
    elsif ( !$ret && !$prev_ret &&
            !($prev_realloc0 && $prev_type eq 'realloc' && !$prev_ret && $type eq 'malloc') &&
            $. > 1) {
        die "$type !ret following another !ret";
    }
    elsif ( $prev_realloc0 && !($type eq 'malloc' || $type eq 'realloc'))
    {
        die "realloc(0, N) must be followed by malloc(N)";
    }
    elsif ( !$ret )
    {
        if ($type eq 'malloc' && /bytes=([0-9a-z]+)/)
        {
            $allocating = hex $1;
            if ( $prev_realloc0 && $allocating != $prev_realloc0_bytes )
            {
                die "realloc(0, N) must be followed by malloc(N)";
            }
        }
        elsif ($type eq 'calloc' && /elem_size=([0-9a-z]+).*n=([0-9a-z]+)/)
        {
            $allocating = (hex $1) * (hex $2);
        }
        elsif ($type eq 'aligned_alloc' && /bytes=([0-9a-z]+)/)
        {
            $allocating = hex $1;
        }
        elsif ($type eq 'realloc' && /oldmem=([0-9a-z]+).*bytes=([0-9a-z]+)/)
        {
            if ( hex($1) == 0 )
            {
                # realloc(0, xxx) is always mapped to a malloc apparently. I treat
                # this specially
                $prev_realloc0       = 1;
                $prev_realloc0_bytes = hex $2;
            }
            else
            {
                $allocating = hex $2;
                $prev_addr = $1;
            }
        }
        elsif ($type eq 'free' && /mem=([0-9a-z]+)/)
        {
            if ( hex($1) != 0)  # free(0) does nothing
            {
                if (!defined $allocated{$1})
                {
                    say "Unallocated free at $1. Line $.";
                }
                else
                {
                    $Nbytes_allocated -= $allocated{$1}{bytes};
                    delete $allocated{$1};
                }
            }

            $ret = 1;           # free has no free-ret so I set that now
        }
        else
        {
            say "Unknown !ret line: '$_'";
            exit;
        }
    }
    elsif ( $ret )
    {
        if ( !/arg1=([0-9a-z]+)/ )
        {
            die "Ret didn't get arg1";
        }

        my $addr = $1;

        if ( hex($addr) == 0 )
        {
            say "$type returned NULL. Giving up";
            exit;
        }
        elsif ( $type =~ /^(?:[cm]alloc|aligned_alloc)$/ )
        {
            if (defined $allocated{$addr})
            {
                say "Double alloc at $addr. Line $.";
            }
            else
            {
                $allocated{$addr}{bytes} = $allocating;
                $allocated{$addr}{line} = $.;
                $Nbytes_allocated += $allocating;
            }

            if ( $prev_realloc0 && $type eq 'malloc')
            {
                $prev_realloc0_addr = $addr;
            }
        }
        elsif ( $type eq 'realloc' )
        {
            if ( $prev_realloc0 )
            {
                if ( $addr ne $prev_realloc0_addr )
                {
                    die "realloc(0, N) must be followed by malloc(N); differing addr";
                }

                $prev_realloc0       = undef;
                $prev_realloc0_addr  = undef;
                $prev_realloc0_bytes = undef;
            }
            else
            {
                my $prev0 = (hex($prev_addr) == 0);

                if (!$prev0 && !defined $allocated{$prev_addr})
                {
                    say "realloc not alloced at $prev_addr. Line $.";
                    $prev0 = 1;
                }

                if ($addr ne $prev_addr && defined $allocated{$addr})
                {
                    say "Double realloc at $addr. Line $.";
                }

                if ( !$prev0 )
                {
                    $Nbytes_allocated -= $allocated{$prev_addr}{bytes};
                    delete $allocated{$prev_addr};
                }

                $allocated{$addr}{bytes} = $allocating;
                $allocated{$addr}{line} = $.;
                $Nbytes_allocated += $allocating;
            }
        }
        else
        {
            say "Unknown ret line: '$_'";
            exit;
        }


        $allocating = undef;
    }


    $prev_type = $type;
    $prev_ret = $ret;
}


$Nbytes_allocated /= 1e6;
say "Total allocated: $Nbytes_allocated MB";
say '';

for my $addr ( sort { $allocated{$a}{line} <=> $allocated{$b}{line}} keys %allocated )
{
    my ($bytes,$line) = ($allocated{$addr}{bytes},
                         $allocated{$addr}{line});
    say "Leaked " . sprintf('%5d', $bytes) . " bytes at line $line ($addr)";
}

[-- Attachment #5: leaks --]
[-- Type: application/octet-stream, Size: 40769 bytes --]

realloc not alloced at 0x40dc3e0. Line 2598
realloc not alloced at 0x41b6050. Line 40343
realloc not alloced at 0x4017420. Line 40451
realloc not alloced at 0x3f82010. Line 40556
realloc not alloced at 0x38d16e0. Line 40658
realloc not alloced at 0x3e1f180. Line 40760
realloc not alloced at 0x3fba670. Line 40862
realloc not alloced at 0x3e20cd0. Line 40964
realloc not alloced at 0x38dfda0. Line 41066
realloc not alloced at 0x3de9040. Line 41168
realloc not alloced at 0x3ff08f0. Line 41270
realloc not alloced at 0x3cea600. Line 41372
realloc not alloced at 0x3ceab80. Line 41576
realloc not alloced at 0x39c2bc0. Line 41678
realloc not alloced at 0x3df85b0. Line 41780
realloc not alloced at 0x3cd61a0. Line 41882
realloc not alloced at 0x3d1ccd0. Line 41984
realloc not alloced at 0x41c6f10. Line 42086
realloc not alloced at 0x4136dd0. Line 42188
realloc not alloced at 0x402bb40. Line 42290
realloc not alloced at 0x32aa960. Line 42392
realloc not alloced at 0x4088570. Line 42494
Unallocated free at 0x406b5f0. Line 42747
Unallocated free at 0x406b9e0. Line 42798
Unallocated free at 0x40bdc80. Line 42848
Unallocated free at 0x3d60570. Line 42899
Unallocated free at 0x4188a20. Line 42949
Unallocated free at 0x397c020. Line 43000
Unallocated free at 0x3eb8340. Line 43050
Unallocated free at 0x3eb81b0. Line 43101
Unallocated free at 0x3eb7d10. Line 43151
Unallocated free at 0x3eb8100. Line 43202
Unallocated free at 0x417abb0. Line 43252
Unallocated free at 0x3d09a80. Line 43303
Unallocated free at 0x3e979a0. Line 43353
Unallocated free at 0x3e97d90. Line 43404
Unallocated free at 0x3f3cc60. Line 43454
Unallocated free at 0x3e6fb20. Line 43505
Unallocated free at 0x3e6f650. Line 43555
Unallocated free at 0x3da8eb0. Line 43606
Unallocated free at 0x415a550. Line 43656
Unallocated free at 0x415a940. Line 43707
Unallocated free at 0x40f5290. Line 43757
Unallocated free at 0x40f5680. Line 43808
Unallocated free at 0x4079a00. Line 43858
Unallocated free at 0x4079df0. Line 43909
Unallocated free at 0x39d69e0. Line 43959
Unallocated free at 0x39d6dd0. Line 44010
Unallocated free at 0x3ca4580. Line 44060
Unallocated free at 0x4081040. Line 44111
Unallocated free at 0x3e50120. Line 44161
Unallocated free at 0x3866ac0. Line 44212
Unallocated free at 0x3e01890. Line 44262
Unallocated free at 0x4112b90. Line 44313
Unallocated free at 0x4136ed0. Line 44363
Unallocated free at 0x402bc60. Line 44414
Unallocated free at 0x3d96410. Line 44464
Unallocated free at 0x41b7280. Line 44515
Unallocated free at 0xd89e40. Line 44565
Unallocated free at 0x4012f20. Line 44616
Unallocated free at 0x40b6810. Line 44666
Unallocated free at 0x3af6fd0. Line 44717
Unallocated free at 0x3e72c00. Line 44767
Unallocated free at 0x3cbeae0. Line 44818
Unallocated free at 0x3ceae40. Line 44868
Unallocated free at 0x3effa60. Line 44919
Unallocated free at 0x3e83cc0. Line 44969
Unallocated free at 0x3e14ec0. Line 45020
Unallocated free at 0x3cc4560. Line 45070
Unallocated free at 0x3f88e70. Line 45121
Unallocated free at 0x385e460. Line 45171
Unallocated free at 0x385e910. Line 45222
Unallocated free at 0x404ffd0. Line 45272
Unallocated free at 0x411efc0. Line 45323
Unallocated free at 0x4127410. Line 45373
Unallocated free at 0x3fc5df0. Line 45424
Unallocated free at 0x3d1f590. Line 45474
Unallocated free at 0x4042840. Line 45525
Unallocated free at 0xcd3590. Line 45575
Unallocated free at 0x40657d0. Line 45626
Unallocated free at 0x39c0d40. Line 45676
Unallocated free at 0x411ef00. Line 45727
Unallocated free at 0x3d9afc0. Line 45777
Unallocated free at 0x3e730f0. Line 45828
Unallocated free at 0x38c2d00. Line 45878
Unallocated free at 0x3d43710. Line 45929
Unallocated free at 0x3eb9820. Line 45979
Unallocated free at 0x3f33530. Line 46030
Unallocated free at 0x412b810. Line 46080
Unallocated free at 0x4050480. Line 46131
Unallocated free at 0x4123010. Line 46181
Unallocated free at 0x3da8e70. Line 46232
Unallocated free at 0x3f4a520. Line 46282
Unallocated free at 0x41a24a0. Line 46333
Unallocated free at 0x3e09c10. Line 46383
Unallocated free at 0x40884f0. Line 46434
Unallocated free at 0x3f81be0. Line 46484
Unallocated free at 0x39d7aa0. Line 46535
Unallocated free at 0x3dbdce0. Line 46585
Unallocated free at 0x3ff1080. Line 46636
Unallocated free at 0x4194410. Line 46686
Unallocated free at 0x385e9e0. Line 46737
Unallocated free at 0x30b70b0. Line 46787
Unallocated free at 0x39e2750. Line 46838
Unallocated free at 0x3d3ec10. Line 46888
Unallocated free at 0x3f88a70. Line 46939
Unallocated free at 0x3effc70. Line 46989
Unallocated free at 0x3e3ce10. Line 47040
Unallocated free at 0x3e5fbf0. Line 47090
Unallocated free at 0x413f040. Line 47141
Unallocated free at 0x4051580. Line 47191
Unallocated free at 0x3e73280. Line 47242
Unallocated free at 0x38d12f0. Line 47292
Unallocated free at 0x3e6feb0. Line 47343
Unallocated free at 0x40dfc50. Line 47393
Unallocated free at 0x3cb0200. Line 47444
Unallocated free at 0x3f70c40. Line 47494
Unallocated free at 0x40428c0. Line 47545
Unallocated free at 0x4222060. Line 47595
Unallocated free at 0x3af7020. Line 47646
Unallocated free at 0x3ee2710. Line 47696
Unallocated free at 0x3e0ba00. Line 47747
Unallocated free at 0x4138320. Line 47797
Unallocated free at 0x4065750. Line 47848
Unallocated free at 0x4068e80. Line 47898
Unallocated free at 0x3ee9100. Line 47949
Unallocated free at 0x3e840f0. Line 47999
Unallocated free at 0x3e840b0. Line 48050
Unallocated free at 0x417d470. Line 48100
Unallocated free at 0x393c8b0. Line 48151
Unallocated free at 0x417d860. Line 48201
Unallocated free at 0x417dc50. Line 48252
Unallocated free at 0x413e5e0. Line 48302
Unallocated free at 0x3d1e910. Line 48353
Unallocated free at 0x413e9d0. Line 48403
Unallocated free at 0x3f4edb0. Line 48454
Unallocated free at 0x40dbfb0. Line 48504
Unallocated free at 0x4082a50. Line 48555
Unallocated free at 0x3eae300. Line 48605
Unallocated free at 0x3eae730. Line 48656
Unallocated free at 0x3eae770. Line 48706
Unallocated free at 0x3c67990. Line 48757
Unallocated free at 0x40f4e60. Line 48807
Unallocated free at 0x40f5250. Line 48858
Unallocated free at 0x415a120. Line 48908
Unallocated free at 0x415a510. Line 48959
Unallocated free at 0x3ab0480. Line 49009
Unallocated free at 0x3ab08b0. Line 49060
Unallocated free at 0x3ab08f0. Line 49110
Unallocated free at 0x3ab0870. Line 49161
Unallocated free at 0x40820a0. Line 49211
Unallocated free at 0x4082490. Line 49262
Unallocated free at 0x4082510. Line 49312
Unallocated free at 0x40824d0. Line 49363
Unallocated free at 0x41b2cc0. Line 49413
Unallocated free at 0x3ca7b40. Line 49464
Unallocated free at 0x41b3170. Line 49514
Unallocated free at 0x41b3560. Line 49565
Unallocated free at 0xde3480. Line 49768
Unallocated free at 0x4067830. Line 49819
Unallocated free at 0x3bfcb40. Line 49870
Unallocated free at 0x401a230. Line 49921
Unallocated free at 0x413ab40. Line 49972
Unallocated free at 0x3f950a0. Line 50023
Unallocated free at 0x40ac1d0. Line 50074
Unallocated free at 0x3ea4330. Line 50125
Unallocated free at 0x4032830. Line 50176
Unallocated free at 0x4156de0. Line 50227
Unallocated free at 0x4173560. Line 50278
Unallocated free at 0x4235c70. Line 50329
Unallocated free at 0x3e95990. Line 50380
Unallocated free at 0x4150c60. Line 50431
Unallocated free at 0x4152c70. Line 50482
Unallocated free at 0x4154c80. Line 50533
Unallocated free at 0x41109c0. Line 50584
Unallocated free at 0x4268370. Line 50635
Unallocated free at 0x42cd900. Line 50686
Unallocated free at 0x42cf910. Line 50737
Unallocated free at 0x3d5bb00. Line 51145
Unallocated free at 0x3ded510. Line 51196
Unallocated free at 0x3d0c6a0. Line 51298
Unallocated free at 0x3ff47b0. Line 51349
Unallocated free at 0x40504c0. Line 51400
Unallocated free at 0x37fe320. Line 51502
Unallocated free at 0x3d96940. Line 51553
Unallocated free at 0x3d1ec10. Line 51604
Unallocated free at 0x40be4d0. Line 51655
Unallocated free at 0x397bf70. Line 51706
Unallocated free at 0x3de8ba0. Line 51757
Unallocated free at 0x3f3d1a0. Line 51808
Unallocated free at 0x411eec0. Line 51859
Unallocated free at 0x4079e30. Line 51910
Unallocated free at 0x402b5f0. Line 51961
Unallocated free at 0xcd3e90. Line 52012
Unallocated free at 0x4107650. Line 52063
Unallocated free at 0x39b92f0. Line 52114
Unallocated free at 0x40f0b50. Line 52165
Unallocated free at 0x3f3aaf0. Line 52216
Unallocated free at 0x40764e0. Line 52267
Unallocated free at 0x3bf85e0. Line 52318
Unallocated free at 0x3cf4f30. Line 52369
Unallocated free at 0x3fccab0. Line 52420
Unallocated free at 0x3daff70. Line 52471
Unallocated free at 0x405a380. Line 52522
Unallocated free at 0x3cc4f10. Line 52573
Unallocated free at 0x3d441f0. Line 52624
Unallocated free at 0x3e79900. Line 52675
Unallocated free at 0x4051ce0. Line 52726
Unallocated free at 0x3cb0d80. Line 52777
Unallocated free at 0x40072c0. Line 52828
Unallocated free at 0x3e7b600. Line 52879
Unallocated free at 0x4088410. Line 52930
Unallocated free at 0x3d9cfb0. Line 52981
Unallocated free at 0x3e38fa0. Line 53032
Unallocated free at 0x3cdb650. Line 53083
Unallocated free at 0x37467d0. Line 53134
Unallocated free at 0x3e51c30. Line 53185
Unallocated free at 0x3fb2900. Line 53236
Unallocated free at 0x3f3ecb0. Line 53287
Unallocated free at 0x41b30f0. Line 53338
Unallocated free at 0x4082a00. Line 53389
Unallocated free at 0x3d441a0. Line 53440
Unallocated free at 0x412fc10. Line 53491
Unallocated free at 0x412bc00. Line 53593
Unallocated free at 0x4042980. Line 53643
Unallocated free at 0x4042880. Line 53694
Unallocated free at 0x3f001a0. Line 53745
Unallocated free at 0x3f00120. Line 53796
Unallocated free at 0x3f000e0. Line 53847
Unallocated free at 0x3f000a0. Line 53898
Unallocated free at 0x411ef80. Line 53949
Unallocated free at 0x411ef40. Line 54000
Unallocated free at 0x4019140. Line 54051
Unallocated free at 0x4127800. Line 54102
Unallocated free at 0x4224500. Line 54152
Unallocated free at 0x3e73380. Line 54203
Unallocated free at 0x4050440. Line 54254
Unallocated free at 0x3dde4a0. Line 54305
Unallocated free at 0x3dde460. Line 54356
Unallocated free at 0x4042900. Line 54407
Unallocated free at 0x4123400. Line 54458
Unallocated free at 0x3ceab20. Line 54508
Unallocated free at 0x385e850. Line 54559
Unallocated free at 0x385e950. Line 54610
Unallocated free at 0x41a23d0. Line 54661
Unallocated free at 0x3e732c0. Line 54712
Unallocated free at 0x411f000. Line 54763
Unallocated free at 0x3e730b0. Line 54813
Unallocated free at 0x41a2350. Line 54864
Unallocated free at 0x39d7a20. Line 54915
Unallocated free at 0x3e3cdd0. Line 54966
Unallocated free at 0x3cea590. Line 55017
Unallocated free at 0x41ea000. Line 55068
Unallocated free at 0x3d0aa40. Line 55118
Unallocated free at 0x3e3aa00. Line 55169
Unallocated free at 0x3ded550. Line 55220
Unallocated free at 0x40b27b0. Line 55271
Unallocated free at 0x3d5b480. Line 55322
Unallocated free at 0x3e726f0. Line 55373
Unallocated free at 0x3ebbbe0. Line 55424
Unallocated free at 0x3ded4d0. Line 55475
Unallocated free at 0x3f334f0. Line 55526
Unallocated free at 0x3fb28c0. Line 55577
Unallocated free at 0x4051d80. Line 55628
Unallocated free at 0x4136d40. Line 55679
Unallocated free at 0x3d03e00. Line 55730
Unallocated free at 0x3d1d820. Line 55781
Unallocated free at 0x397c0e0. Line 55832
Unallocated free at 0x3d60100. Line 55883
Unallocated free at 0x417dcc0. Line 55934
Unallocated free at 0x3d34990. Line 56036
Unallocated free at 0x3763650. Line 56087
Unallocated free at 0x4079600. Line 56138
Unallocated free at 0x3c66010. Line 56189
Unallocated free at 0x3156100. Line 56240
Unallocated free at 0x3ebcdf0. Line 56291
Unallocated free at 0x3dafff0. Line 56342
Unallocated free at 0x41366e0. Line 56393
Unallocated free at 0x41b36c0. Line 56444
Unallocated free at 0x3fb9a00. Line 56495
Unallocated free at 0x3c96d20. Line 56545
Unallocated free at 0x4065790. Line 56596
Unallocated free at 0x426a380. Line 56646
Unallocated free at 0x31871d0. Line 56697
Unallocated free at 0x41d8ef0. Line 56747
Unallocated free at 0x42259e0. Line 56848
Unallocated free at 0x4051970. Line 56899
Unallocated free at 0x414c480. Line 56949
Unallocated free at 0x393c990. Line 57000
Unallocated free at 0x3e90eb0. Line 57050
Unallocated free at 0x3e83c30. Line 57101
Unallocated free at 0x3e8eeb0. Line 57151
Unallocated free at 0x40bac10. Line 57202
Unallocated free at 0x3e8d950. Line 57252
Unallocated free at 0xcd40b0. Line 57303
Unallocated free at 0x3ecf050. Line 57353
Unallocated free at 0x3f95870. Line 57404
Unallocated free at 0x3ec3240. Line 57454
Unallocated free at 0x3760df0. Line 57505
Unallocated free at 0x42b3d60. Line 57555
Unallocated free at 0x417dd00. Line 57606
Unallocated free at 0x41693d0. Line 57656
Unallocated free at 0x417afa0. Line 57707
Unallocated free at 0x35d7a30. Line 579044
Unallocated free at 0x3746850. Line 580475
Unallocated free at 0x3e0a440. Line 593956
Unallocated free at 0x3e725d0. Line 593976
Unallocated free at 0x3ff07d0. Line 593996
Unallocated free at 0x4019020. Line 594016
Unallocated free at 0x3fccb10. Line 594036
Unallocated free at 0x3d34870. Line 594056
Unallocated free at 0x40dc460. Line 594076
Unallocated free at 0x40dc710. Line 594096
Unallocated free at 0x3f4f020. Line 594116
Unallocated free at 0x3e72730. Line 594136
Unallocated free at 0x39d7900. Line 594156
Unallocated free at 0x3f594a0. Line 594176
Unallocated free at 0x409ae60. Line 594196
Unallocated free at 0x3e20e70. Line 594216
Unallocated free at 0x4039a00. Line 594236
Unallocated free at 0x3fc7f10. Line 1025044
Unallocated free at 0x3d0aae0. Line 1027237
Unallocated free at 0x3ca5ee0. Line 1027696
Unallocated free at 0x3e72590. Line 1028257
Unallocated free at 0x3d5af90. Line 1028665
Unallocated free at 0x3dde4e0. Line 1029022
Unallocated free at 0x39c2130. Line 1029226
Unallocated free at 0x3a731d0. Line 1029277
Unallocated free at 0x3f3d160. Line 1029379
Unallocated free at 0x37fe3c0. Line 1029430
Unallocated free at 0x3c973e0. Line 1029532
Unallocated free at 0x3e5f830. Line 1029583
Unallocated free at 0x3e73300. Line 1029886
Unallocated free at 0x3ca7bd0. Line 2462938
Unallocated free at 0x4051e60. Line 2463043
Unallocated free at 0x3e4fc20. Line 2463778
Unallocated free at 0x41ce0e0. Line 2466000
Unallocated free at 0x41b5ff0. Line 2467537
Unallocated free at 0x4096dc0. Line 2470293
Unallocated free at 0x3cd5e10. Line 2470452
Unallocated free at 0x4136e30. Line 2471088
Unallocated free at 0x397c060. Line 2471194
Unallocated free at 0x39d7080. Line 2471247
Unallocated free at 0x39d7ae0. Line 2471775
Unallocated free at 0x40dc3a0. Line 3453617
Unallocated free at 0x3c6a520. Line 3459446
Unallocated free at 0x41590d0. Line 3459636
Unallocated free at 0x3e0a3e0. Line 3459674
Unallocated free at 0x3f33570. Line 3460016
Unallocated free at 0x3c89940. Line 3460206
Unallocated free at 0x417afe0. Line 4585130
Unallocated free at 0x3dee070. Line 4585187
Unallocated free at 0x406bda0. Line 4585216
Unallocated free at 0x3cb06e0. Line 4585273
Unallocated free at 0x38d17d0. Line 4589600
Unallocated free at 0x40808e0. Line 4590498
Unallocated free at 0x37fa520. Line 4590527
Unallocated free at 0x3f1e060. Line 5681328
Unallocated free at 0x385e9a0. Line 5681649
Unallocated free at 0x39b9330. Line 5681970
Unallocated free at 0x4224540. Line 5682933
Unallocated free at 0x3fb1d50. Line 5683040
Unallocated free at 0x3fb2060. Line 5689839
Unallocated free at 0x40ea030. Line 5689893
Unallocated free at 0x402be50. Line 5689947
Unallocated free at 0x3efe810. Line 5690001
Unallocated free at 0x40f7e60. Line 5690055
Unallocated free at 0x407ef30. Line 5690109
Unallocated free at 0x40f7dd0. Line 8125135
Unallocated free at 0x3f85dc0. Line 9098720
Unallocated free at 0x3cb0240. Line 10353607
Unallocated free at 0x41372c0. Line 10362566
Unallocated free at 0x4224480. Line 10362670
Unallocated free at 0x3db17a0. Line 12767815
Unallocated free at 0x3ff4c60. Line 12775493
Unallocated free at 0x40f2bf0. Line 13771944
Unallocated free at 0x40ea800. Line 14994807
Total allocated: 0.50749 MB

Leaked    48 bytes at line 1924 (0x3eaeb60)
Leaked  1000 bytes at line 3401 (0x417fd70)
Leaked    48 bytes at line 3489 (0x4180160)
Leaked    88 bytes at line 18522 (0x3deeb60)
Leaked     5 bytes at line 18607 (0x3d0c6e0)
Leaked     5 bytes at line 18693 (0x3d03e40)
Leaked    56 bytes at line 18777 (0x41d3510)
Leaked    48 bytes at line 67230 (0x397c020)
Leaked    24 bytes at line 307818 (0x3dde4c0)
Leaked     8 bytes at line 307826 (0x3e73460)
Leaked     4 bytes at line 307834 (0x4042920)
Leaked    40 bytes at line 307841 (0x41d3fc0)
Leaked    48 bytes at line 514957 (0x3d00420)
Leaked    48 bytes at line 917232 (0x402bd80)
Leaked  4096 bytes at line 945306 (0x4278980)
Leaked    48 bytes at line 945413 (0x40bac10)
Leaked  4096 bytes at line 945520 (0x3e94140)
Leaked    88 bytes at line 967028 (0x4042980)
Leaked     5 bytes at line 967113 (0x3d1ccb0)
Leaked     5 bytes at line 967199 (0x3865220)
Leaked    56 bytes at line 967283 (0x3d03e00)
Leaked    24 bytes at line 1255433 (0x41c6fe0)
Leaked     8 bytes at line 1255441 (0x32aad00)
Leaked     4 bytes at line 1255449 (0x402bc40)
Leaked    40 bytes at line 1255456 (0x38d17a0)
Leaked    48 bytes at line 1462572 (0x4088410)
Leaked  4096 bytes at line 1891701 (0x414c480)
Leaked    48 bytes at line 1891808 (0x3f95870)
Leaked  4096 bytes at line 1891915 (0x40ac1d0)
Leaked    48 bytes at line 1892022 (0x40884f0)
Leaked  4096 bytes at line 1892129 (0x3e95150)
Leaked    48 bytes at line 1892236 (0x3fc5df0)
Leaked    88 bytes at line 1913247 (0x4136dd0)
Leaked     5 bytes at line 1913332 (0x3f82090)
Leaked     5 bytes at line 1913418 (0x3fb2770)
Leaked    56 bytes at line 1913502 (0x3f88a70)
Leaked    24 bytes at line 2194414 (0x417b410)
Leaked     8 bytes at line 2194422 (0x39d7100)
Leaked     4 bytes at line 2194430 (0x39d7ac0)
Leaked    40 bytes at line 2194437 (0x3d5b130)
Leaked    48 bytes at line 2401553 (0x40072e0)
Leaked    48 bytes at line 2454691 (0x4051900)
Leaked 16384 bytes at line 2458099 (0x41dd400)
Leaked  4096 bytes at line 2842574 (0x3e96160)
Leaked    48 bytes at line 2842681 (0x3cb0200)
Leaked  4096 bytes at line 2842788 (0x42756a0)
Leaked    48 bytes at line 2842895 (0x3d441f0)
Leaked  4096 bytes at line 2843002 (0x42766b0)
Leaked    48 bytes at line 2843109 (0x39d7080)
Leaked  4096 bytes at line 2843216 (0x42776c0)
Leaked    48 bytes at line 2843323 (0x3d1f8f0)
Leaked    88 bytes at line 2864334 (0x3dde460)
Leaked     5 bytes at line 2864419 (0x39c1050)
Leaked     5 bytes at line 2864505 (0x39c10b0)
Leaked    56 bytes at line 2864589 (0x3eaeb20)
Leaked    24 bytes at line 3136125 (0x42259a0)
Leaked     8 bytes at line 3136133 (0x3f88610)
Leaked     4 bytes at line 3136141 (0x3d442e0)
Leaked    40 bytes at line 3136148 (0x3e73430)
Leaked    48 bytes at line 3343264 (0x3cc6610)
Leaked  1492 bytes at line 3343341 (0x4138320)
Leaked    48 bytes at line 3403671 (0x3d9cfb0)
Leaked  4096 bytes at line 3786976 (0x3e8f960)
Leaked    48 bytes at line 3787083 (0x3c67990)
Leaked  4096 bytes at line 3787190 (0x3e90970)
Leaked    48 bytes at line 3787297 (0x4051e20)
Leaked  4096 bytes at line 3787404 (0x3e91980)
Leaked    48 bytes at line 3787511 (0x39d70c0)
Leaked    88 bytes at line 3808522 (0x3e940e0)
Leaked     5 bytes at line 3808607 (0x36da670)
Leaked     5 bytes at line 3808693 (0x3fccc70)
Leaked    56 bytes at line 3808777 (0x406b9e0)
Leaked    24 bytes at line 4078991 (0x4096de0)
Leaked     8 bytes at line 4078999 (0x41a24c0)
Leaked     4 bytes at line 4079007 (0x3ebbbf0)
Leaked    40 bytes at line 4079014 (0x3e30ae0)
Leaked    48 bytes at line 4286130 (0x3ff47b0)
Leaked  4096 bytes at line 4732496 (0x3e92990)
Leaked    48 bytes at line 4732603 (0x4224500)
Leaked  4096 bytes at line 4732710 (0x40cab20)
Leaked    48 bytes at line 4732817 (0x40be780)
Leaked  4096 bytes at line 4732924 (0x40cbb30)
Leaked    48 bytes at line 4733031 (0x3b6ae20)
Leaked    88 bytes at line 4754042 (0x39c10d0)
Leaked     5 bytes at line 4754127 (0x3c64450)
Leaked     5 bytes at line 4754213 (0x3b6aea0)
Leaked    56 bytes at line 4754297 (0x397c060)
Leaked    24 bytes at line 5024235 (0x3c647c0)
Leaked     8 bytes at line 5024243 (0x39d7b50)
Leaked     4 bytes at line 5024251 (0x402b810)
Leaked    40 bytes at line 5024258 (0x3e6ef10)
Leaked    48 bytes at line 5231374 (0x37467d0)
Leaked  4096 bytes at line 5522786 (0x4221360)
Leaked  1000 bytes at line 5625522 (0x3cea510)
Leaked    48 bytes at line 5625590 (0x3e83c30)
Leaked    88 bytes at line 5641875 (0x402bbe0)
Leaked     5 bytes at line 5641960 (0x40ccb40)
Leaked     5 bytes at line 5642046 (0x4234c40)
Leaked    56 bytes at line 5642130 (0x40f5170)
Leaked    48 bytes at line 5673398 (0x419ff20)
Leaked    24 bytes at line 5932509 (0x3ff4f70)
Leaked     8 bytes at line 5932517 (0x3fb9a90)
Leaked     4 bytes at line 5932525 (0x40f5710)
Leaked    40 bytes at line 5932532 (0x3eb87e0)
Leaked    48 bytes at line 6139648 (0x3cf3580)
Leaked  4096 bytes at line 6568355 (0x3eaccf0)
Leaked    48 bytes at line 6568462 (0x38c0590)
Leaked  4096 bytes at line 6568569 (0x41f1120)
Leaked  4096 bytes at line 6568783 (0x4162810)
Leaked    88 bytes at line 6590271 (0x3fb1d50)
Leaked     5 bytes at line 6590356 (0x3a72e00)
Leaked     5 bytes at line 6590442 (0x3a72e60)
Leaked    56 bytes at line 6590526 (0x3e30aa0)
Leaked    24 bytes at line 6876746 (0x3e940c0)
Leaked     8 bytes at line 6876754 (0x41453f0)
Leaked     4 bytes at line 6876762 (0x3d1dd30)
Leaked    40 bytes at line 6876769 (0x3760d60)
Leaked    48 bytes at line 7083885 (0x3f3aaf0)
Leaked  4096 bytes at line 7522468 (0x4235c70)
Leaked    48 bytes at line 7522575 (0x3ceb290)
Leaked  4096 bytes at line 7522682 (0x4032830)
Leaked    48 bytes at line 7522789 (0x4051d80)
Leaked  4096 bytes at line 7522896 (0x41d8f30)
Leaked    48 bytes at line 7523003 (0x419ff60)
Leaked    88 bytes at line 7544014 (0x41bb970)
Leaked     5 bytes at line 7544099 (0x3e727b0)
Leaked     5 bytes at line 7544185 (0x39d7b20)
Leaked    56 bytes at line 7544269 (0x3d43710)
Leaked    24 bytes at line 7819009 (0x3cf3560)
Leaked     8 bytes at line 7819017 (0x41453d0)
Leaked     4 bytes at line 7819025 (0x3e6eea0)
Leaked    40 bytes at line 7819032 (0x3d43910)
Leaked    48 bytes at line 8026148 (0x40dc7c0)
Leaked    48 bytes at line 8084807 (0x413eb90)
Leaked    48 bytes at line 8088285 (0x3d43de0)
Leaked 16384 bytes at line 8091639 (0x41f2400)
Leaked  4096 bytes at line 8460139 (0x417a070)
Leaked    48 bytes at line 8460246 (0x3c96810)
Leaked  4096 bytes at line 8460353 (0x41dbf50)
Leaked    48 bytes at line 8460460 (0x4039880)
Leaked  4096 bytes at line 8460567 (0x4044c10)
Leaked    48 bytes at line 8460674 (0x40f52d0)
Leaked    88 bytes at line 8481789 (0x3de9100)
Leaked     5 bytes at line 8481874 (0x3fb17d0)
Leaked     5 bytes at line 8481960 (0x40f0b70)
Leaked    56 bytes at line 8482044 (0x39d7ae0)
Leaked    24 bytes at line 8756906 (0x40dc7a0)
Leaked     8 bytes at line 8756914 (0x4234c20)
Leaked     4 bytes at line 8756922 (0x40133c0)
Leaked    40 bytes at line 8756929 (0x38d16f0)
Leaked    48 bytes at line 8964045 (0x41ce150)
Leaked    48 bytes at line 9060439 (0x3e38fa0)
Leaked    48 bytes at line 9066971 (0x3e5f830)
Leaked  4096 bytes at line 9410176 (0x4049c40)
Leaked    48 bytes at line 9410283 (0x39c1070)
Leaked  4096 bytes at line 9410390 (0x4176050)
Leaked  4096 bytes at line 9410604 (0x4177060)
Leaked    48 bytes at line 9410711 (0x3f85dc0)
Leaked    88 bytes at line 9431830 (0x3cb8fb0)
Leaked     5 bytes at line 9431915 (0x4088530)
Leaked     5 bytes at line 9432001 (0x406c120)
Leaked    56 bytes at line 9432085 (0x3fb1750)
Leaked  4096 bytes at line 9450917 (0x40647b0)
Leaked    48 bytes at line 9451016 (0x3d58af0)
Leaked    48 bytes at line 9463358 (0x3c96850)
Leaked    24 bytes at line 9702229 (0x4139ad0)
Leaked     8 bytes at line 9702237 (0x3dde780)
Leaked     4 bytes at line 9702245 (0x3f3f2f0)
Leaked    40 bytes at line 9702252 (0x41d3b10)
Leaked    48 bytes at line 9909368 (0x3e72750)
Leaked  4096 bytes at line 10202797 (0x416ab20)
Leaked    48 bytes at line 10202846 (0x39c26a0)
Leaked  1000 bytes at line 10304750 (0x3ea77c0)
Leaked    48 bytes at line 10304824 (0x3ea7bb0)
Leaked    88 bytes at line 10320970 (0x403e600)
Leaked     5 bytes at line 10321055 (0x3e72790)
Leaked     5 bytes at line 10321141 (0x3f885f0)
Leaked    56 bytes at line 10321225 (0x3c64780)
Leaked    48 bytes at line 10340092 (0x397c0e0)
Leaked    24 bytes at line 10611382 (0x3c89a20)
Leaked     8 bytes at line 10611390 (0x4139ab0)
Leaked     4 bytes at line 10611398 (0x41cbd90)
Leaked    40 bytes at line 10611405 (0x41a2490)
Leaked    48 bytes at line 10818521 (0x405a340)
Leaked    48 bytes at line 11220423 (0x4194c30)
Leaked  4096 bytes at line 11248391 (0x4048c10)
Leaked    48 bytes at line 11248498 (0x3e4fc20)
Leaked  4096 bytes at line 11248605 (0x416bb30)
Leaked    48 bytes at line 11248712 (0x3cb06e0)
Leaked    88 bytes at line 11270133 (0x40428c0)
Leaked     5 bytes at line 11270218 (0x3cb9050)
Leaked     5 bytes at line 11270304 (0x32aace0)
Leaked    56 bytes at line 11270388 (0x3c67740)
Leaked    24 bytes at line 11558778 (0xcd40d0)
Leaked     8 bytes at line 11558786 (0x3f33590)
Leaked     4 bytes at line 11558794 (0x4088550)
Leaked    40 bytes at line 11558801 (0x417a040)
Leaked    48 bytes at line 11765917 (0x37fe320)
Leaked  4096 bytes at line 12195174 (0x4178070)
Leaked    48 bytes at line 12195281 (0x41a2450)
Leaked  4096 bytes at line 12195388 (0x4298780)
Leaked  4096 bytes at line 12195602 (0x4045c20)
Leaked    48 bytes at line 12195709 (0x41eb970)
Leaked    88 bytes at line 12217365 (0x3ceabc0)
Leaked     5 bytes at line 12217450 (0x4138900)
Leaked     5 bytes at line 12217536 (0x403e5e0)
Leaked    56 bytes at line 12217620 (0x3e6feb0)
Leaked    48 bytes at line 12403643 (0x3d1cfb0)
Leaked    24 bytes at line 12498427 (0x3ee2b90)
Leaked     8 bytes at line 12498435 (0x3d34c30)
Leaked     4 bytes at line 12498443 (0x4088740)
Leaked    40 bytes at line 12498450 (0x3ea7c30)
Leaked    48 bytes at line 12705566 (0x3e0ba00)
Leaked    48 bytes at line 12753187 (0x3d3f520)
Leaked    48 bytes at line 12760207 (0x3f886b0)
Leaked  4096 bytes at line 13147241 (0x4046c30)
Leaked    48 bytes at line 13147348 (0x41a2350)
Leaked  4096 bytes at line 13147455 (0x41d9f40)
Leaked    48 bytes at line 13147562 (0x3a72e80)
Leaked  4096 bytes at line 13147669 (0x3ea4330)
Leaked    48 bytes at line 13147776 (0x39e2750)
Leaked  4096 bytes at line 13147883 (0x4173f70)
Leaked    48 bytes at line 13147990 (0x3760df0)
Leaked    88 bytes at line 13169001 (0x3df8010)
Leaked     5 bytes at line 13169086 (0x3cb9070)
Leaked     5 bytes at line 13169172 (0x3cf5940)
Leaked    56 bytes at line 13169256 (0x3eba350)
Leaked    48 bytes at line 13392629 (0x4176010)
Leaked    24 bytes at line 13440996 (0x3fa4610)
Leaked     8 bytes at line 13441004 (0x3f888b0)
Leaked     4 bytes at line 13441012 (0x408b8f0)
Leaked    40 bytes at line 13441019 (0x4139a80)
Leaked    48 bytes at line 13648135 (0x3c98b80)
Leaked    48 bytes at line 13709669 (0x3c6ae10)
Leaked    48 bytes at line 13712180 (0x3f7d8b0)
Leaked  1008 bytes at line 13743195 (0x41d3b40)
Leaked    48 bytes at line 13748997 (0x3ee2b50)
Leaked    48 bytes at line 13756863 (0x3d8b040)
Leaked    48 bytes at line 13758088 (0x3fc8300)
Leaked  4096 bytes at line 14092181 (0x4174f80)
Leaked    48 bytes at line 14092288 (0x3f23d70)
Leaked  4096 bytes at line 14092395 (0x4118d10)
Leaked    48 bytes at line 14092502 (0x3cb0660)
Leaked  4096 bytes at line 14092609 (0x4119d20)
Leaked    48 bytes at line 14092716 (0x4069490)
Leaked    88 bytes at line 14113727 (0x3fb9bb0)
Leaked     5 bytes at line 14113812 (0x3df83b0)
Leaked     5 bytes at line 14113898 (0x417b3f0)
Leaked    56 bytes at line 14113982 (0x38d17d0)
Leaked    24 bytes at line 14384032 (0x32aab30)
Leaked     8 bytes at line 14384040 (0x3f4edd0)
Leaked     4 bytes at line 14384048 (0x3c678a0)
Leaked    40 bytes at line 14384055 (0x39d7ed0)
Leaked    48 bytes at line 14591171 (0x4013300)
Leaked  1492 bytes at line 14591249 (0x3c96d20)
Leaked    48 bytes at line 14754642 (0x3f30740)
Leaked    48 bytes at line 14820967 (0x404b390)
Leaked    48 bytes at line 14836431 (0x41960a0)
Leaked  4096 bytes at line 14887310 (0x40c7e50)
Leaked    48 bytes at line 14887363 (0x417b080)
Leaked    48 bytes at line 14890219 (0x3c78510)
Leaked  8188 bytes at line 14996720 (0x3eaace0)
Leaked  1016 bytes at line 15010560 (0x3e50120)
Leaked    48 bytes at line 15010656 (0x3de9040)
Leaked  4096 bytes at line 15026982 (0x3e8d950)
Leaked    48 bytes at line 15027089 (0x3f23b50)
Leaked  4096 bytes at line 15027196 (0x4114cf0)
Leaked    48 bytes at line 15027303 (0x3ea7bf0)
Leaked    88 bytes at line 15048506 (0x39d6de0)
Leaked     5 bytes at line 15048591 (0x3cb0370)
Leaked     5 bytes at line 15048677 (0x3d1cff0)
Leaked    56 bytes at line 15048761 (0x3ff1080)
Leaked    48 bytes at line 15092331 (0x4224480)
Leaked    24 bytes at line 15318799 (0x3ff0840)
Leaked     8 bytes at line 15318807 (0x3c784f0)
Leaked     4 bytes at line 15318815 (0x3e69a00)
Leaked    40 bytes at line 15318822 (0x4118ce0)
Leaked    48 bytes at line 15525938 (0x41b0a10)
Leaked  1016 bytes at line 15623418 (0x4136ed0)
Leaked    48 bytes at line 15645747 (0x3864a00)
Leaked    48 bytes at line 15648624 (0x41d3490)
Leaked    48 bytes at line 15665700 (0x3df8370)
Leaked    48 bytes at line 15817990 (0x3e09d10)
Leaked    48 bytes at line 15818198 (0x3e09d50)
Leaked  4096 bytes at line 15818645 (0x4117c50)
Leaked    48 bytes at line 15818698 (0x3866ac0)
Leaked  1016 bytes at line 15820626 (0x38d12f0)
Leaked    48 bytes at line 15928931 (0x3e5f380)
Leaked    48 bytes at line 15929969 (0x4180a30)
Leaked  1000 bytes at line 15932816 (0x3f81be0)
Leaked    48 bytes at line 15932904 (0x38df350)
Leaked    88 bytes at line 15947939 (0x40885b0)
Leaked     5 bytes at line 15948024 (0x4112990)
Leaked     5 bytes at line 15948110 (0x41129f0)
Leaked    56 bytes at line 15948194 (0x40764e0)
Leaked    48 bytes at line 15966276 (0x3f14fb0)
Leaked  1016 bytes at line 15967025 (0x3763650)
Leaked  1016 bytes at line 15967365 (0x3dbdce0)
Leaked  1008 bytes at line 15967607 (0x3156100)
Leaked    48 bytes at line 15967733 (0x36da6d0)
Leaked  1016 bytes at line 15968083 (0x3dafff0)
Leaked  1016 bytes at line 15968309 (0x3c66010)
Leaked  1016 bytes at line 15968771 (0x3d3ec10)
Leaked  1008 bytes at line 15968891 (0x3e01890)
Leaked    48 bytes at line 15969017 (0x4145360)
Leaked    48 bytes at line 15979849 (0x40398c0)
Leaked  1000 bytes at line 15984514 (0x41c5f70)
Leaked    48 bytes at line 15984626 (0x3f307e0)
Leaked  8188 bytes at line 16054675 (0x422fb70)
Leaked  8188 bytes at line 16160550 (0x4155910)
Leaked    24 bytes at line 16235645 (0x4189500)
Leaked     8 bytes at line 16235653 (0x3f001c0)
Leaked     4 bytes at line 16235661 (0x3f307c0)
Leaked    40 bytes at line 16235668 (0x3dae530)
Leaked    48 bytes at line 16442784 (0x4112930)
Leaked  4096 bytes at line 16870654 (0x4233b90)
Leaked  4096 bytes at line 16870868 (0x4157920)
Leaked    48 bytes at line 16870975 (0x3f88670)
Leaked  4096 bytes at line 16871082 (0x40fd510)
Leaked    48 bytes at line 16871189 (0x3d58bd0)
Leaked    88 bytes at line 16892392 (0x41f10c0)
Leaked     5 bytes at line 16892477 (0x37467b0)
Leaked     5 bytes at line 16892563 (0x3c96ba0)
Leaked    56 bytes at line 16892647 (0x41129b0)
Leaked  1016 bytes at line 16912316 (0x4111b40)
Leaked    48 bytes at line 16922111 (0x3d44430)
Leaked    48 bytes at line 16928248 (0x3e73150)
Leaked  1000 bytes at line 16954016 (0x3fc7f10)
Leaked    48 bytes at line 16954120 (0x3fa4590)
Leaked    48 bytes at line 16956777 (0x3f33550)
Leaked  1000 bytes at line 16958865 (0x413e5e0)
Leaked    48 bytes at line 16958969 (0x3c89980)
Leaked  1000 bytes at line 16960277 (0x3eb9820)
Leaked    48 bytes at line 16960379 (0x3f3f210)
Leaked    48 bytes at line 17024423 (0x413f040)
Leaked    48 bytes at line 17081205 (0x41d3940)
Leaked    48 bytes at line 17135000 (0x3e93eb0)
Leaked  1000 bytes at line 17174177 (0x4158930)
Leaked    48 bytes at line 17174271 (0x3d77d50)
Leaked    24 bytes at line 17177509 (0x3d00e50)
Leaked     8 bytes at line 17177517 (0x3d5b110)
Leaked     4 bytes at line 17177525 (0x3c89a00)
Leaked    40 bytes at line 17177532 (0x3d00da0)
Leaked    48 bytes at line 17384648 (0x3f88e70)
Leaked    48 bytes at line 17432850 (0x3d5b490)
Leaked    48 bytes at line 17436675 (0x3ff4c60)
Leaked    48 bytes at line 17436895 (0x4112b30)
Leaked    48 bytes at line 17437665 (0x4113c20)
Leaked    48 bytes at line 17509717 (0x3c899c0)
Leaked  1464 bytes at line 17788513 (0x4067830)
Leaked  4096 bytes at line 17817919 (0x4273fb0)
Leaked  4096 bytes at line 17818133 (0x4115d00)
Leaked    48 bytes at line 17818240 (0x3cb9010)
Leaked  4096 bytes at line 17818347 (0x42c2eb0)
Leaked    48 bytes at line 17818454 (0x3f30780)
Leaked    88 bytes at line 17839465 (0x3f334f0)
Leaked     5 bytes at line 17839550 (0x4112970)
Leaked     5 bytes at line 17839636 (0x3ea76a0)
Leaked    56 bytes at line 17839720 (0x38d1760)
Leaked    48 bytes at line 17859565 (0x3760d20)
Leaked 41344 bytes at line 17883376 (0x412ba80)
Leaked    48 bytes at line 17883482 (0x3c89940)
Leaked    24 bytes at line 18109950 (0x4080880)
Leaked     8 bytes at line 18109958 (0x41453a0)
Leaked     4 bytes at line 18109966 (0x402bdc0)
Leaked    40 bytes at line 18109973 (0x3dc3a60)
Leaked    48 bytes at line 18317089 (0x41b09d0)
Leaked    48 bytes at line 18375946 (0x3d21e20)
Leaked    48 bytes at line 18376052 (0x3cd69b0)
Leaked    48 bytes at line 18376434 (0x38651e0)
Leaked    48 bytes at line 18376650 (0x3fba100)
Leaked    48 bytes at line 18376872 (0x3ca5f00)
Leaked    48 bytes at line 18377092 (0x3d3e8b0)
Leaked    48 bytes at line 18377304 (0x3cb0d80)
Leaked    48 bytes at line 18377412 (0x3a72dc0)
Leaked    48 bytes at line 18377634 (0x3cc4f30)
Leaked    48 bytes at line 18377854 (0x3fccab0)
Leaked    48 bytes at line 18378174 (0x3d1f930)
Leaked    48 bytes at line 18378826 (0x3e72700)
Leaked    48 bytes at line 18378936 (0x417b3a0)
Leaked    48 bytes at line 18379046 (0x3cb03f0)
Leaked    48 bytes at line 18379268 (0x3dde4e0)
Leaked    48 bytes at line 18379478 (0x3d5b0c0)
Leaked    48 bytes at line 18380342 (0x3cb0ef0)
Leaked    48 bytes at line 18380562 (0x3fb9a40)
Leaked    48 bytes at line 18381110 (0x40f5110)
Leaked    48 bytes at line 18381796 (0x3f3f250)
Leaked    48 bytes at line 18382010 (0x4238c90)
Leaked    48 bytes at line 18382120 (0x3d58670)
Leaked    48 bytes at line 18382230 (0x4051940)
Leaked    48 bytes at line 18382452 (0x3ff07d0)
Leaked    48 bytes at line 18382664 (0x41dd350)
Leaked    48 bytes at line 18382770 (0x40ccb60)
Leaked    48 bytes at line 18382879 (0x4017dc0)
Leaked    48 bytes at line 18382990 (0x3d9c060)
Leaked    48 bytes at line 18383206 (0x3d9bfa0)
Leaked    48 bytes at line 18383426 (0x3ec3b90)
Leaked    48 bytes at line 18383860 (0x3fb9b30)
Leaked    48 bytes at line 18383968 (0x408b830)
Leaked    48 bytes at line 18384622 (0x4118c60)
Leaked    48 bytes at line 18384730 (0x4118ca0)
Leaked    48 bytes at line 18384840 (0x4175f90)
Leaked    48 bytes at line 18384950 (0x4175fd0)
Leaked    48 bytes at line 18385172 (0x41d3f80)
Leaked    48 bytes at line 18385384 (0x40dc3e0)
Leaked    48 bytes at line 18385492 (0x3d1a000)
Leaked    48 bytes at line 18385934 (0x40f7cf0)
Leaked    48 bytes at line 18386146 (0x3cd6900)
Leaked    48 bytes at line 18386254 (0x3cd6940)
Leaked    48 bytes at line 18386470 (0x3d21db0)
Leaked    48 bytes at line 18386692 (0x32aac60)
Leaked    48 bytes at line 18386912 (0x3ee2a90)
Leaked    48 bytes at line 18387018 (0x3ee2ad0)
Leaked    48 bytes at line 18387458 (0x39b90b0)
Leaked    48 bytes at line 18387670 (0x41b06f0)
Leaked    48 bytes at line 18387778 (0x41b0730)
Leaked    48 bytes at line 18388206 (0x3ea76f0)
Leaked    48 bytes at line 18388426 (0x3ea7770)
Leaked    48 bytes at line 18388746 (0x402b7b0)
Leaked    48 bytes at line 18388968 (0x41979e0)
Leaked 16384 bytes at line 18389186 (0x424ec00)
Leaked    48 bytes at line 18389292 (0x424eb50)
Leaked    48 bytes at line 18389398 (0x424eb90)
Leaked    48 bytes at line 18389507 (0x4050400)
Leaked    48 bytes at line 18389618 (0x4050440)
Leaked    48 bytes at line 18389840 (0x3d34870)
Leaked    48 bytes at line 18390060 (0x3d348f0)
Leaked    48 bytes at line 18390272 (0x3e93e10)
Leaked    48 bytes at line 18390380 (0x3e93e50)
Leaked    48 bytes at line 18390712 (0x41894a0)
Leaked    48 bytes at line 18390928 (0x3f306a0)
Leaked 16384 bytes at line 18391032 (0x4240c00)
Leaked    48 bytes at line 18391138 (0x3f306e0)
Leaked    48 bytes at line 18391246 (0x4222370)
Leaked    48 bytes at line 18391354 (0x42223b0)
Leaked    73 bytes at line 18395260 (0x35d7a30)
Leaked    64 bytes at line 18396659 (0x41bb890)
Leaked    48 bytes at line 18398254 (0x42223f0)
Leaked   280 bytes at line 18414170 (0x39b9110)
Leaked   280 bytes at line 18414522 (0x3f594a0)
Leaked    48 bytes at line 18414698 (0x419fe30)
Leaked   280 bytes at line 18414750 (0x4139960)
Leaked   280 bytes at line 18415675 (0x40f51b0)
Leaked   280 bytes at line 18415847 (0x3e7aa60)
Leaked   280 bytes at line 18416019 (0x3fccb10)
Leaked   280 bytes at line 18416191 (0x3dada10)
Leaked   280 bytes at line 18416363 (0x3c97300)
Leaked   280 bytes at line 18416535 (0x3d437f0)
Leaked   280 bytes at line 18416707 (0x41074e0)
Leaked   280 bytes at line 18416879 (0x41b0840)
Leaked   280 bytes at line 18417051 (0x3cb0240)
Leaked   280 bytes at line 18417223 (0x409ae60)
Leaked   280 bytes at line 18417395 (0x4039a00)
Leaked   280 bytes at line 18417567 (0x3e20e70)
Leaked    48 bytes at line 18417746 (0x419fea0)
Leaked    48 bytes at line 18417929 (0x3ded4d0)
Leaked    48 bytes at line 18417998 (0x3ded510)
Leaked  1000 bytes at line 18418808 (0x38c2d00)
Leaked    48 bytes at line 18418878 (0x3e09c10)
Leaked  1016 bytes at line 18418959 (0x30b70b0)
Leaked    48 bytes at line 18419036 (0x3ded550)
Leaked  1016 bytes at line 18419187 (0x4194410)
Leaked  1000 bytes at line 18419261 (0x3eae730)
Leaked    48 bytes at line 18419333 (0x3ded590)
Leaked    48 bytes at line 18419411 (0x3e09c50)
Leaked  1016 bytes at line 18419491 (0x4068e80)
Leaked    48 bytes at line 18419568 (0x3e09c90)
Leaked  1000 bytes at line 18419642 (0x40bdc80)
Leaked    48 bytes at line 18419716 (0x3e09cd0)
Leaked  1016 bytes at line 18419793 (0x407ef30)
Leaked    48 bytes at line 18419873 (0x4240af0)
Leaked  1016 bytes at line 18419953 (0x4274fc0)
Leaked  1008 bytes at line 18420034 (0x4279990)
Leaked    48 bytes at line 18420120 (0x4240b30)
Leaked  1000 bytes at line 18420199 (0xd89e40)
Leaked    48 bytes at line 18420271 (0x4240b70)
Leaked    48 bytes at line 18420352 (0x4240bb0)
Leaked  1000 bytes at line 18421458 (0x3e5fbf0)
Leaked    48 bytes at line 18421520 (0x40886c0)
Leaked 16384 bytes at line 18422504 (0x42f0c00)
Leaked  1000 bytes at line 18423332 (0x4158d20)
Leaked    48 bytes at line 18423402 (0x4088650)
Leaked  1000 bytes at line 18424424 (0x4195cb0)
Leaked    48 bytes at line 18424488 (0x3f81a40)
Leaked  1000 bytes at line 18425123 (0x4279d90)
Leaked    48 bytes at line 18425189 (0x3f3d050)
Leaked    48 bytes at line 18426191 (0x3cbe990)
Leaked    48 bytes at line 18426255 (0x3cbe9d0)
Leaked    48 bytes at line 18427113 (0x3cbea10)
Leaked    48 bytes at line 18427341 (0x3cbea50)
Leaked    48 bytes at line 18427422 (0x3cbea90)
Leaked    48 bytes at line 18427506 (0x4012880)
Leaked    40 bytes at line 18427594 (0x41b6050)
Leaked    21 bytes at line 18427676 (0x4017420)
Leaked    11 bytes at line 18427755 (0x3eb8710)
Leaked     6 bytes at line 18427831 (0x3a72e20)
Leaked    50 bytes at line 18427907 (0x3e1f180)
Leaked    20 bytes at line 18427983 (0x3fba670)
Leaked   251 bytes at line 18428059 (0x3e20cd0)
Leaked    57 bytes at line 18428135 (0x38dfda0)
Leaked     5 bytes at line 18428211 (0x4112b70)
Leaked     9 bytes at line 18428287 (0x32aa960)
Leaked   141 bytes at line 18428363 (0x426fec0)
Leaked   142 bytes at line 18428439 (0x40692b0)
Leaked    40 bytes at line 18428515 (0x3df85b0)
Leaked    14 bytes at line 18428591 (0x417b0d0)
Leaked    20 bytes at line 18428667 (0x3d58b30)
Leaked    20 bytes at line 18428743 (0x41125c0)
Leaked    20 bytes at line 18428819 (0x40e0040)
Leaked     9 bytes at line 18428895 (0x3d1dcf0)
Leaked    19 bytes at line 18428971 (0x3cd61a0)
Leaked 62008 bytes at line 18455720 (0x42548d0)
Leaked    48 bytes at line 18455792 (0x38dfbb0)
Leaked  8188 bytes at line 18456777 (0x4231b80)
Leaked  8188 bytes at line 18511514 (0x42c0ea0)
Leaked  8188 bytes at line 18562188 (0x42c3ec0)
Leaked    56 bytes at line 18626789 (0x41bb9d0)
Leaked    72 bytes at line 18627058 (0x3e3aa00)
Leaked    18 bytes at line 18627354 (0x4173e80)

[-- Attachment #6: leaks_all.pdf --]
[-- Type: application/pdf, Size: 14800 bytes --]

[-- Attachment #7: leaks_4k_line_numbers.pdf --]
[-- Type: application/pdf, Size: 10004 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #8: follow_alloc.pl --]
[-- Type: text/x-perl, Size: 1986 bytes --]

#!/usr/bin/perl
use strict;
use warnings;

use Getopt::Euclid;
use feature ':5.10';

my $size = sprintf('0x%x', $ARGV{'<size>'} =~ /^0x/ ? hex($ARGV{'<size>'}) : $ARGV{'<size>'} );


my $next_after_alloc_type;
my %addrs;

my $refcount = 0;

my $printing;

while(<>)
{
    if(/^$/)
    {
        print "\n" if $printing;
        $printing = undef;
        next;
    }

    if( $printing && /^\s/ )
    {
        print;
        next;
    }


    next unless /probe_libc:([^:]+)/;

    if( /$size\b/ )
    {
        if(/realloc/)
        {
            die "realloc not supported";
        }

        my $type = /probe_libc:([a-z_]+)/;
        ($next_after_alloc_type) = $type;

        # I don't print allocation entries. Those aren't interesting. Allocation
        # EXITS are interesting and I print those further down
        # doprint();
    }
    elsif( $next_after_alloc_type )
    {
        my $type = /probe_libc:([a-z_]+)/;
        if($type ne $next_after_alloc_type)
        {
            die "Didn't get ret for type $type";
        }

        my ($addr) = /arg1=(0x[0-9a-f]+)/;
        $addrs{$addr} = 1;

        $next_after_alloc_type = undef;

        $refcount++;

        doprint();
        next;
    }
    else
    {
        for my $addr(keys %addrs)
        {
            if(/$addr\b/)
            {
                if(/free|realloc/)
                {
                    $refcount--;
                }

                delete $addrs{$addr};
                doprint();
            }
        }
    }
}

sub doprint
{
    $printing = 1;
    print "Line: $. Refcount: $refcount. $_";
}



=head1 NAME

follow_alloc.pl - trace allocation of a particular size

=head1 SYNOPSIS

 $ ./follow_alloc.pl --size 0x1234

=head1 DESCRIPTION

Looks at C<perf script> output and reports stuff

=head1 REQUIRED ARGUMENTS

=over

=item <size>

Size of allocation to trace

=for Euclid:
  size.type: /0x[0-9a-f]+|[0-9]+/

=back

=head1 AUTHOR

Dima Kogan, C<< <dima@secretsauce.net> >>

[-- Attachment #9: follow4096 --]
[-- Type: application/octet-stream, Size: 228766 bytes --]

Line: 945306 Refcount: 1. emacs-snapshot- 28044 [000] 587944.079126: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4278980
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 945520 Refcount: 2. emacs-snapshot- 28044 [000] 587944.079147: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e94140
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 987668 Refcount: 3. emacs-snapshot- 28044 [001] 587944.094209: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 1029684 Refcount: 2. emacs-snapshot- 28044 [001] 587944.115094: probe_libc:free: (7fa38bffc660) mem=0x40647b0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15e8bd eval_sub (/usr/bin/emacs-snapshot-lucid)
	          162382 Feval (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	           f2d62 menu_item_eval_property (/usr/bin/emacs-snapshot-lucid)
	           f3a09 parse_menu_item.part.31 (/usr/bin/emacs-snapshot-lucid)
	           68e93 single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 1891701 Refcount: 3. emacs-snapshot- 28044 [001] 587946.097304: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x414c480
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 1891915 Refcount: 4. emacs-snapshot- 28044 [001] 587946.097326: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40ac1d0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 1892129 Refcount: 5. emacs-snapshot- 28044 [001] 587946.097347: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e95150
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 1932452 Refcount: 6. emacs-snapshot- 28044 [000] 587946.111013: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 2471670 Refcount: 5. emacs-snapshot- 28044 [000] 587946.182840: probe_libc:free: (7fa38bffc660) mem=0x40647b0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15fa3d call1 (/usr/bin/emacs-snapshot-lucid)
	          166cba mapcar1 (/usr/bin/emacs-snapshot-lucid)
	          1673a9 Fmapcar (/usr/bin/emacs-snapshot-lucid)
	          15f928 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 2842574 Refcount: 6. emacs-snapshot- 28044 [001] 587948.105005: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e96160
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 2842788 Refcount: 7. emacs-snapshot- 28044 [001] 587948.105034: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x42756a0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 2843002 Refcount: 8. emacs-snapshot- 28044 [001] 587948.105060: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x42766b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 2843216 Refcount: 9. emacs-snapshot- 28044 [001] 587948.105085: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x42776c0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 3786976 Refcount: 10. emacs-snapshot- 28044 [000] 587950.114887: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e8f960
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 3787190 Refcount: 11. emacs-snapshot- 28044 [000] 587950.114910: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e90970
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 3787404 Refcount: 12. emacs-snapshot- 28044 [000] 587950.114930: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e91980
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 4732496 Refcount: 13. emacs-snapshot- 28044 [001] 587952.137853: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e92990
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 4732710 Refcount: 14. emacs-snapshot- 28044 [001] 587952.137880: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40cab20
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 4732924 Refcount: 15. emacs-snapshot- 28044 [001] 587952.137905: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40cbb30
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 5522786 Refcount: 16. emacs-snapshot- 28044 [001] 587952.286476: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4221360
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           f2f69 process_tool_bar_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           fe39b map_keymap (/usr/bin/emacs-snapshot-lucid)
	           f405f tool_bar_items (/usr/bin/emacs-snapshot-lucid)
	           32241 update_tool_bar (/usr/bin/emacs-snapshot-lucid)
	           534b6 redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 5663647 Refcount: 17. emacs-snapshot- 28044 [001] 587954.155092: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 5690430 Refcount: 16. emacs-snapshot- 28044 [001] 587954.173351: probe_libc:free: (7fa38bffc660) mem=0x40647b0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15e8bd eval_sub (/usr/bin/emacs-snapshot-lucid)
	          162382 Feval (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	           f2d62 menu_item_eval_property (/usr/bin/emacs-snapshot-lucid)
	           f3705 parse_menu_item.part.31 (/usr/bin/emacs-snapshot-lucid)
	           68e93 single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 6568355 Refcount: 17. emacs-snapshot- 28044 [001] 587956.152021: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3eaccf0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 6568569 Refcount: 18. emacs-snapshot- 28044 [001] 587956.152044: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41f1120
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 6568783 Refcount: 19. emacs-snapshot- 28044 [001] 587956.152064: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4162810
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 7522468 Refcount: 20. emacs-snapshot- 28044 [000] 587958.168485: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4235c70
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 7522682 Refcount: 21. emacs-snapshot- 28044 [000] 587958.168507: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4032830
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 7522896 Refcount: 22. emacs-snapshot- 28044 [000] 587958.168528: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41d8f30
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 7564029 Refcount: 23. emacs-snapshot- 28044 [001] 587958.182345: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 8125647 Refcount: 22. emacs-snapshot- 28044 [001] 587958.289945: probe_libc:free: (7fa38bffc660) mem=0x40647b0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15fa0a call0 (/usr/bin/emacs-snapshot-lucid)
	          15e18e internal_condition_case_n (/usr/bin/emacs-snapshot-lucid)
	           eae54 safe_run_hook_funcall (/usr/bin/emacs-snapshot-lucid)
	          15d834 run_hook_with_args.part.8 (/usr/bin/emacs-snapshot-lucid)
	           ef7a9 safe_run_hooks (/usr/bin/emacs-snapshot-lucid)
	           32086 update_menu_bar.part.16 (/usr/bin/emacs-snapshot-lucid)
	           538bc redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 8460139 Refcount: 23. emacs-snapshot- 28044 [000] 587960.184641: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x417a070
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 8460353 Refcount: 24. emacs-snapshot- 28044 [000] 587960.184662: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41dbf50
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 8460567 Refcount: 25. emacs-snapshot- 28044 [000] 587960.184684: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4044c10
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 8501678 Refcount: 26. emacs-snapshot- 28044 [000] 587960.200717: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 9099874 Refcount: 25. emacs-snapshot- 28044 [001] 587960.325504: probe_libc:free: (7fa38bffc660) mem=0x40647b0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15e8bd eval_sub (/usr/bin/emacs-snapshot-lucid)
	          162382 Feval (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	           f2d62 menu_item_eval_property (/usr/bin/emacs-snapshot-lucid)
	           f3a09 parse_menu_item.part.31 (/usr/bin/emacs-snapshot-lucid)
	           68e93 single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           320dc update_menu_bar.part.16 (/usr/bin/emacs-snapshot-lucid)
	           538bc redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 9410176 Refcount: 26. emacs-snapshot- 28044 [001] 587962.193346: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4049c40
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 9410390 Refcount: 27. emacs-snapshot- 28044 [001] 587962.193374: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4176050
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 9410604 Refcount: 28. emacs-snapshot- 28044 [001] 587962.193400: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4177060
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 9450917 Refcount: 29. emacs-snapshot- 28044 [000] 587962.209132: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 10202797 Refcount: 30. emacs-snapshot- 28044 [000] 587962.342221: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x416ab20
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          146197 Fmake_vector (/usr/bin/emacs-snapshot-lucid)
	          165ad8 concat (/usr/bin/emacs-snapshot-lucid)
	          165b9f Fcopy_sequence (/usr/bin/emacs-snapshot-lucid)
	           32235 update_tool_bar (/usr/bin/emacs-snapshot-lucid)
	           534b6 redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 11248391 Refcount: 31. emacs-snapshot- 28044 [001] 587966.221391: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4048c10
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 11248605 Refcount: 32. emacs-snapshot- 28044 [001] 587966.221413: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x416bb30
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 11291248 Refcount: 33. emacs-snapshot- 28044 [001] 587966.235371: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41ea920
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 11336335 Refcount: 32. emacs-snapshot- 28044 [001] 587966.255399: probe_libc:free: (7fa38bffc660) mem=0x41ea920
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15fa91 call2 (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           fe39b map_keymap (/usr/bin/emacs-snapshot-lucid)
	           fe40a Fmap_keymap (/usr/bin/emacs-snapshot-lucid)
	          15f919 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15e18e internal_condition_case_n (/usr/bin/emacs-snapshot-lucid)
	           2b041 safe__call (/usr/bin/emacs-snapshot-lucid)
	           38c8e safe_call (/usr/bin/emacs-snapshot-lucid)
	           fea53 map_keymap_canonical (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 12195174 Refcount: 33. emacs-snapshot- 28044 [000] 587968.235950: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4178070
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 12195388 Refcount: 34. emacs-snapshot- 28044 [000] 587968.235972: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4298780
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 12195602 Refcount: 35. emacs-snapshot- 28044 [000] 587968.235991: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4045c20
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 12236411 Refcount: 36. emacs-snapshot- 28044 [001] 587968.250005: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41ea920
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 12776717 Refcount: 35. emacs-snapshot- 28044 [000] 587968.324688: probe_libc:free: (7fa38bffc660) mem=0x41ea920
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 13147241 Refcount: 36. emacs-snapshot- 28044 [001] 587970.245434: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4046c30
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 13147455 Refcount: 37. emacs-snapshot- 28044 [001] 587970.245462: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41d9f40
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 13147669 Refcount: 38. emacs-snapshot- 28044 [001] 587970.245488: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3ea4330
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 13147883 Refcount: 39. emacs-snapshot- 28044 [001] 587970.245513: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4173f70
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 14092181 Refcount: 40. emacs-snapshot- 28044 [001] 587972.258977: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4174f80
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 14092395 Refcount: 41. emacs-snapshot- 28044 [001] 587972.259005: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4118d10
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 14092609 Refcount: 42. emacs-snapshot- 28044 [001] 587972.259030: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4119d20
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 14887310 Refcount: 43. emacs-snapshot- 28044 [000] 587972.403870: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40c7e50
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           f2f69 process_tool_bar_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           fe39b map_keymap (/usr/bin/emacs-snapshot-lucid)
	           f405f tool_bar_items (/usr/bin/emacs-snapshot-lucid)
	           32241 update_tool_bar (/usr/bin/emacs-snapshot-lucid)
	           534b6 redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 15026982 Refcount: 44. emacs-snapshot- 28044 [001] 587974.285407: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e8d950
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 15027196 Refcount: 45. emacs-snapshot- 28044 [001] 587974.285429: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4114cf0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 15818645 Refcount: 46. emacs-snapshot- 28044 [001] 587974.428265: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4117c50
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           f2f69 process_tool_bar_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           fe39b map_keymap (/usr/bin/emacs-snapshot-lucid)
	           f405f tool_bar_items (/usr/bin/emacs-snapshot-lucid)
	           32241 update_tool_bar (/usr/bin/emacs-snapshot-lucid)
	           534b6 redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 15970103 Refcount: 47. emacs-snapshot- 28044 [000] 587976.293194: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4103760
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 15995633 Refcount: 46. emacs-snapshot- 28044 [000] 587976.309523: probe_libc:free: (7fa38bffc660) mem=0x4103760
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15e18e internal_condition_case_n (/usr/bin/emacs-snapshot-lucid)
	           2b041 safe__call (/usr/bin/emacs-snapshot-lucid)
	           38c8e safe_call (/usr/bin/emacs-snapshot-lucid)
	           fea53 map_keymap_canonical (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 16870654 Refcount: 47. emacs-snapshot- 28044 [000] 587978.297847: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4233b90
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 16870868 Refcount: 48. emacs-snapshot- 28044 [000] 587978.297876: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4157920
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 16871082 Refcount: 49. emacs-snapshot- 28044 [000] 587978.297901: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40fd510
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 17817919 Refcount: 50. emacs-snapshot- 28044 [000] 587980.305348: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4273fb0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 17818133 Refcount: 51. emacs-snapshot- 28044 [000] 587980.305370: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4115d00
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 17818347 Refcount: 52. emacs-snapshot- 28044 [000] 587980.305393: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x42c2eb0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 17859466 Refcount: 53. emacs-snapshot- 28044 [000] 587980.319496: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x422ccc0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 18437181 Refcount: 52. emacs-snapshot- 28044 [000] 587980.426933: probe_libc:free: (7fa38bffc660) mem=0x422ccc0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15e18e internal_condition_case_n (/usr/bin/emacs-snapshot-lucid)
	           2b041 safe__call (/usr/bin/emacs-snapshot-lucid)
	           38c8e safe_call (/usr/bin/emacs-snapshot-lucid)
	           fea53 map_keymap_canonical (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           320dc update_menu_bar.part.16 (/usr/bin/emacs-snapshot-lucid)
	           538bc redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-21  8:54         ` Dima Kogan
@ 2015-09-21 10:00           ` Eli Zaretskii
  2015-09-21 10:21             ` Eli Zaretskii
  0 siblings, 1 reply; 37+ messages in thread
From: Eli Zaretskii @ 2015-09-21 10:00 UTC (permalink / raw)
  To: Dima Kogan; +Cc: eggert, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org
> Date: Mon, 21 Sep 2015 01:54:11 -0700
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> > This doesn't seem to be a leak in itself.
> 
> Hi. I'm fairly certain that this is the leak. I know I didn't show any
> evidence to that effect earlier, but I simply haven't written it up yet.
> Doing that now. Note that the attached scripts aren't particularly nice;
> they were quickly whipped up to solve a problem.

Thanks.  However, the data you collected does not yet allow to
identify the problem, let alone fix it.

> OK. So what are those 4k leaks? I follow all the 4k allocations with a
> follow_alloc.pl script. This acts as a filter to pull out the salient
> parts of the "script" file.
> 
>   <script ./follow_alloc.pl 4096 > follow4096
> 
> Looking at the follow4096 file I see that most of the 4k allocs have the
> backtrace in the previous email. None of these are ever freed. Some of
> the 4k allocs touch the menu stuff, and those are all freed (in
> garbage_collect, so the gc IS being called). Some of the 4k allocs are
> from the tool bar, and those all leak too, but there aren't as many of
> them as the font ones.
> 
> So this tells me that the backtrace in the previous email is the main
> one causing the leak. There's more stuff to look at however, like the
> toolbar stuff and a suspicious 16384 byte alloc, but those aren't as
> significant as this 4k one.

There's no need to try to prove there _is_ a leek in this scenario,
i.e. memory we allocate and don't free, because I believed you the
first time.  What is needed is not the _proof_ that a leak exists, but
detailed data that will allow to find out _why_ we leak memory.  And
that is only possible if you could present the arguments of the
functions and perhaps some other relevant values that are involved in
the suspect chain of calls.  Alternatively, a simple enough test case,
e.g. creating 2 frames one after another starting from "emacs -Q",
would allow us to walk through the relevant functions with a debugger
and see what's going on.

Please understand: when Emacs creates a new frame, there's any number
of calls to functions that end up allocating memory.  Unless we focus
on specific call chains, study their arguments, and determine why each
chunk of memory is allocated and how it is used, there's no hope for
us to efficiently find and fix this problem.

I will try to reproduce the problem on my machine; to help that,
please tell me (a) what font/fontset-related customizations do you
have, and (b) do you see the same problem when Emacs is started as
"emacs -Q".

Thanks.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-21 10:00           ` Eli Zaretskii
@ 2015-09-21 10:21             ` Eli Zaretskii
  2015-09-22 21:33               ` Dima Kogan
  2015-10-05  7:21               ` Dima Kogan
  0 siblings, 2 replies; 37+ messages in thread
From: Eli Zaretskii @ 2015-09-21 10:21 UTC (permalink / raw)
  To: lists; +Cc: eggert, emacs-devel

> Date: Mon, 21 Sep 2015 13:00:45 +0300
> From: Eli Zaretskii <eliz@gnu.org>
> Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org
> 
> I will try to reproduce the problem on my machine; to help that,
> please tell me (a) what font/fontset-related customizations do you
> have, and (b) do you see the same problem when Emacs is started as
> "emacs -Q".

I tried to reproduce this on my machine, but couldn't.  What I see is
that the chain of calls you reported happens only once, when the first
frame is created.  When I later create a second frame, either with
"C-x 5 f" or by invoking emacsclient, x_new_font is indeed invoked
again, but it doesn't call Fset_char_table_range, and consequently no
additional sub-char-tables are allocated.

So I guess your customizations, in particular those related to fonts
and fontsets, are critical for debugging this problem.

Thanks.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-21 10:21             ` Eli Zaretskii
@ 2015-09-22 21:33               ` Dima Kogan
  2015-09-23  6:35                 ` Eli Zaretskii
  2015-10-05  7:21               ` Dima Kogan
  1 sibling, 1 reply; 37+ messages in thread
From: Dima Kogan @ 2015-09-22 21:33 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: eggert, emacs-devel

Eli Zaretskii <eliz@gnu.org> writes:

> There's no need to try to prove there _is_ a leek in this scenario,
> i.e. memory we allocate and don't free, because I believed you the
> first time.  What is needed is not the _proof_ that a leak exists, but
> detailed data that will allow to find out _why_ we leak memory.

Of course. We're on the same page. I'm not claiming anything more that
under the specific conditions on my box there's a leak. And yes, there's
no specific diagnosis yet, but the probing is getting us closer.



>> I will try to reproduce the problem on my machine; to help that,
>> please tell me (a) what font/fontset-related customizations do you
>> have, and (b) do you see the same problem when Emacs is started as
>> "emacs -Q".
>
> I tried to reproduce this on my machine, but couldn't.  What I see is
> that the chain of calls you reported happens only once, when the first
> frame is created.  When I later create a second frame, either with
> "C-x 5 f" or by invoking emacsclient, x_new_font is indeed invoked
> again, but it doesn't call Fset_char_table_range, and consequently no
> additional sub-char-tables are allocated.
>
> So I guess your customizations, in particular those related to fonts
> and fontsets, are critical for debugging this problem.

My machine ran out of memory, tried to swap, locked up, and forced me to
reboot. When it came back, I no longer see the leak under THESE
conditions. However, the leak described in

  http://debbugs.gnu.org/cgi/bugreport.cgi?bug=21509

now happens even more readily than it did before, so I'm going to focus
on that now. Will post findings in that report.

Thanks for looking at this, Eli.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-22 21:33               ` Dima Kogan
@ 2015-09-23  6:35                 ` Eli Zaretskii
  2015-09-23  6:37                   ` Dima Kogan
  0 siblings, 1 reply; 37+ messages in thread
From: Eli Zaretskii @ 2015-09-23  6:35 UTC (permalink / raw)
  To: Dima Kogan; +Cc: eggert, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Date: Tue, 22 Sep 2015 14:33:55 -0700
> Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org
> 
> > I tried to reproduce this on my machine, but couldn't.  What I see is
> > that the chain of calls you reported happens only once, when the first
> > frame is created.  When I later create a second frame, either with
> > "C-x 5 f" or by invoking emacsclient, x_new_font is indeed invoked
> > again, but it doesn't call Fset_char_table_range, and consequently no
> > additional sub-char-tables are allocated.
> >
> > So I guess your customizations, in particular those related to fonts
> > and fontsets, are critical for debugging this problem.
> 
> My machine ran out of memory, tried to swap, locked up, and forced me to
> reboot. When it came back, I no longer see the leak under THESE
> conditions.

OK, but could you please show your font-related customizations anyway?

Thanks.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-23  6:35                 ` Eli Zaretskii
@ 2015-09-23  6:37                   ` Dima Kogan
  2015-09-23  7:16                     ` Eli Zaretskii
  0 siblings, 1 reply; 37+ messages in thread
From: Dima Kogan @ 2015-09-23  6:37 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: eggert, emacs-devel

Eli Zaretskii <eliz@gnu.org> writes:

>> My machine ran out of memory, tried to swap, locked up, and forced me to
>> reboot. When it came back, I no longer see the leak under THESE
>> conditions.
>
> OK, but could you please show your font-related customizations anyway?

No customizations. This is 'emacs -Q', and I never set up any particular
font-related stuff anywhere. Where would the extra settings be?



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-23  6:37                   ` Dima Kogan
@ 2015-09-23  7:16                     ` Eli Zaretskii
  0 siblings, 0 replies; 37+ messages in thread
From: Eli Zaretskii @ 2015-09-23  7:16 UTC (permalink / raw)
  To: Dima Kogan; +Cc: eggert, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org
> Date: Tue, 22 Sep 2015 23:37:45 -0700
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> >> My machine ran out of memory, tried to swap, locked up, and forced me to
> >> reboot. When it came back, I no longer see the leak under THESE
> >> conditions.
> >
> > OK, but could you please show your font-related customizations anyway?
> 
> No customizations. This is 'emacs -Q', and I never set up any particular
> font-related stuff anywhere. Where would the extra settings be?

The usual init files.  But if that happens in "emacs -Q", they are not
loaded.

If we want to continue digging into this problem, then next time it
happens I'd like to see GDB backtraces with values of arguments, in
the chain of calls that caused the leak.  At this time, I have no idea
why Emacs kept creating sub-char-tables in the fontset; it doesn't
here.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-09-21 10:21             ` Eli Zaretskii
  2015-09-22 21:33               ` Dima Kogan
@ 2015-10-05  7:21               ` Dima Kogan
  2015-10-05  7:55                 ` Eli Zaretskii
  1 sibling, 1 reply; 37+ messages in thread
From: Dima Kogan @ 2015-10-05  7:21 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: eggert, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 67483 bytes --]

Eli Zaretskii <eliz@gnu.org> writes:

> I tried to reproduce this on my machine, but couldn't.  What I see is
> that the chain of calls you reported happens only once, when the first
> frame is created.  When I later create a second frame, either with
> "C-x 5 f" or by invoking emacsclient, x_new_font is indeed invoked
> again, but it doesn't call Fset_char_table_range, and consequently no
> additional sub-char-tables are allocated.

Hi. This is happening for me again. And I can't make it NOT happen now,
so I can't compare the two cases. You said you see x_new_font() calls,
but not the subsequent Fset_char_table_range() calls. I see these
Fset_char_table_range() calls with every new frame, and I don't know
where my emacs gets off track. The full backtrace looks like this:


(gdb) bt full
#0  0x00000000005cbdd5 in xmalloc (size=4096) at alloc.c:707
        val = 0x2
#1  0x00000000005ce184 in allocate_vector_block () at alloc.c:2836
        block = 0x33f7ee0
#2  0x00000000005ce3a2 in allocate_vector_from_block (nbytes=1040) at alloc.c:2900
        vector = 0x304b568
        block = 0x5cbd0d <mmap_lisp_allowed_p+9>
        index = 510
        restbytes = 140727746112864
#3  0x00000000005ce9e0 in allocate_vectorlike (len=129) at alloc.c:3108
        nbytes = 1040
        p = 0x5ce34e <allocate_vector_from_block+364>
#4  0x00000000005ceaed in allocate_vector (len=129) at alloc.c:3148
        v = 0x5cea61 <allocate_vectorlike+245>
        nbytes_max = 9223372036854775807
#5  0x000000000054e894 in make_uninit_vector (size=129) at lisp.h:3559
        v = 54491861
        p = 0x110
#6  0x000000000054e8e0 in make_uninit_sub_char_table (depth=3, min_char=64256) at lisp.h:3570
        slots = 129
        v = 60184035045
#7  0x00000000004ee43b in make_sub_char_table (depth=3, min_char=64256, defalt=0) at chartab.c:141
        i = 0
        table = 0
#8  0x00000000004ef69a in sub_char_table_set_range (table=54492901, from=64256, to=64262, val=50415725, is_uniprop=false) at chartab.c:473
        sub = 0
        tbl = 0x33f7ee0
        depth = 2
        min_char = 61440
        chars_in_block = 128
        i = 22
        c = 64256
        lim = 32
#9  0x00000000004ef6d4 in sub_char_table_set_range (table=14575333, from=64256, to=64262, val=50415725, is_uniprop=false) at chartab.c:477
        sub = 54492901
        tbl = 0xde66e0
        depth = 1
        min_char = 0
        chars_in_block = 4096
        i = 15
        c = 61440
        lim = 16
#10 0x00000000004ef86c in char_table_set_range (table=52981493, from=64256, to=64262, val=50415725) at chartab.c:511
        sub = 14575333
        is_uniprop = false
        lim = 0
        i = 0
        c = 0
        tbl = 0x3286ef0
#11 0x00000000004efeca in Fset_char_table_range (char_table=52981493, range=17504803, value=50415725) at chartab.c:654
#12 0x0000000000680b3f in Fset_fontset_font (name=17419252, target=29952, font_spec=15236741, frame=13456677, add=0) at fontset.c:1590
        fontset = 52981493
        font_def = 15103109
        registry = 17878196
        family = 0
        range_list = 17504787
        charset = 0x0
        fontname = 17878292
        ascii_changed = true
#13 0x0000000000681569 in fontset_from_font (font_object=50891429) at fontset.c:1757
        target = 29952
        font_name = 17419444
        font_spec = 15236741
        registry = 28656
        fontset_spec = 15395877
        alias = 17419220
        name = 17419252
        fontset = 52981493
        val = 0
#14 0x00000000005270c0 in x_new_font (f=0x304b360, font_object=50891429, fontset=-1) at xterm.c:9413
        font = 0x3088aa0
        unit = 32765
        font_ascent = 0
        font_descent = -1152306608
#15 0x0000000000428e51 in x_set_font (f=0x304b360, arg=17419444, oldval=0) at frame.c:3630
        font_object = 50891429
        fontset = -1
        font_param = 18436660
#16 0x0000000000427316 in x_set_frame_parameters (f=0x304b360, alist=0) at frame.c:3157
        param_index = 7
        old_value = 0
        prop = 22080
        val = 50891429
        tail = 0
        width = 0
        height = 0
        width_change = false
        height_change = false
        left = 46656
        top = 46656
        icon_left = 46656
        icon_top = 46656
        fullscreen = 0
        fullscreen_change = false
        parms = 0x7ffdbb5132d0
        values = 0x7ffdbb5132d8
        i = 1
        p = 0
        left_no_change = false
        top_no_change = false
        icon_left_no_change = false
        icon_top_no_change = false
        sa_avail = 16368
        sa_count = 23
        sa_must_free = false
#17 0x000000000042adeb in x_default_parameter (f=0x304b360, alist=17374659, prop=22080, deflt=50891429, xprop=0x6c3bc6 "font", xclass=0x6c3bc1 "Font", type=RES_TYPE_STRING) at frame.c:4381
        tem = 50891429
        arg = 140727746114611
#18 0x0000000000534298 in x_default_font_parameter (f=0x304b360, parms=17374659) at xfns.c:2920
        dpyinfo = 0x32e6cf0
        font_param = 0
        font = 50891429
#19 0x0000000000534e1f in Fx_create_frame (parms=17374659) at xfns.c:3139
        f = 0x304b360
        frame = 50639717
        tem = 46656
        name = 46656
        minibuffer_only = false
        window_prompting = 0
        count = 22
        display = 18437332
        dpyinfo = 0x32e6cf0
        parent = 0
        kb = 0x31d3fe0
#20 0x00000000005f6736 in Ffuncall (nargs=2, args=0x7ffdbb513698) at eval.c:2634
        internal_argbuf = {140727746115136, 5557667, 17315475, 17376547, 140727746115200, 6085607, 17315475, 10109243}
        fun = 9566109
        original_fun = 473296
        funcar = 5557422
        numargs = 1
        lisp_numargs = 17376547
        val = 140727746115072
        internal_args = 0x7ffdbb5136a0
        count = 21
#21 0x000000000063cf86 in exec_byte_code (bytestr=10108868, vector=10108901, maxdepth=18, args_template=0, nargs=0, args=0x0) at bytecode.c:880
        targets = 
          {0x640a60 <exec_byte_code+18257>, 0x640abd <exec_byte_code+18350>, 0x640abf <exec_byte_code+18352>, 0x640ac1 <exec_byte_code+18354>, 0x640ac3 <exec_byte_code+18356>, 0x640ac3 <exec_byte_code+18356>, 0x640b29 <exec_byte_code+18458>, 0x640b99 <exec_byte_code+18570>, 0x63c7ab <exec_byte_code+1180>, 0x63c7ad <exec_byte_code+1182>, 0x63c7af <exec_byte_code+1184>, 0x63c7b1 <exec_byte_code+1186>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7bc <exec_byte_code+1197>, 0x63c774 <exec_byte_code+1125>, 0x63cc72 <exec_byte_code+2403>, 0x63cc74 <exec_byte_code+2405>, 0x63cc76 <exec_byte_code+2407>, 0x63cc78 <exec_byte_code+2409>, 0x63cc7a <exec_byte_code+2411>, 0x63cc7a <exec_byte_code+2411>, 0x63ccb8 <exec_byte_code+2473>, 0x63cc83 <exec_byte_code+2420>, 0x63ce7c <exec_byte_code+2925>, 0x63ce7e <exec_byte_code+2927>, 0x63ce80 <exec_byte_code+2929>, 0x63ce82 <exec_byte_code+2931>, 0x63ce84 <exec_byte_code+2933>, 0x63ce84 <exec_byte_code+2933>, 0x63ce2d <exec_byte_code+2846>, 0x63ce47 <exec_byte_code+2872>, 0x63cf44 <exec_byte_code+3125>, 0x63cf46 <exec_byte_code+3127>, 0x63cf48 <exec_byte_code+3129>, 0x63cf4a <exec_byte_code+3131>, 0x63cf4c <exec_byte_code+3133>, 0x63cf4c <exec_byte_code+3133>, 0x63cef5 <exec_byte_code+3046>, 0x63cf0f <exec_byte_code+3072>, 0x63d00f <exec_byte_code+3328>, 0x63d011 <exec_byte_code+3330>, 0x63d013 <exec_byte_code+3332>, 0x63d015 <exec_byte_code+3334>, 0x63d017 <exec_byte_code+3336>, 0x63d017 <exec_byte_code+3336>, 0x63cfc0 <exec_byte_code+3249>, 0x63cfda <exec_byte_code+3275>, 0x63e105 <exec_byte_code+7670>, 0x63dea1 <exec_byte_code+7058>, 0x63de95 <exec_byte_code+7046>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x63e358 <exec_byte_code+8265>, 0x63e455 <exec_byte_code+8518>, 0x63e4b9 <exec_byte_code+8618>, 0x63e51e <exec_byte_code+8719>, 0x63e587 <exec_byte_code+8824>, 0x63cacb <exec_byte_code+1980>, 0x63cb4d <exec_byte_code+2110>, 0x63e605 <exec_byte_code+8950>, 0x63ca19 <exec_byte_code+1802>, 0x63cbbf <exec_byte_code+2224>, 0x63e671 <exec_byte_code+9058>, 0x63e6e3 <exec_byte_code+9172>, 0x63e72f <exec_byte_code+9248>, 0x63e7a1 <exec_byte_code+9362>, 0x63e7f7 <exec_byte_code+9448>, 0x63e8d9 <exec_byte_code+9674>, 0x63e925 <exec_byte_code+9750>, 0x63e997 <exec_byte_code+9864>, 0x63ea2c <exec_byte_code+10013>, 0x63ea78 <exec_byte_code+10089>, 0x63eac4 <exec_byte_code+10165>, 0x63eb36 <exec_byte_code+10279>, 0x63eba8 <exec_byte_code+10393>, 0x63ec1a <exec_byte_code+10507>, 0x63ecaf <exec_byte_code+10656>, 0x63ed05 <exec_byte_code+10742>, 0x63ed5b <exec_byte_code+10828>, 0x63ee3d <exec_byte_code+11054>, 0x63eed7 <exec_byte_code+11208>, 0x63ef71 <exec_byte_code+11362>, 0x63f1f5 <exec_byte_code+12006>, 0x63f26c <exec_byte_code+12125>, 0x63f2e3 <exec_byte_code+12244>, 0x63f35a <exec_byte_code+12363>, 0x63f3d1 <exec_byte_code+12482>, 0x63f427 <exec_byte_code+12568>, 0x63f4c5 <exec_byte_code+12726>, 0x63f51b <exec_byte_code+12812>, 0x63f571 <exec_byte_code+12898>, 0x63f5c7 <exec_byte_code+12984>, 0x63f6e5 <exec_byte_code+13270>, 0x63dd1d <exec_byte_code+6670>, 0x63f748 <exec_byte_code+13369>, 0x63f794 <exec_byte_code+13445>, 0x63f86e <exec_byte_code+13663>, 0x63f8d1 <exec_byte_code+13762>, 0x63f934 <exec_byte_code+13861>, 0x63f980 <exec_byte_code+13937>, 0x63f9d2 <exec_byte_code+14019>, 0x63fa24 <exec_byte_code+14101>, 0x63fa7e <exec_byte_code+14191>, 0x640a60 <exec_byte_code+18257>, 0x63fada <exec_byte_code+14283>, 0x63fb21 <exec_byte_code+14354>, 0x63fb68 <exec_byte_code+14425>, 0x63fbaf <exec_byte_code+14496>, 0x63fbf6 <exec_byte_code+14567>, 0x63fc3d <exec_byte_code+14638>, 0x63dd1d <exec_byte_code+6670>, 0x640a60 <exec_byte_code+18257>, 0x63fc89 <exec_byte_code+14714>, 0x63fcdd <exec_byte_code+14798>, 0x63fd29 <exec_byte_code+14874>, 0x63fd75 <exec_byte_code+14950>, 0x63fde7 <exec_byte_code+15064>, 0x63fe59 <exec_byte_code+15178>, 0x63fea5 <exec_byte_code+15254>, 0x63ffa4 <exec_byte_code+15509>, 0x640016 <exec_byte_code+15623>, 0x640088 <exec_byte_code+15737>, 0x6400fa <exec_byte_code+15851>, 0x640141 <exec_byte_code+15922>, 0x640a60 <exec_byte_code+18257>, 0x63dc51 <exec_byte_code+6466>, 0x63d0c5 <exec_byte_code+3510>, 0x63c8bc <exec_byte_code+1453>, 0x63d1ef <exec_byte_code+3808>, 0x63d34c <exec_byte_code+4157>, 0x63d49d <exec_byte_code+4494>, 0x63dbd9 <exec_byte_code+6346>, 0x63dc1c <exec_byte_code+6413>, 0x63cdd6 <exec_byte_code+2759>, 0x63dcde <exec_byte_code+6607>, 0x63dd4f <exec_byte_code+6720>, 0x63dde2 <exec_byte_code+6867>, 0x63de21 <exec_byte_code+6930>, 0x63e144 <exec_byte_code+7733>, 0x63e1cc <exec_byte_code+7869>, 0x63e261 <exec_byte_code+8018>, 0x63e2cb <exec_byte_code+8124>, 0x63d079 <exec_byte_code+3434>, 0x64018d <exec_byte_code+15998>, 0x640222 <exec_byte_code+16147>, 0x64026e <exec_byte_code+16223>, 0x6402ba <exec_byte_code+16299>, 0x640306 <exec_byte_code+16375>, 0x640352 <exec_byte_code+16451>, 0x6403c4 <exec_byte_code+16565>, 0x640436 <exec_byte_code+16679>, 0x6404a8 <exec_byte_code+16793>, 0x64051a <exec_byte_code+16907>, 0x640674 <exec_byte_code+17253>, 0x6406e6 <exec_byte_code+17367>, 0x640758 <exec_byte_code+17481>, 0x6407a4 <exec_byte_code+17557>, 0x640816 <exec_byte_code+17671>, 0x640888 <exec_byte_code+17785>, 0x6408e2 <exec_byte_code+17875>, 0x64093c <exec_byte_code+17965>, 0x63f61d <exec_byte_code+13070>, 0x63f673 <exec_byte_code+13156>, 0x640992 <exec_byte_code+18051>, 0x6409fb <exec_byte_code+18156>, 0x640a60 <exec_byte_code+18257>, 0x63d5ee <exec_byte_code+4831>, 0x63d6eb <exec_byte_code+5084>, 0x63d827 <exec_byte_code+5400>, 0x63d963 <exec_byte_code+5716>, 0x63da9e <exec_byte_code+6031>, 0x63e84d <exec_byte_code+9534>, 0x63edb1 <exec_byte_code+10914>, 0x63f7e2 <exec_byte_code+13523>, 0x640c30 <exec_byte_code+18721>, 0x640ca3 <exec_byte_code+18836>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640d3d <exec_byte_code+18990>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640dd7 <exec_byte_code+19144> <repeats 64 times>}
        count = 16
        op = 1
        vectorp = 0x9a3fe8 <pure+527272>
        stack = {
          pc = 0xbce1b4 <pure+2796916> "\024\316\216\317\f!\210\320\f\b\"\210\321\f\322\"\210\323\f\b\"\210\n\204W", 
          byte_string = 10108868, 
          byte_string_start = 0xbce17e <pure+2796862> "\306\b!\020\307\b!\031\310\b\236\032\311\033\312\211\034\035\v\312\036\026\211\036\027\203\060", 
          next = 0x7ffdbb513f40
        }
        top = 0x7ffdbb513698
        result = 51539607552
        type = CATCHER
#22 0x00000000005f736e in funcall_lambda (fun=10108805, nargs=1, arg_vector=0x9a3fe5 <pure+527269>) at eval.c:2860
        val = 51539607552
        syms_left = 0
        next = 4292880
        lexenv = 0
        count = 15
        i = 1
        optional = true
        rest = false
#23 0x00000000005f6a57 in Ffuncall (nargs=2, args=0x7ffdbb513bd0) at eval.c:2683
        fun = 10108805
        original_fun = 4202304
        funcar = 140727746117344
        numargs = 1
        lisp_numargs = 140727746117344
        val = 0
        internal_args = 0x7ffdbb513ee0
        count = 14
#24 0x000000000063cf86 in exec_byte_code (bytestr=17425684, vector=13450677, maxdepth=14, args_template=1030, nargs=1, args=0x7ffdbb514260) at bytecode.c:880
        targets = 
          {0x640a60 <exec_byte_code+18257>, 0x640abd <exec_byte_code+18350>, 0x640abf <exec_byte_code+18352>, 0x640ac1 <exec_byte_code+18354>, 0x640ac3 <exec_byte_code+18356>, 0x640ac3 <exec_byte_code+18356>, 0x640b29 <exec_byte_code+18458>, 0x640b99 <exec_byte_code+18570>, 0x63c7ab <exec_byte_code+1180>, 0x63c7ad <exec_byte_code+1182>, 0x63c7af <exec_byte_code+1184>, 0x63c7b1 <exec_byte_code+1186>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7bc <exec_byte_code+1197>, 0x63c774 <exec_byte_code+1125>, 0x63cc72 <exec_byte_code+2403>, 0x63cc74 <exec_byte_code+2405>, 0x63cc76 <exec_byte_code+2407>, 0x63cc78 <exec_byte_code+2409>, 0x63cc7a <exec_byte_code+2411>, 0x63cc7a <exec_byte_code+2411>, 0x63ccb8 <exec_byte_code+2473>, 0x63cc83 <exec_byte_code+2420>, 0x63ce7c <exec_byte_code+2925>, 0x63ce7e <exec_byte_code+2927>, 0x63ce80 <exec_byte_code+2929>, 0x63ce82 <exec_byte_code+2931>, 0x63ce84 <exec_byte_code+2933>, 0x63ce84 <exec_byte_code+2933>, 0x63ce2d <exec_byte_code+2846>, 0x63ce47 <exec_byte_code+2872>, 0x63cf44 <exec_byte_code+3125>, 0x63cf46 <exec_byte_code+3127>, 0x63cf48 <exec_byte_code+3129>, 0x63cf4a <exec_byte_code+3131>, 0x63cf4c <exec_byte_code+3133>, 0x63cf4c <exec_byte_code+3133>, 0x63cef5 <exec_byte_code+3046>, 0x63cf0f <exec_byte_code+3072>, 0x63d00f <exec_byte_code+3328>, 0x63d011 <exec_byte_code+3330>, 0x63d013 <exec_byte_code+3332>, 0x63d015 <exec_byte_code+3334>, 0x63d017 <exec_byte_code+3336>, 0x63d017 <exec_byte_code+3336>, 0x63cfc0 <exec_byte_code+3249>, 0x63cfda <exec_byte_code+3275>, 0x63e105 <exec_byte_code+7670>, 0x63dea1 <exec_byte_code+7058>, 0x63de95 <exec_byte_code+7046>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x63e358 <exec_byte_code+8265>, 0x63e455 <exec_byte_code+8518>, 0x63e4b9 <exec_byte_code+8618>, 0x63e51e <exec_byte_code+8719>, 0x63e587 <exec_byte_code+8824>, 0x63cacb <exec_byte_code+1980>, 0x63cb4d <exec_byte_code+2110>, 0x63e605 <exec_byte_code+8950>, 0x63ca19 <exec_byte_code+1802>, 0x63cbbf <exec_byte_code+2224>, 0x63e671 <exec_byte_code+9058>, 0x63e6e3 <exec_byte_code+9172>, 0x63e72f <exec_byte_code+9248>, 0x63e7a1 <exec_byte_code+9362>, 0x63e7f7 <exec_byte_code+9448>, 0x63e8d9 <exec_byte_code+9674>, 0x63e925 <exec_byte_code+9750>, 0x63e997 <exec_byte_code+9864>, 0x63ea2c <exec_byte_code+10013>, 0x63ea78 <exec_byte_code+10089>, 0x63eac4 <exec_byte_code+10165>, 0x63eb36 <exec_byte_code+10279>, 0x63eba8 <exec_byte_code+10393>, 0x63ec1a <exec_byte_code+10507>, 0x63ecaf <exec_byte_code+10656>, 0x63ed05 <exec_byte_code+10742>, 0x63ed5b <exec_byte_code+10828>, 0x63ee3d <exec_byte_code+11054>, 0x63eed7 <exec_byte_code+11208>, 0x63ef71 <exec_byte_code+11362>, 0x63f1f5 <exec_byte_code+12006>, 0x63f26c <exec_byte_code+12125>, 0x63f2e3 <exec_byte_code+12244>, 0x63f35a <exec_byte_code+12363>, 0x63f3d1 <exec_byte_code+12482>, 0x63f427 <exec_byte_code+12568>, 0x63f4c5 <exec_byte_code+12726>, 0x63f51b <exec_byte_code+12812>, 0x63f571 <exec_byte_code+12898>, 0x63f5c7 <exec_byte_code+12984>, 0x63f6e5 <exec_byte_code+13270>, 0x63dd1d <exec_byte_code+6670>, 0x63f748 <exec_byte_code+13369>, 0x63f794 <exec_byte_code+13445>, 0x63f86e <exec_byte_code+13663>, 0x63f8d1 <exec_byte_code+13762>, 0x63f934 <exec_byte_code+13861>, 0x63f980 <exec_byte_code+13937>, 0x63f9d2 <exec_byte_code+14019>, 0x63fa24 <exec_byte_code+14101>, 0x63fa7e <exec_byte_code+14191>, 0x640a60 <exec_byte_code+18257>, 0x63fada <exec_byte_code+14283>, 0x63fb21 <exec_byte_code+14354>, 0x63fb68 <exec_byte_code+14425>, 0x63fbaf <exec_byte_code+14496>, 0x63fbf6 <exec_byte_code+14567>, 0x63fc3d <exec_byte_code+14638>, 0x63dd1d <exec_byte_code+6670>, 0x640a60 <exec_byte_code+18257>, 0x63fc89 <exec_byte_code+14714>, 0x63fcdd <exec_byte_code+14798>, 0x63fd29 <exec_byte_code+14874>, 0x63fd75 <exec_byte_code+14950>, 0x63fde7 <exec_byte_code+15064>, 0x63fe59 <exec_byte_code+15178>, 0x63fea5 <exec_byte_code+15254>, 0x63ffa4 <exec_byte_code+15509>, 0x640016 <exec_byte_code+15623>, 0x640088 <exec_byte_code+15737>, 0x6400fa <exec_byte_code+15851>, 0x640141 <exec_byte_code+15922>, 0x640a60 <exec_byte_code+18257>, 0x63dc51 <exec_byte_code+6466>, 0x63d0c5 <exec_byte_code+3510>, 0x63c8bc <exec_byte_code+1453>, 0x63d1ef <exec_byte_code+3808>, 0x63d34c <exec_byte_code+4157>, 0x63d49d <exec_byte_code+4494>, 0x63dbd9 <exec_byte_code+6346>, 0x63dc1c <exec_byte_code+6413>, 0x63cdd6 <exec_byte_code+2759>, 0x63dcde <exec_byte_code+6607>, 0x63dd4f <exec_byte_code+6720>, 0x63dde2 <exec_byte_code+6867>, 0x63de21 <exec_byte_code+6930>, 0x63e144 <exec_byte_code+7733>, 0x63e1cc <exec_byte_code+7869>, 0x63e261 <exec_byte_code+8018>, 0x63e2cb <exec_byte_code+8124>, 0x63d079 <exec_byte_code+3434>, 0x64018d <exec_byte_code+15998>, 0x640222 <exec_byte_code+16147>, 0x64026e <exec_byte_code+16223>, 0x6402ba <exec_byte_code+16299>, 0x640306 <exec_byte_code+16375>, 0x640352 <exec_byte_code+16451>, 0x6403c4 <exec_byte_code+16565>, 0x640436 <exec_byte_code+16679>, 0x6404a8 <exec_byte_code+16793>, 0x64051a <exec_byte_code+16907>, 0x640674 <exec_byte_code+17253>, 0x6406e6 <exec_byte_code+17367>, 0x640758 <exec_byte_code+17481>, 0x6407a4 <exec_byte_code+17557>, 0x640816 <exec_byte_code+17671>, 0x640888 <exec_byte_code+17785>, 0x6408e2 <exec_byte_code+17875>, 0x64093c <exec_byte_code+17965>, 0x63f61d <exec_byte_code+13070>, 0x63f673 <exec_byte_code+13156>, 0x640992 <exec_byte_code+18051>, 0x6409fb <exec_byte_code+18156>, 0x640a60 <exec_byte_code+18257>, 0x63d5ee <exec_byte_code+4831>, 0x63d6eb <exec_byte_code+5084>, 0x63d827 <exec_byte_code+5400>, 0x63d963 <exec_byte_code+5716>, 0x63da9e <exec_byte_code+6031>, 0x63e84d <exec_byte_code+9534>, 0x63edb1 <exec_byte_code+10914>, 0x63f7e2 <exec_byte_code+13523>, 0x640c30 <exec_byte_code+18721>, 0x640ca3 <exec_byte_code+18836>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640d3d <exec_byte_code+18990>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640dd7 <exec_byte_code+19144> <repeats 64 times>}
        count = 14
        op = 1
        vectorp = 0xcd3db8
        stack = {
          pc = 0x1443b3b "\207", 
          byte_string = 17425684, 
          byte_string_start = 0x1443b38 "\300\001!\207", 
          next = 0x7ffdbb514610
        }
        top = 0x7ffdbb513bd0
        result = 51539607610
        type = (CONDITION_CASE | unknown: 12)
#25 0x00000000005f7032 in funcall_lambda (fun=19641797, nargs=1, arg_vector=0x7ffdbb514258) at eval.c:2794
        val = 51552587984
        syms_left = 1030
        next = 1
        lexenv = 140727746117624
        count = 14
        i = 5561709
        optional = false
        rest = false
#26 0x00000000005f6a57 in Ffuncall (nargs=2, args=0x7ffdbb514250) at eval.c:2683
        fun = 19641797
        original_fun = 19641797
        funcar = 0
        numargs = 1
        lisp_numargs = 140727746117760
        val = 12988704
        internal_args = 0x0
        count = 13
#27 0x00000000005f5668 in Fapply (nargs=2, args=0x7ffdbb514250) at eval.c:2219
        i = 140727746117920
        numargs = 1
        funcall_nargs = 42955232982
        funcall_args = 0x0
        spread_arg = 17317379
        fun = 19641797
        retval = 12609512
        sa_avail = 16384
        sa_count = 13
        sa_must_free = false
#28 0x00000000005f6606 in Ffuncall (nargs=3, args=0x7ffdbb514248) at eval.c:2614
        fun = 12609517
        original_fun = 9456
        funcar = 140727746119664
        numargs = 2
        lisp_numargs = 21164189
        val = 19641797
        internal_args = 0x7ffdbb5141c0
        count = 12
#29 0x000000000063cf86 in exec_byte_code (bytestr=20639252, vector=21164189, maxdepth=62, args_template=514, nargs=1, args=0x7ffdbb5147f0) at bytecode.c:880
        targets = 
          {0x640a60 <exec_byte_code+18257>, 0x640abd <exec_byte_code+18350>, 0x640abf <exec_byte_code+18352>, 0x640ac1 <exec_byte_code+18354>, 0x640ac3 <exec_byte_code+18356>, 0x640ac3 <exec_byte_code+18356>, 0x640b29 <exec_byte_code+18458>, 0x640b99 <exec_byte_code+18570>, 0x63c7ab <exec_byte_code+1180>, 0x63c7ad <exec_byte_code+1182>, 0x63c7af <exec_byte_code+1184>, 0x63c7b1 <exec_byte_code+1186>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7bc <exec_byte_code+1197>, 0x63c774 <exec_byte_code+1125>, 0x63cc72 <exec_byte_code+2403>, 0x63cc74 <exec_byte_code+2405>, 0x63cc76 <exec_byte_code+2407>, 0x63cc78 <exec_byte_code+2409>, 0x63cc7a <exec_byte_code+2411>, 0x63cc7a <exec_byte_code+2411>, 0x63ccb8 <exec_byte_code+2473>, 0x63cc83 <exec_byte_code+2420>, 0x63ce7c <exec_byte_code+2925>, 0x63ce7e <exec_byte_code+2927>, 0x63ce80 <exec_byte_code+2929>, 0x63ce82 <exec_byte_code+2931>, 0x63ce84 <exec_byte_code+2933>, 0x63ce84 <exec_byte_code+2933>, 0x63ce2d <exec_byte_code+2846>, 0x63ce47 <exec_byte_code+2872>, 0x63cf44 <exec_byte_code+3125>, 0x63cf46 <exec_byte_code+3127>, 0x63cf48 <exec_byte_code+3129>, 0x63cf4a <exec_byte_code+3131>, 0x63cf4c <exec_byte_code+3133>, 0x63cf4c <exec_byte_code+3133>, 0x63cef5 <exec_byte_code+3046>, 0x63cf0f <exec_byte_code+3072>, 0x63d00f <exec_byte_code+3328>, 0x63d011 <exec_byte_code+3330>, 0x63d013 <exec_byte_code+3332>, 0x63d015 <exec_byte_code+3334>, 0x63d017 <exec_byte_code+3336>, 0x63d017 <exec_byte_code+3336>, 0x63cfc0 <exec_byte_code+3249>, 0x63cfda <exec_byte_code+3275>, 0x63e105 <exec_byte_code+7670>, 0x63dea1 <exec_byte_code+7058>, 0x63de95 <exec_byte_code+7046>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x63e358 <exec_byte_code+8265>, 0x63e455 <exec_byte_code+8518>, 0x63e4b9 <exec_byte_code+8618>, 0x63e51e <exec_byte_code+8719>, 0x63e587 <exec_byte_code+8824>, 0x63cacb <exec_byte_code+1980>, 0x63cb4d <exec_byte_code+2110>, 0x63e605 <exec_byte_code+8950>, 0x63ca19 <exec_byte_code+1802>, 0x63cbbf <exec_byte_code+2224>, 0x63e671 <exec_byte_code+9058>, 0x63e6e3 <exec_byte_code+9172>, 0x63e72f <exec_byte_code+9248>, 0x63e7a1 <exec_byte_code+9362>, 0x63e7f7 <exec_byte_code+9448>, 0x63e8d9 <exec_byte_code+9674>, 0x63e925 <exec_byte_code+9750>, 0x63e997 <exec_byte_code+9864>, 0x63ea2c <exec_byte_code+10013>, 0x63ea78 <exec_byte_code+10089>, 0x63eac4 <exec_byte_code+10165>, 0x63eb36 <exec_byte_code+10279>, 0x63eba8 <exec_byte_code+10393>, 0x63ec1a <exec_byte_code+10507>, 0x63ecaf <exec_byte_code+10656>, 0x63ed05 <exec_byte_code+10742>, 0x63ed5b <exec_byte_code+10828>, 0x63ee3d <exec_byte_code+11054>, 0x63eed7 <exec_byte_code+11208>, 0x63ef71 <exec_byte_code+11362>, 0x63f1f5 <exec_byte_code+12006>, 0x63f26c <exec_byte_code+12125>, 0x63f2e3 <exec_byte_code+12244>, 0x63f35a <exec_byte_code+12363>, 0x63f3d1 <exec_byte_code+12482>, 0x63f427 <exec_byte_code+12568>, 0x63f4c5 <exec_byte_code+12726>, 0x63f51b <exec_byte_code+12812>, 0x63f571 <exec_byte_code+12898>, 0x63f5c7 <exec_byte_code+12984>, 0x63f6e5 <exec_byte_code+13270>, 0x63dd1d <exec_byte_code+6670>, 0x63f748 <exec_byte_code+13369>, 0x63f794 <exec_byte_code+13445>, 0x63f86e <exec_byte_code+13663>, 0x63f8d1 <exec_byte_code+13762>, 0x63f934 <exec_byte_code+13861>, 0x63f980 <exec_byte_code+13937>, 0x63f9d2 <exec_byte_code+14019>, 0x63fa24 <exec_byte_code+14101>, 0x63fa7e <exec_byte_code+14191>, 0x640a60 <exec_byte_code+18257>, 0x63fada <exec_byte_code+14283>, 0x63fb21 <exec_byte_code+14354>, 0x63fb68 <exec_byte_code+14425>, 0x63fbaf <exec_byte_code+14496>, 0x63fbf6 <exec_byte_code+14567>, 0x63fc3d <exec_byte_code+14638>, 0x63dd1d <exec_byte_code+6670>, 0x640a60 <exec_byte_code+18257>, 0x63fc89 <exec_byte_code+14714>, 0x63fcdd <exec_byte_code+14798>, 0x63fd29 <exec_byte_code+14874>, 0x63fd75 <exec_byte_code+14950>, 0x63fde7 <exec_byte_code+15064>, 0x63fe59 <exec_byte_code+15178>, 0x63fea5 <exec_byte_code+15254>, 0x63ffa4 <exec_byte_code+15509>, 0x640016 <exec_byte_code+15623>, 0x640088 <exec_byte_code+15737>, 0x6400fa <exec_byte_code+15851>, 0x640141 <exec_byte_code+15922>, 0x640a60 <exec_byte_code+18257>, 0x63dc51 <exec_byte_code+6466>, 0x63d0c5 <exec_byte_code+3510>, 0x63c8bc <exec_byte_code+1453>, 0x63d1ef <exec_byte_code+3808>, 0x63d34c <exec_byte_code+4157>, 0x63d49d <exec_byte_code+4494>, 0x63dbd9 <exec_byte_code+6346>, 0x63dc1c <exec_byte_code+6413>, 0x63cdd6 <exec_byte_code+2759>, 0x63dcde <exec_byte_code+6607>, 0x63dd4f <exec_byte_code+6720>, 0x63dde2 <exec_byte_code+6867>, 0x63de21 <exec_byte_code+6930>, 0x63e144 <exec_byte_code+7733>, 0x63e1cc <exec_byte_code+7869>, 0x63e261 <exec_byte_code+8018>, 0x63e2cb <exec_byte_code+8124>, 0x63d079 <exec_byte_code+3434>, 0x64018d <exec_byte_code+15998>, 0x640222 <exec_byte_code+16147>, 0x64026e <exec_byte_code+16223>, 0x6402ba <exec_byte_code+16299>, 0x640306 <exec_byte_code+16375>, 0x640352 <exec_byte_code+16451>, 0x6403c4 <exec_byte_code+16565>, 0x640436 <exec_byte_code+16679>, 0x6404a8 <exec_byte_code+16793>, 0x64051a <exec_byte_code+16907>, 0x640674 <exec_byte_code+17253>, 0x6406e6 <exec_byte_code+17367>, 0x640758 <exec_byte_code+17481>, 0x6407a4 <exec_byte_code+17557>, 0x640816 <exec_byte_code+17671>, 0x640888 <exec_byte_code+17785>, 0x6408e2 <exec_byte_code+17875>, 0x64093c <exec_byte_code+17965>, 0x63f61d <exec_byte_code+13070>, 0x63f673 <exec_byte_code+13156>, 0x640992 <exec_byte_code+18051>, 0x6409fb <exec_byte_code+18156>, 0x640a60 <exec_byte_code+18257>, 0x63d5ee <exec_byte_code+4831>, 0x63d6eb <exec_byte_code+5084>, 0x63d827 <exec_byte_code+5400>, 0x63d963 <exec_byte_code+5716>, 0x63da9e <exec_byte_code+6031>, 0x63e84d <exec_byte_code+9534>, 0x63edb1 <exec_byte_code+10914>, 0x63f7e2 <exec_byte_code+13523>, 0x640c30 <exec_byte_code+18721>, 0x640ca3 <exec_byte_code+18836>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640d3d <exec_byte_code+18990>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640dd7 <exec_byte_code+19144> <repeats 64 times>}
        count = 12
        op = 2
        vectorp = 0x142f0a0
        stack = {
          pc = 0x142cfcd "\207", 
          byte_string = 20639252, 
          byte_string_start = 0x142cfa0 "\f\306\307\002\r\"\303\307\002\002\"\206)", 
          next = 0x7ffdbb514b80
        }
        top = 0x7ffdbb514248
        result = 54682273336
        type = CATCHER
#30 0x00000000005f7032 in funcall_lambda (fun=19209205, nargs=1, arg_vector=0x7ffdbb5147f0) at eval.c:2794
        val = 51539607553
        syms_left = 514
        next = 1
        lexenv = 140727746119368
        count = 12
        i = 5561709
        optional = false
        rest = false
#31 0x00000000005f6a57 in Ffuncall (nargs=2, args=0x7ffdbb5147e8) at eval.c:2683
        fun = 19209205
        original_fun = 8138560
        funcar = 13161488
        numargs = 1
        lisp_numargs = 13420677
        val = 341456
        internal_args = 0x7ffdbb514730
        count = 11
#32 0x000000000063cf86 in exec_byte_code (bytestr=10739468, vector=10739501, maxdepth=54, args_template=1026, nargs=1, args=0x7ffdbb514d48) at bytecode.c:880
        targets = 
          {0x640a60 <exec_byte_code+18257>, 0x640abd <exec_byte_code+18350>, 0x640abf <exec_byte_code+18352>, 0x640ac1 <exec_byte_code+18354>, 0x640ac3 <exec_byte_code+18356>, 0x640ac3 <exec_byte_code+18356>, 0x640b29 <exec_byte_code+18458>, 0x640b99 <exec_byte_code+18570>, 0x63c7ab <exec_byte_code+1180>, 0x63c7ad <exec_byte_code+1182>, 0x63c7af <exec_byte_code+1184>, 0x63c7b1 <exec_byte_code+1186>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7bc <exec_byte_code+1197>, 0x63c774 <exec_byte_code+1125>, 0x63cc72 <exec_byte_code+2403>, 0x63cc74 <exec_byte_code+2405>, 0x63cc76 <exec_byte_code+2407>, 0x63cc78 <exec_byte_code+2409>, 0x63cc7a <exec_byte_code+2411>, 0x63cc7a <exec_byte_code+2411>, 0x63ccb8 <exec_byte_code+2473>, 0x63cc83 <exec_byte_code+2420>, 0x63ce7c <exec_byte_code+2925>, 0x63ce7e <exec_byte_code+2927>, 0x63ce80 <exec_byte_code+2929>, 0x63ce82 <exec_byte_code+2931>, 0x63ce84 <exec_byte_code+2933>, 0x63ce84 <exec_byte_code+2933>, 0x63ce2d <exec_byte_code+2846>, 0x63ce47 <exec_byte_code+2872>, 0x63cf44 <exec_byte_code+3125>, 0x63cf46 <exec_byte_code+3127>, 0x63cf48 <exec_byte_code+3129>, 0x63cf4a <exec_byte_code+3131>, 0x63cf4c <exec_byte_code+3133>, 0x63cf4c <exec_byte_code+3133>, 0x63cef5 <exec_byte_code+3046>, 0x63cf0f <exec_byte_code+3072>, 0x63d00f <exec_byte_code+3328>, 0x63d011 <exec_byte_code+3330>, 0x63d013 <exec_byte_code+3332>, 0x63d015 <exec_byte_code+3334>, 0x63d017 <exec_byte_code+3336>, 0x63d017 <exec_byte_code+3336>, 0x63cfc0 <exec_byte_code+3249>, 0x63cfda <exec_byte_code+3275>, 0x63e105 <exec_byte_code+7670>, 0x63dea1 <exec_byte_code+7058>, 0x63de95 <exec_byte_code+7046>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x63e358 <exec_byte_code+8265>, 0x63e455 <exec_byte_code+8518>, 0x63e4b9 <exec_byte_code+8618>, 0x63e51e <exec_byte_code+8719>, 0x63e587 <exec_byte_code+8824>, 0x63cacb <exec_byte_code+1980>, 0x63cb4d <exec_byte_code+2110>, 0x63e605 <exec_byte_code+8950>, 0x63ca19 <exec_byte_code+1802>, 0x63cbbf <exec_byte_code+2224>, 0x63e671 <exec_byte_code+9058>, 0x63e6e3 <exec_byte_code+9172>, 0x63e72f <exec_byte_code+9248>, 0x63e7a1 <exec_byte_code+9362>, 0x63e7f7 <exec_byte_code+9448>, 0x63e8d9 <exec_byte_code+9674>, 0x63e925 <exec_byte_code+9750>, 0x63e997 <exec_byte_code+9864>, 0x63ea2c <exec_byte_code+10013>, 0x63ea78 <exec_byte_code+10089>, 0x63eac4 <exec_byte_code+10165>, 0x63eb36 <exec_byte_code+10279>, 0x63eba8 <exec_byte_code+10393>, 0x63ec1a <exec_byte_code+10507>, 0x63ecaf <exec_byte_code+10656>, 0x63ed05 <exec_byte_code+10742>, 0x63ed5b <exec_byte_code+10828>, 0x63ee3d <exec_byte_code+11054>, 0x63eed7 <exec_byte_code+11208>, 0x63ef71 <exec_byte_code+11362>, 0x63f1f5 <exec_byte_code+12006>, 0x63f26c <exec_byte_code+12125>, 0x63f2e3 <exec_byte_code+12244>, 0x63f35a <exec_byte_code+12363>, 0x63f3d1 <exec_byte_code+12482>, 0x63f427 <exec_byte_code+12568>, 0x63f4c5 <exec_byte_code+12726>, 0x63f51b <exec_byte_code+12812>, 0x63f571 <exec_byte_code+12898>, 0x63f5c7 <exec_byte_code+12984>, 0x63f6e5 <exec_byte_code+13270>, 0x63dd1d <exec_byte_code+6670>, 0x63f748 <exec_byte_code+13369>, 0x63f794 <exec_byte_code+13445>, 0x63f86e <exec_byte_code+13663>, 0x63f8d1 <exec_byte_code+13762>, 0x63f934 <exec_byte_code+13861>, 0x63f980 <exec_byte_code+13937>, 0x63f9d2 <exec_byte_code+14019>, 0x63fa24 <exec_byte_code+14101>, 0x63fa7e <exec_byte_code+14191>, 0x640a60 <exec_byte_code+18257>, 0x63fada <exec_byte_code+14283>, 0x63fb21 <exec_byte_code+14354>, 0x63fb68 <exec_byte_code+14425>, 0x63fbaf <exec_byte_code+14496>, 0x63fbf6 <exec_byte_code+14567>, 0x63fc3d <exec_byte_code+14638>, 0x63dd1d <exec_byte_code+6670>, 0x640a60 <exec_byte_code+18257>, 0x63fc89 <exec_byte_code+14714>, 0x63fcdd <exec_byte_code+14798>, 0x63fd29 <exec_byte_code+14874>, 0x63fd75 <exec_byte_code+14950>, 0x63fde7 <exec_byte_code+15064>, 0x63fe59 <exec_byte_code+15178>, 0x63fea5 <exec_byte_code+15254>, 0x63ffa4 <exec_byte_code+15509>, 0x640016 <exec_byte_code+15623>, 0x640088 <exec_byte_code+15737>, 0x6400fa <exec_byte_code+15851>, 0x640141 <exec_byte_code+15922>, 0x640a60 <exec_byte_code+18257>, 0x63dc51 <exec_byte_code+6466>, 0x63d0c5 <exec_byte_code+3510>, 0x63c8bc <exec_byte_code+1453>, 0x63d1ef <exec_byte_code+3808>, 0x63d34c <exec_byte_code+4157>, 0x63d49d <exec_byte_code+4494>, 0x63dbd9 <exec_byte_code+6346>, 0x63dc1c <exec_byte_code+6413>, 0x63cdd6 <exec_byte_code+2759>, 0x63dcde <exec_byte_code+6607>, 0x63dd4f <exec_byte_code+6720>, 0x63dde2 <exec_byte_code+6867>, 0x63de21 <exec_byte_code+6930>, 0x63e144 <exec_byte_code+7733>, 0x63e1cc <exec_byte_code+7869>, 0x63e261 <exec_byte_code+8018>, 0x63e2cb <exec_byte_code+8124>, 0x63d079 <exec_byte_code+3434>, 0x64018d <exec_byte_code+15998>, 0x640222 <exec_byte_code+16147>, 0x64026e <exec_byte_code+16223>, 0x6402ba <exec_byte_code+16299>, 0x640306 <exec_byte_code+16375>, 0x640352 <exec_byte_code+16451>, 0x6403c4 <exec_byte_code+16565>, 0x640436 <exec_byte_code+16679>, 0x6404a8 <exec_byte_code+16793>, 0x64051a <exec_byte_code+16907>, 0x640674 <exec_byte_code+17253>, 0x6406e6 <exec_byte_code+17367>, 0x640758 <exec_byte_code+17481>, 0x6407a4 <exec_byte_code+17557>, 0x640816 <exec_byte_code+17671>, 0x640888 <exec_byte_code+17785>, 0x6408e2 <exec_byte_code+17875>, 0x64093c <exec_byte_code+17965>, 0x63f61d <exec_byte_code+13070>, 0x63f673 <exec_byte_code+13156>, 0x640992 <exec_byte_code+18051>, 0x6409fb <exec_byte_code+18156>, 0x640a60 <exec_byte_code+18257>, 0x63d5ee <exec_byte_code+4831>, 0x63d6eb <exec_byte_code+5084>, 0x63d827 <exec_byte_code+5400>, 0x63d963 <exec_byte_code+5716>, 0x63da9e <exec_byte_code+6031>, 0x63e84d <exec_byte_code+9534>, 0x63edb1 <exec_byte_code+10914>, 0x63f7e2 <exec_byte_code+13523>, 0x640c30 <exec_byte_code+18721>, 0x640ca3 <exec_byte_code+18836>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640d3d <exec_byte_code+18990>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640dd7 <exec_byte_code+19144> <repeats 64 times>}
        count = 10
        op = 1
        vectorp = 0xa3df30 <pure+1157872>
        stack = {
          pc = 0xb906e0 <pure+2544288> ")\262\001\326\001!\210\f\211\203\323", 
          byte_string = 10739468, 
          byte_string_start = 0xb90638 <pure+2544120> "\306\001\236A\307\002\236\203.", 
          next = 0x7ffdbb5150b0
        }
        top = 0x7ffdbb5147e8
        result = 51539963280
        type = CATCHER
#33 0x00000000005f7032 in funcall_lambda (fun=10739413, nargs=1, arg_vector=0x7ffdbb514d40) at eval.c:2794
        val = 54682274832
        syms_left = 1026
        next = 1
        lexenv = 140727746120760
        count = 10
        i = 5561709
        optional = false
        rest = false
#34 0x00000000005f6a57 in Ffuncall (nargs=2, args=0x7ffdbb514d38) at eval.c:2683
        fun = 10739413
        original_fun = 4310816
        funcar = 46656
        numargs = 1
        lisp_numargs = 17317507
        val = 3938488772656
        internal_args = 0xc8d410
        count = 9
#35 0x000000000063cf86 in exec_byte_code (bytestr=10738252, vector=10738285, maxdepth=22, args_template=2054, nargs=2, args=0x7ffdbb5152b8) at bytecode.c:880
        targets = 
          {0x640a60 <exec_byte_code+18257>, 0x640abd <exec_byte_code+18350>, 0x640abf <exec_byte_code+18352>, 0x640ac1 <exec_byte_code+18354>, 0x640ac3 <exec_byte_code+18356>, 0x640ac3 <exec_byte_code+18356>, 0x640b29 <exec_byte_code+18458>, 0x640b99 <exec_byte_code+18570>, 0x63c7ab <exec_byte_code+1180>, 0x63c7ad <exec_byte_code+1182>, 0x63c7af <exec_byte_code+1184>, 0x63c7b1 <exec_byte_code+1186>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7bc <exec_byte_code+1197>, 0x63c774 <exec_byte_code+1125>, 0x63cc72 <exec_byte_code+2403>, 0x63cc74 <exec_byte_code+2405>, 0x63cc76 <exec_byte_code+2407>, 0x63cc78 <exec_byte_code+2409>, 0x63cc7a <exec_byte_code+2411>, 0x63cc7a <exec_byte_code+2411>, 0x63ccb8 <exec_byte_code+2473>, 0x63cc83 <exec_byte_code+2420>, 0x63ce7c <exec_byte_code+2925>, 0x63ce7e <exec_byte_code+2927>, 0x63ce80 <exec_byte_code+2929>, 0x63ce82 <exec_byte_code+2931>, 0x63ce84 <exec_byte_code+2933>, 0x63ce84 <exec_byte_code+2933>, 0x63ce2d <exec_byte_code+2846>, 0x63ce47 <exec_byte_code+2872>, 0x63cf44 <exec_byte_code+3125>, 0x63cf46 <exec_byte_code+3127>, 0x63cf48 <exec_byte_code+3129>, 0x63cf4a <exec_byte_code+3131>, 0x63cf4c <exec_byte_code+3133>, 0x63cf4c <exec_byte_code+3133>, 0x63cef5 <exec_byte_code+3046>, 0x63cf0f <exec_byte_code+3072>, 0x63d00f <exec_byte_code+3328>, 0x63d011 <exec_byte_code+3330>, 0x63d013 <exec_byte_code+3332>, 0x63d015 <exec_byte_code+3334>, 0x63d017 <exec_byte_code+3336>, 0x63d017 <exec_byte_code+3336>, 0x63cfc0 <exec_byte_code+3249>, 0x63cfda <exec_byte_code+3275>, 0x63e105 <exec_byte_code+7670>, 0x63dea1 <exec_byte_code+7058>, 0x63de95 <exec_byte_code+7046>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x63e358 <exec_byte_code+8265>, 0x63e455 <exec_byte_code+8518>, 0x63e4b9 <exec_byte_code+8618>, 0x63e51e <exec_byte_code+8719>, 0x63e587 <exec_byte_code+8824>, 0x63cacb <exec_byte_code+1980>, 0x63cb4d <exec_byte_code+2110>, 0x63e605 <exec_byte_code+8950>, 0x63ca19 <exec_byte_code+1802>, 0x63cbbf <exec_byte_code+2224>, 0x63e671 <exec_byte_code+9058>, 0x63e6e3 <exec_byte_code+9172>, 0x63e72f <exec_byte_code+9248>, 0x63e7a1 <exec_byte_code+9362>, 0x63e7f7 <exec_byte_code+9448>, 0x63e8d9 <exec_byte_code+9674>, 0x63e925 <exec_byte_code+9750>, 0x63e997 <exec_byte_code+9864>, 0x63ea2c <exec_byte_code+10013>, 0x63ea78 <exec_byte_code+10089>, 0x63eac4 <exec_byte_code+10165>, 0x63eb36 <exec_byte_code+10279>, 0x63eba8 <exec_byte_code+10393>, 0x63ec1a <exec_byte_code+10507>, 0x63ecaf <exec_byte_code+10656>, 0x63ed05 <exec_byte_code+10742>, 0x63ed5b <exec_byte_code+10828>, 0x63ee3d <exec_byte_code+11054>, 0x63eed7 <exec_byte_code+11208>, 0x63ef71 <exec_byte_code+11362>, 0x63f1f5 <exec_byte_code+12006>, 0x63f26c <exec_byte_code+12125>, 0x63f2e3 <exec_byte_code+12244>, 0x63f35a <exec_byte_code+12363>, 0x63f3d1 <exec_byte_code+12482>, 0x63f427 <exec_byte_code+12568>, 0x63f4c5 <exec_byte_code+12726>, 0x63f51b <exec_byte_code+12812>, 0x63f571 <exec_byte_code+12898>, 0x63f5c7 <exec_byte_code+12984>, 0x63f6e5 <exec_byte_code+13270>, 0x63dd1d <exec_byte_code+6670>, 0x63f748 <exec_byte_code+13369>, 0x63f794 <exec_byte_code+13445>, 0x63f86e <exec_byte_code+13663>, 0x63f8d1 <exec_byte_code+13762>, 0x63f934 <exec_byte_code+13861>, 0x63f980 <exec_byte_code+13937>, 0x63f9d2 <exec_byte_code+14019>, 0x63fa24 <exec_byte_code+14101>, 0x63fa7e <exec_byte_code+14191>, 0x640a60 <exec_byte_code+18257>, 0x63fada <exec_byte_code+14283>, 0x63fb21 <exec_byte_code+14354>, 0x63fb68 <exec_byte_code+14425>, 0x63fbaf <exec_byte_code+14496>, 0x63fbf6 <exec_byte_code+14567>, 0x63fc3d <exec_byte_code+14638>, 0x63dd1d <exec_byte_code+6670>, 0x640a60 <exec_byte_code+18257>, 0x63fc89 <exec_byte_code+14714>, 0x63fcdd <exec_byte_code+14798>, 0x63fd29 <exec_byte_code+14874>, 0x63fd75 <exec_byte_code+14950>, 0x63fde7 <exec_byte_code+15064>, 0x63fe59 <exec_byte_code+15178>, 0x63fea5 <exec_byte_code+15254>, 0x63ffa4 <exec_byte_code+15509>, 0x640016 <exec_byte_code+15623>, 0x640088 <exec_byte_code+15737>, 0x6400fa <exec_byte_code+15851>, 0x640141 <exec_byte_code+15922>, 0x640a60 <exec_byte_code+18257>, 0x63dc51 <exec_byte_code+6466>, 0x63d0c5 <exec_byte_code+3510>, 0x63c8bc <exec_byte_code+1453>, 0x63d1ef <exec_byte_code+3808>, 0x63d34c <exec_byte_code+4157>, 0x63d49d <exec_byte_code+4494>, 0x63dbd9 <exec_byte_code+6346>, 0x63dc1c <exec_byte_code+6413>, 0x63cdd6 <exec_byte_code+2759>, 0x63dcde <exec_byte_code+6607>, 0x63dd4f <exec_byte_code+6720>, 0x63dde2 <exec_byte_code+6867>, 0x63de21 <exec_byte_code+6930>, 0x63e144 <exec_byte_code+7733>, 0x63e1cc <exec_byte_code+7869>, 0x63e261 <exec_byte_code+8018>, 0x63e2cb <exec_byte_code+8124>, 0x63d079 <exec_byte_code+3434>, 0x64018d <exec_byte_code+15998>, 0x640222 <exec_byte_code+16147>, 0x64026e <exec_byte_code+16223>, 0x6402ba <exec_byte_code+16299>, 0x640306 <exec_byte_code+16375>, 0x640352 <exec_byte_code+16451>, 0x6403c4 <exec_byte_code+16565>, 0x640436 <exec_byte_code+16679>, 0x6404a8 <exec_byte_code+16793>, 0x64051a <exec_byte_code+16907>, 0x640674 <exec_byte_code+17253>, 0x6406e6 <exec_byte_code+17367>, 0x640758 <exec_byte_code+17481>, 0x6407a4 <exec_byte_code+17557>, 0x640816 <exec_byte_code+17671>, 0x640888 <exec_byte_code+17785>, 0x6408e2 <exec_byte_code+17875>, 0x64093c <exec_byte_code+17965>, 0x63f61d <exec_byte_code+13070>, 0x63f673 <exec_byte_code+13156>, 0x640992 <exec_byte_code+18051>, 0x6409fb <exec_byte_code+18156>, 0x640a60 <exec_byte_code+18257>, 0x63d5ee <exec_byte_code+4831>, 0x63d6eb <exec_byte_code+5084>, 0x63d827 <exec_byte_code+5400>, 0x63d963 <exec_byte_code+5716>, 0x63da9e <exec_byte_code+6031>, 0x63e84d <exec_byte_code+9534>, 0x63edb1 <exec_byte_code+10914>, 0x63f7e2 <exec_byte_code+13523>, 0x640c30 <exec_byte_code+18721>, 0x640ca3 <exec_byte_code+18836>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640d3d <exec_byte_code+18990>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640dd7 <exec_byte_code+19144> <repeats 64 times>}
        count = 9
        op = 1
        vectorp = 0xa3da70 <pure+1156656>
        stack = {
          pc = 0xb908d8 <pure+2544792> "\207", 
          byte_string = 10738252, 
          byte_string_start = 0xb908d1 <pure+2544785> "\300\301\003B\002B!\207", 
          next = 0x7ffdbb515630
        }
        top = 0x7ffdbb514d38
        result = 51560396947
        type = CATCHER
#36 0x00000000005f7032 in funcall_lambda (fun=10738197, nargs=2, arg_vector=0x7ffdbb5152a8) at eval.c:2794
        val = 51545888778
        syms_left = 2054
        next = 2
        lexenv = 140727746122088
        count = 9
        i = 5561709
        optional = false
        rest = false
#37 0x00000000005f6a57 in Ffuncall (nargs=3, args=0x7ffdbb5152a0) at eval.c:2683
        fun = 10738197
        original_fun = 8101648
        funcar = 0
        numargs = 2
        lisp_numargs = 17317795
        val = 20789395
        internal_args = 0x7ffdbb5151e0
        count = 8
#38 0x000000000063cf86 in exec_byte_code (bytestr=13724628, vector=19283093, maxdepth=58, args_template=5138, nargs=5, args=0x7ffdbb5158a0) at bytecode.c:880
        targets = 
          {0x640a60 <exec_byte_code+18257>, 0x640abd <exec_byte_code+18350>, 0x640abf <exec_byte_code+18352>, 0x640ac1 <exec_byte_code+18354>, 0x640ac3 <exec_byte_code+18356>, 0x640ac3 <exec_byte_code+18356>, 0x640b29 <exec_byte_code+18458>, 0x640b99 <exec_byte_code+18570>, 0x63c7ab <exec_byte_code+1180>, 0x63c7ad <exec_byte_code+1182>, 0x63c7af <exec_byte_code+1184>, 0x63c7b1 <exec_byte_code+1186>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7bc <exec_byte_code+1197>, 0x63c774 <exec_byte_code+1125>, 0x63cc72 <exec_byte_code+2403>, 0x63cc74 <exec_byte_code+2405>, 0x63cc76 <exec_byte_code+2407>, 0x63cc78 <exec_byte_code+2409>, 0x63cc7a <exec_byte_code+2411>, 0x63cc7a <exec_byte_code+2411>, 0x63ccb8 <exec_byte_code+2473>, 0x63cc83 <exec_byte_code+2420>, 0x63ce7c <exec_byte_code+2925>, 0x63ce7e <exec_byte_code+2927>, 0x63ce80 <exec_byte_code+2929>, 0x63ce82 <exec_byte_code+2931>, 0x63ce84 <exec_byte_code+2933>, 0x63ce84 <exec_byte_code+2933>, 0x63ce2d <exec_byte_code+2846>, 0x63ce47 <exec_byte_code+2872>, 0x63cf44 <exec_byte_code+3125>, 0x63cf46 <exec_byte_code+3127>, 0x63cf48 <exec_byte_code+3129>, 0x63cf4a <exec_byte_code+3131>, 0x63cf4c <exec_byte_code+3133>, 0x63cf4c <exec_byte_code+3133>, 0x63cef5 <exec_byte_code+3046>, 0x63cf0f <exec_byte_code+3072>, 0x63d00f <exec_byte_code+3328>, 0x63d011 <exec_byte_code+3330>, 0x63d013 <exec_byte_code+3332>, 0x63d015 <exec_byte_code+3334>, 0x63d017 <exec_byte_code+3336>, 0x63d017 <exec_byte_code+3336>, 0x63cfc0 <exec_byte_code+3249>, 0x63cfda <exec_byte_code+3275>, 0x63e105 <exec_byte_code+7670>, 0x63dea1 <exec_byte_code+7058>, 0x63de95 <exec_byte_code+7046>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x63e358 <exec_byte_code+8265>, 0x63e455 <exec_byte_code+8518>, 0x63e4b9 <exec_byte_code+8618>, 0x63e51e <exec_byte_code+8719>, 0x63e587 <exec_byte_code+8824>, 0x63cacb <exec_byte_code+1980>, 0x63cb4d <exec_byte_code+2110>, 0x63e605 <exec_byte_code+8950>, 0x63ca19 <exec_byte_code+1802>, 0x63cbbf <exec_byte_code+2224>, 0x63e671 <exec_byte_code+9058>, 0x63e6e3 <exec_byte_code+9172>, 0x63e72f <exec_byte_code+9248>, 0x63e7a1 <exec_byte_code+9362>, 0x63e7f7 <exec_byte_code+9448>, 0x63e8d9 <exec_byte_code+9674>, 0x63e925 <exec_byte_code+9750>, 0x63e997 <exec_byte_code+9864>, 0x63ea2c <exec_byte_code+10013>, 0x63ea78 <exec_byte_code+10089>, 0x63eac4 <exec_byte_code+10165>, 0x63eb36 <exec_byte_code+10279>, 0x63eba8 <exec_byte_code+10393>, 0x63ec1a <exec_byte_code+10507>, 0x63ecaf <exec_byte_code+10656>, 0x63ed05 <exec_byte_code+10742>, 0x63ed5b <exec_byte_code+10828>, 0x63ee3d <exec_byte_code+11054>, 0x63eed7 <exec_byte_code+11208>, 0x63ef71 <exec_byte_code+11362>, 0x63f1f5 <exec_byte_code+12006>, 0x63f26c <exec_byte_code+12125>, 0x63f2e3 <exec_byte_code+12244>, 0x63f35a <exec_byte_code+12363>, 0x63f3d1 <exec_byte_code+12482>, 0x63f427 <exec_byte_code+12568>, 0x63f4c5 <exec_byte_code+12726>, 0x63f51b <exec_byte_code+12812>, 0x63f571 <exec_byte_code+12898>, 0x63f5c7 <exec_byte_code+12984>, 0x63f6e5 <exec_byte_code+13270>, 0x63dd1d <exec_byte_code+6670>, 0x63f748 <exec_byte_code+13369>, 0x63f794 <exec_byte_code+13445>, 0x63f86e <exec_byte_code+13663>, 0x63f8d1 <exec_byte_code+13762>, 0x63f934 <exec_byte_code+13861>, 0x63f980 <exec_byte_code+13937>, 0x63f9d2 <exec_byte_code+14019>, 0x63fa24 <exec_byte_code+14101>, 0x63fa7e <exec_byte_code+14191>, 0x640a60 <exec_byte_code+18257>, 0x63fada <exec_byte_code+14283>, 0x63fb21 <exec_byte_code+14354>, 0x63fb68 <exec_byte_code+14425>, 0x63fbaf <exec_byte_code+14496>, 0x63fbf6 <exec_byte_code+14567>, 0x63fc3d <exec_byte_code+14638>, 0x63dd1d <exec_byte_code+6670>, 0x640a60 <exec_byte_code+18257>, 0x63fc89 <exec_byte_code+14714>, 0x63fcdd <exec_byte_code+14798>, 0x63fd29 <exec_byte_code+14874>, 0x63fd75 <exec_byte_code+14950>, 0x63fde7 <exec_byte_code+15064>, 0x63fe59 <exec_byte_code+15178>, 0x63fea5 <exec_byte_code+15254>, 0x63ffa4 <exec_byte_code+15509>, 0x640016 <exec_byte_code+15623>, 0x640088 <exec_byte_code+15737>, 0x6400fa <exec_byte_code+15851>, 0x640141 <exec_byte_code+15922>, 0x640a60 <exec_byte_code+18257>, 0x63dc51 <exec_byte_code+6466>, 0x63d0c5 <exec_byte_code+3510>, 0x63c8bc <exec_byte_code+1453>, 0x63d1ef <exec_byte_code+3808>, 0x63d34c <exec_byte_code+4157>, 0x63d49d <exec_byte_code+4494>, 0x63dbd9 <exec_byte_code+6346>, 0x63dc1c <exec_byte_code+6413>, 0x63cdd6 <exec_byte_code+2759>, 0x63dcde <exec_byte_code+6607>, 0x63dd4f <exec_byte_code+6720>, 0x63dde2 <exec_byte_code+6867>, 0x63de21 <exec_byte_code+6930>, 0x63e144 <exec_byte_code+7733>, 0x63e1cc <exec_byte_code+7869>, 0x63e261 <exec_byte_code+8018>, 0x63e2cb <exec_byte_code+8124>, 0x63d079 <exec_byte_code+3434>, 0x64018d <exec_byte_code+15998>, 0x640222 <exec_byte_code+16147>, 0x64026e <exec_byte_code+16223>, 0x6402ba <exec_byte_code+16299>, 0x640306 <exec_byte_code+16375>, 0x640352 <exec_byte_code+16451>, 0x6403c4 <exec_byte_code+16565>, 0x640436 <exec_byte_code+16679>, 0x6404a8 <exec_byte_code+16793>, 0x64051a <exec_byte_code+16907>, 0x640674 <exec_byte_code+17253>, 0x6406e6 <exec_byte_code+17367>, 0x640758 <exec_byte_code+17481>, 0x6407a4 <exec_byte_code+17557>, 0x640816 <exec_byte_code+17671>, 0x640888 <exec_byte_code+17785>, 0x6408e2 <exec_byte_code+17875>, 0x64093c <exec_byte_code+17965>, 0x63f61d <exec_byte_code+13070>, 0x63f673 <exec_byte_code+13156>, 0x640992 <exec_byte_code+18051>, 0x6409fb <exec_byte_code+18156>, 0x640a60 <exec_byte_code+18257>, 0x63d5ee <exec_byte_code+4831>, 0x63d6eb <exec_byte_code+5084>, 0x63d827 <exec_byte_code+5400>, 0x63d963 <exec_byte_code+5716>, 0x63da9e <exec_byte_code+6031>, 0x63e84d <exec_byte_code+9534>, 0x63edb1 <exec_byte_code+10914>, 0x63f7e2 <exec_byte_code+13523>, 0x640c30 <exec_byte_code+18721>, 0x640ca3 <exec_byte_code+18836>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640d3d <exec_byte_code+18990>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640dd7 <exec_byte_code+19144> <repeats 64 times>}
        count = 8
        op = 2
        vectorp = 0x1263c98
        stack = {
          pc = 0x14cb886 "\262\001\325\326\327\003\"\006\b\"\210\330\001!\210\331\006\a\332\003#\210\331\006\a\333\334\004!#\210\262\001\202\206", 
          byte_string = 13724628, 
          byte_string_start = 0x14cb830 "\004\206\016", 
          next = 0x7ffdbb515c50
        }
        top = 0x7ffdbb5152a0
        result = 51556800035
        type = CATCHER
#39 0x00000000005f7032 in funcall_lambda (fun=19287437, nargs=5, arg_vector=0x7ffdbb515878) at eval.c:2794
        val = 51544649382
        syms_left = 5138
        next = 5
        lexenv = 140727746123496
        count = 8
        i = 5561709
        optional = false
        rest = false
#40 0x00000000005f6a57 in Ffuncall (nargs=6, args=0x7ffdbb515870) at eval.c:2683
        fun = 19287437
        original_fun = 543952
        funcar = 0
        numargs = 5
        lisp_numargs = 19569829
        val = 44016
        internal_args = 0x7ffdbb515878
        count = 7
#41 0x000000000063cf86 in exec_byte_code (bytestr=13726836, vector=19569829, maxdepth=138, args_template=2058, nargs=2, args=0x7ffdbb515e08) at bytecode.c:880
        targets = 
          {0x640a60 <exec_byte_code+18257>, 0x640abd <exec_byte_code+18350>, 0x640abf <exec_byte_code+18352>, 0x640ac1 <exec_byte_code+18354>, 0x640ac3 <exec_byte_code+18356>, 0x640ac3 <exec_byte_code+18356>, 0x640b29 <exec_byte_code+18458>, 0x640b99 <exec_byte_code+18570>, 0x63c7ab <exec_byte_code+1180>, 0x63c7ad <exec_byte_code+1182>, 0x63c7af <exec_byte_code+1184>, 0x63c7b1 <exec_byte_code+1186>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7b3 <exec_byte_code+1188>, 0x63c7bc <exec_byte_code+1197>, 0x63c774 <exec_byte_code+1125>, 0x63cc72 <exec_byte_code+2403>, 0x63cc74 <exec_byte_code+2405>, 0x63cc76 <exec_byte_code+2407>, 0x63cc78 <exec_byte_code+2409>, 0x63cc7a <exec_byte_code+2411>, 0x63cc7a <exec_byte_code+2411>, 0x63ccb8 <exec_byte_code+2473>, 0x63cc83 <exec_byte_code+2420>, 0x63ce7c <exec_byte_code+2925>, 0x63ce7e <exec_byte_code+2927>, 0x63ce80 <exec_byte_code+2929>, 0x63ce82 <exec_byte_code+2931>, 0x63ce84 <exec_byte_code+2933>, 0x63ce84 <exec_byte_code+2933>, 0x63ce2d <exec_byte_code+2846>, 0x63ce47 <exec_byte_code+2872>, 0x63cf44 <exec_byte_code+3125>, 0x63cf46 <exec_byte_code+3127>, 0x63cf48 <exec_byte_code+3129>, 0x63cf4a <exec_byte_code+3131>, 0x63cf4c <exec_byte_code+3133>, 0x63cf4c <exec_byte_code+3133>, 0x63cef5 <exec_byte_code+3046>, 0x63cf0f <exec_byte_code+3072>, 0x63d00f <exec_byte_code+3328>, 0x63d011 <exec_byte_code+3330>, 0x63d013 <exec_byte_code+3332>, 0x63d015 <exec_byte_code+3334>, 0x63d017 <exec_byte_code+3336>, 0x63d017 <exec_byte_code+3336>, 0x63cfc0 <exec_byte_code+3249>, 0x63cfda <exec_byte_code+3275>, 0x63e105 <exec_byte_code+7670>, 0x63dea1 <exec_byte_code+7058>, 0x63de95 <exec_byte_code+7046>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x63e358 <exec_byte_code+8265>, 0x63e455 <exec_byte_code+8518>, 0x63e4b9 <exec_byte_code+8618>, 0x63e51e <exec_byte_code+8719>, 0x63e587 <exec_byte_code+8824>, 0x63cacb <exec_byte_code+1980>, 0x63cb4d <exec_byte_code+2110>, 0x63e605 <exec_byte_code+8950>, 0x63ca19 <exec_byte_code+1802>, 0x63cbbf <exec_byte_code+2224>, 0x63e671 <exec_byte_code+9058>, 0x63e6e3 <exec_byte_code+9172>, 0x63e72f <exec_byte_code+9248>, 0x63e7a1 <exec_byte_code+9362>, 0x63e7f7 <exec_byte_code+9448>, 0x63e8d9 <exec_byte_code+9674>, 0x63e925 <exec_byte_code+9750>, 0x63e997 <exec_byte_code+9864>, 0x63ea2c <exec_byte_code+10013>, 0x63ea78 <exec_byte_code+10089>, 0x63eac4 <exec_byte_code+10165>, 0x63eb36 <exec_byte_code+10279>, 0x63eba8 <exec_byte_code+10393>, 0x63ec1a <exec_byte_code+10507>, 0x63ecaf <exec_byte_code+10656>, 0x63ed05 <exec_byte_code+10742>, 0x63ed5b <exec_byte_code+10828>, 0x63ee3d <exec_byte_code+11054>, 0x63eed7 <exec_byte_code+11208>, 0x63ef71 <exec_byte_code+11362>, 0x63f1f5 <exec_byte_code+12006>, 0x63f26c <exec_byte_code+12125>, 0x63f2e3 <exec_byte_code+12244>, 0x63f35a <exec_byte_code+12363>, 0x63f3d1 <exec_byte_code+12482>, 0x63f427 <exec_byte_code+12568>, 0x63f4c5 <exec_byte_code+12726>, 0x63f51b <exec_byte_code+12812>, 0x63f571 <exec_byte_code+12898>, 0x63f5c7 <exec_byte_code+12984>, 0x63f6e5 <exec_byte_code+13270>, 0x63dd1d <exec_byte_code+6670>, 0x63f748 <exec_byte_code+13369>, 0x63f794 <exec_byte_code+13445>, 0x63f86e <exec_byte_code+13663>, 0x63f8d1 <exec_byte_code+13762>, 0x63f934 <exec_byte_code+13861>, 0x63f980 <exec_byte_code+13937>, 0x63f9d2 <exec_byte_code+14019>, 0x63fa24 <exec_byte_code+14101>, 0x63fa7e <exec_byte_code+14191>, 0x640a60 <exec_byte_code+18257>, 0x63fada <exec_byte_code+14283>, 0x63fb21 <exec_byte_code+14354>, 0x63fb68 <exec_byte_code+14425>, 0x63fbaf <exec_byte_code+14496>, 0x63fbf6 <exec_byte_code+14567>, 0x63fc3d <exec_byte_code+14638>, 0x63dd1d <exec_byte_code+6670>, 0x640a60 <exec_byte_code+18257>, 0x63fc89 <exec_byte_code+14714>, 0x63fcdd <exec_byte_code+14798>, 0x63fd29 <exec_byte_code+14874>, 0x63fd75 <exec_byte_code+14950>, 0x63fde7 <exec_byte_code+15064>, 0x63fe59 <exec_byte_code+15178>, 0x63fea5 <exec_byte_code+15254>, 0x63ffa4 <exec_byte_code+15509>, 0x640016 <exec_byte_code+15623>, 0x640088 <exec_byte_code+15737>, 0x6400fa <exec_byte_code+15851>, 0x640141 <exec_byte_code+15922>, 0x640a60 <exec_byte_code+18257>, 0x63dc51 <exec_byte_code+6466>, 0x63d0c5 <exec_byte_code+3510>, 0x63c8bc <exec_byte_code+1453>, 0x63d1ef <exec_byte_code+3808>, 0x63d34c <exec_byte_code+4157>, 0x63d49d <exec_byte_code+4494>, 0x63dbd9 <exec_byte_code+6346>, 0x63dc1c <exec_byte_code+6413>, 0x63cdd6 <exec_byte_code+2759>, 0x63dcde <exec_byte_code+6607>, 0x63dd4f <exec_byte_code+6720>, 0x63dde2 <exec_byte_code+6867>, 0x63de21 <exec_byte_code+6930>, 0x63e144 <exec_byte_code+7733>, 0x63e1cc <exec_byte_code+7869>, 0x63e261 <exec_byte_code+8018>, 0x63e2cb <exec_byte_code+8124>, 0x63d079 <exec_byte_code+3434>, 0x64018d <exec_byte_code+15998>, 0x640222 <exec_byte_code+16147>, 0x64026e <exec_byte_code+16223>, 0x6402ba <exec_byte_code+16299>, 0x640306 <exec_byte_code+16375>, 0x640352 <exec_byte_code+16451>, 0x6403c4 <exec_byte_code+16565>, 0x640436 <exec_byte_code+16679>, 0x6404a8 <exec_byte_code+16793>, 0x64051a <exec_byte_code+16907>, 0x640674 <exec_byte_code+17253>, 0x6406e6 <exec_byte_code+17367>, 0x640758 <exec_byte_code+17481>, 0x6407a4 <exec_byte_code+17557>, 0x640816 <exec_byte_code+17671>, 0x640888 <exec_byte_code+17785>, 0x6408e2 <exec_byte_code+17875>, 0x64093c <exec_byte_code+17965>, 0x63f61d <exec_byte_code+13070>, 0x63f673 <exec_byte_code+13156>, 0x640992 <exec_byte_code+18051>, 0x6409fb <exec_byte_code+18156>, 0x640a60 <exec_byte_code+18257>, 0x63d5ee <exec_byte_code+4831>, 0x63d6eb <exec_byte_code+5084>, 0x63d827 <exec_byte_code+5400>, 0x63d963 <exec_byte_code+5716>, 0x63da9e <exec_byte_code+6031>, 0x63e84d <exec_byte_code+9534>, 0x63edb1 <exec_byte_code+10914>, 0x63f7e2 <exec_byte_code+13523>, 0x640c30 <exec_byte_code+18721>, 0x640ca3 <exec_byte_code+18836>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640d3d <exec_byte_code+18990>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640a60 <exec_byte_code+18257>, 0x640dd7 <exec_byte_code+19144> <repeats 64 times>}
        count = 7
        op = 5
        vectorp = 0x12a9ca8
        stack = {
          pc = 0xd17c77 "\202\022\004\005\242\205\022\004\201a", 
          byte_string = 13726836, 
          byte_string_start = 0xd17878 "\305\062d\004\306\307\002P\003\"\210\310\002\311\"\204U", 
          next = 0x0
        }
        top = 0x7ffdbb515870
        result = 51552587984
        type = CONDITION_CASE
#42 0x00000000005f7032 in funcall_lambda (fun=19279173, nargs=2, arg_vector=0x7ffdbb515df8) at eval.c:2794
        val = 54682279136
        syms_left = 2058
        next = 2
        lexenv = 140727746125064
        count = 7
        i = 5561709
        optional = false
        rest = false
#43 0x00000000005f6a57 in Ffuncall (nargs=3, args=0x7ffdbb515df0) at eval.c:2683
        fun = 19279173
        original_fun = 543376
        funcar = 5557422
        numargs = 2
        lisp_numargs = 0
        val = 4174721731776
        internal_args = 0x7ffdbb515d80
        count = 6
#44 0x00000000005f59f1 in Fapply (nargs=2, args=0x7ffdbb515ec0) at eval.c:2262
        i = 3
        numargs = 2
        funcall_nargs = 3
        funcall_args = 0x7ffdbb515df0
        spread_arg = 0
        fun = 19279173
        retval = 0
        sa_avail = 16360
        sa_count = 6
        sa_must_free = false
#45 0x00000000005f5f88 in apply1 (fn=543376, arg=17191427) at eval.c:2478
#46 0x000000000064c021 in read_process_output_call (fun_and_args=17191411) at process.c:5241
#47 0x00000000005f3365 in internal_condition_case_1 (bfun=0x64bff3 <read_process_output_call>, arg=17191411, handlers=18912, hfun=0x64c023 <read_process_output_error_handler>) at eval.c:1317
        val = 52349597
        c = 0x149f360
#48 0x000000000064c818 in read_and_dispose_of_process_output (p=0x31eca98, chars=0x7ffdbb516010 "-env ALTERNATE_EDITOR= -env MAIL=/var/mail/dima -env USER=dima -env XDG_SEAT=seat0 -env SSH_AGENT_PID=3513 -env SHLVL=3 -env BROWSER=opera&_-newwindow -env HOME=/home/dima -env OLDPWD=/home/dima/proje"..., nbytes=2635, coding=0xd21bc0) at process.c:5449
        outstream = 543376
        text = 13395844
        outer_running_asynch_code = false
        waiting = -1
#49 0x000000000064c449 in read_process_output (proc=52349597, channel=7) at process.c:5360
        nbytes = 2635
        p = 0x31eca98
        coding = 0xd21bc0
        carryover = 0
        count = 3
        odeactivate = 0
        chars = "-env ALTERNATE_EDITOR= -env MAIL=/var/mail/dima -env USER=dima -env XDG_SEAT=seat0 -env SSH_AGENT_PID=3513 -env SHLVL=3 -env BROWSER=opera&_-newwindow -env HOME=/home/dima -env OLDPWD=/home/dima/proje"...
#50 0x000000000064b931 in wait_reading_process_output (time_limit=30, nsecs=0, read_kbd=-1, do_display=true, wait_for_cell=0, wait_proc=0x0, just_wait_proc=0) at process.c:5067
        nread = 0
        process_skipped = false
        channel = 7
        nfds = 1
        Available = {
          fds_bits = {128, 0 <repeats 15 times>}
        }
        Writeok = {
          fds_bits = {0 <repeats 16 times>}
        }
        check_write = true
        check_delay = 0
        no_avail = false
        xerrno = 11
        proc = 52349597
        timeout = {
          tv_sec = 30, 
          tv_nsec = 0
        }
        end_time = {
          tv_sec = 1444028714, 
          tv_nsec = 661834757
        }
        timer_delay = {
          tv_sec = 0, 
          tv_nsec = -1
        }
        got_output_end_time = {
          tv_sec = 0, 
          tv_nsec = -1
        }
        wait = TIMEOUT
        got_some_output = -1
        count = 2
        now = {
          tv_sec = 0, 
          tv_nsec = -1
        }
#51 0x000000000041f151 in sit_for (timeout=122, reading=true, display_option=1) at dispnew.c:5756
        sec = 30
        nsec = 0
        do_display = true
#52 0x0000000000558dc9 in read_char (commandflag=1, map=17191763, prev_event=0, used_mouse_menu=0x7ffdbb5177a9, end_time=0x0) at keyboard.c:2702
        tem0 = 140727746131376
        timeout = 30
        delay_level = 4
        buffer_size = 1
        c = 0
        jmpcount = 2
        local_getcjmp = {{
            __jmpbuf = {0, 4945592861176702980, 4266784, 140727746133440, 0, 0, 4945592861073942532, -4946869350768367612}, 
            __mask_was_saved = 0, 
            __saved_mask = {
              __val = {5695744, 13161488, 0, 0, 140727746131488, 5557422, 0, 140727746131584, 6257575, 0, 2, 140727746131584, 0, 13161488, 20808227, 0}
            }
          }}
        save_jump = {{
            __jmpbuf = {0, 4945592861176702980, 4266784, 140727746133440, 0, 0, 4945592861073942532, -4946869350768367612}, 
            __mask_was_saved = 0, 
            __saved_mask = {
              __val = {5695744, 13161488, 0, 0, 140727746131488, 5557422, 0, 140727746131584, 6257575, 0, 2, 140727746131584, 0, 13161488, 20808227, 0}
            }
          }}
        tem = 29184
        save = 16816512
        previous_echo_area_message = 0
        also_record = 0
        reread = false
        recorded = false
        polling_stopped_here = false
        orig_kboard = 0xcd0d80
#53 0x00000000005662f1 in read_key_sequence (keybuf=0x7ffdbb517990, bufsize=30, prompt=0, dont_downcase_last=false, can_return_switch_frame=true, fix_current_buffer=true, prevent_redisplay=false) at keyboard.c:9030
        interrupted_kboard = 0xcd0d80
        interrupted_frame = 0xcd5520
        key = 13420677
        used_mouse_menu = false
        echo_local_start = 0
        last_real_key_start = 0
        keys_local_start = 0
        new_binding = 1
        count = 2
        t = 0
        echo_start = 0
        keys_start = 0
        current_binding = 17191763
        first_event = 0
        first_unbound = 31
        mock_input = 0
        fkey = {
          parent = 13573699, 
          map = 13573699, 
          start = 0, 
          end = 0
        }
        keytran = {
          parent = 13375043, 
          map = 13375043, 
          start = 0, 
          end = 0
        }
        indec = {
          parent = 13573715, 
          map = 13573715, 
          start = 0, 
          end = 0
        }
        shift_translated = false
        delayed_switch_frame = 0
        original_uppercase = 140727746132208
        original_uppercase_position = -1
        dummyflag = false
        starting_buffer = 0xccc880
        fake_prefixed_keys = 0
#54 0x0000000000555893 in command_loop_1 () at keyboard.c:1348
        cmd = 477184
        keybuf = 
          {536871394, 0, 140727746132480, 6250701, 0, 9581668, 17199379, 272496, 13161488, 17199379, 0, 140727746132480, 5557422, 816799744, 13161488, 5590718, 0, 140727746132528, 5557422, 2, 140727746132640, 5590501, 0, 17199379, 0, 0, 0, 18093379, 13161488, 2}
        i = 1
        prev_modiff = 11
        prev_buffer = 0xccc880
        already_adjusted = false
#55 0x00000000005f31fa in internal_condition_case (bfun=0x55546b <command_loop_1>, handlers=18912, hfun=0x554c32 <cmd_error>) at eval.c:1293
        val = 5557422
        c = 0x149f230
#56 0x0000000000555172 in command_loop_2 (ignore=0) at keyboard.c:1088
        val = 2
#57 0x00000000005f2999 in internal_catch (tag=45360, func=0x555149 <command_loop_2>, arg=0) at eval.c:1057
        val = 5557422
        c = 0x149f100
#58 0x0000000000555114 in command_loop () at keyboard.c:1067
#59 0x00000000005547fa in recursive_edit_1 () at keyboard.c:673
        count = 1
        val = 6256666
#60 0x000000000055498e in Frecursive_edit () at keyboard.c:744
        count = 0
        buffer = 0
#61 0x00000000005526d3 in main (argc=3, argv=0x7ffdbb517dc8) at emacs.c:1643
        dummy = 0
        stack_bottom_variable = -113 '\217'
        do_initial_setlocale = false
        dumping = false
        skip_args = 1
        rlim = {
          rlim_cur = 8720000, 
          rlim_max = 18446744073709551615
        }
        no_loadup = false
        junk = 0x0
        dname_arg = 0x0
        ch_to_dir = 0x0
        original_pwd = 0x0

Lisp Backtrace:
"x-create-frame" (0xbb5136a0)
"x-create-frame-with-faces" (0xbb513bd8)
0x12bb5c0 PVEC_COMPILED
"apply" (0xbb514250)
"frame-creation-function" (0xbb5147f0)
"make-frame" (0xbb514d40)
"make-frame-on-display" (0xbb5152a8)
"server-create-window-system-frame" (0xbb515878)
"server-process-filter" (0xbb515df8)




The lisp object arguments of interest are:

x_new_font:
  font_object = #<font-object "-unknown-DejaVu Sans Mono-normal-normal-normal-*-14-*-*-*-m-0-iso10646-1">

Fset_fontset_font:
  name = "-unknown-DejaVu Sans Mono-normal-normal-normal-*-14-*-*-*-m-0-fontset-auto129"
  target = latin
  font_spec = #<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil>

  here I get find_font_encoding() returning encoding = (unicode-bmp).
  CHARSET_SYMBOL_ID() then converts this encoding to 144

Fset_char_table_range:
  char_table = <long messy thing; in attachment>
  range = (64256 . 64262)
  value = [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]]



I'm not sure what the "normal" call path looks like, and hopefully this
is enough to fully describe the failure.



[-- Attachment #2: char_table --]
[-- Type: application/octet-stream, Size: 54582 bytes --]

#^[nil nil fontset [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] #^^[1 0 #^^[2 0 [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] 
#^^[3 128 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] 
#^^[3 512 [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 
#^^[3 640 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]]] 
#^^[3 768 [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] #^^[2 4096 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil 
#^^[3 6784 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]]] nil nil nil nil nil 
#^^[3 7552 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] nil nil] #^^[2 8192 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil 
#^^[3 11264 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]]] nil nil nil nil nil nil nil] nil nil nil nil nil nil nil #^^[2 40960 nil nil nil nil nil nil nil nil nil nil nil nil nil nil [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] nil nil nil nil nil nil 
#^^[3 43776 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]] nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] nil nil nil nil nil nil nil nil nil] nil nil nil nil #^^[2 61440 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil]] nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil 131 "-unknown-DejaVu Sans Mono-normal-normal-normal-*-14-*-*-*-m-0-fontset-auto129" nil nil nil nil nil nil]

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05  7:21               ` Dima Kogan
@ 2015-10-05  7:55                 ` Eli Zaretskii
  2015-10-05  8:24                   ` Dima Kogan
  0 siblings, 1 reply; 37+ messages in thread
From: Eli Zaretskii @ 2015-10-05  7:55 UTC (permalink / raw)
  To: Dima Kogan; +Cc: eggert, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org
> Date: Mon, 05 Oct 2015 00:21:32 -0700
> 
> > I tried to reproduce this on my machine, but couldn't.  What I see is
> > that the chain of calls you reported happens only once, when the first
> > frame is created.  When I later create a second frame, either with
> > "C-x 5 f" or by invoking emacsclient, x_new_font is indeed invoked
> > again, but it doesn't call Fset_char_table_range, and consequently no
> > additional sub-char-tables are allocated.
> 
> Hi. This is happening for me again. And I can't make it NOT happen now,
> so I can't compare the two cases. You said you see x_new_font() calls,
> but not the subsequent Fset_char_table_range() calls. I see these
> Fset_char_table_range() calls with every new frame, and I don't know
> where my emacs gets off track. The full backtrace looks like this:
> 
> 
> (gdb) bt full
> #0  0x00000000005cbdd5 in xmalloc (size=4096) at alloc.c:707
>         val = 0x2
> #1  0x00000000005ce184 in allocate_vector_block () at alloc.c:2836
>         block = 0x33f7ee0
> #2  0x00000000005ce3a2 in allocate_vector_from_block (nbytes=1040) at alloc.c:2900
>         vector = 0x304b568
>         block = 0x5cbd0d <mmap_lisp_allowed_p+9>
>         index = 510
>         restbytes = 140727746112864
> #3  0x00000000005ce9e0 in allocate_vectorlike (len=129) at alloc.c:3108
>         nbytes = 1040
>         p = 0x5ce34e <allocate_vector_from_block+364>
> #4  0x00000000005ceaed in allocate_vector (len=129) at alloc.c:3148
>         v = 0x5cea61 <allocate_vectorlike+245>
>         nbytes_max = 9223372036854775807
> #5  0x000000000054e894 in make_uninit_vector (size=129) at lisp.h:3559
>         v = 54491861
>         p = 0x110
> #6  0x000000000054e8e0 in make_uninit_sub_char_table (depth=3, min_char=64256) at lisp.h:3570
>         slots = 129
>         v = 60184035045
> #7  0x00000000004ee43b in make_sub_char_table (depth=3, min_char=64256, defalt=0) at chartab.c:141
>         i = 0
>         table = 0
> #8  0x00000000004ef69a in sub_char_table_set_range (table=54492901, from=64256, to=64262, val=50415725, is_uniprop=false) at chartab.c:473
>         sub = 0
>         tbl = 0x33f7ee0
>         depth = 2
>         min_char = 61440
>         chars_in_block = 128
>         i = 22
>         c = 64256
>         lim = 32
> #9  0x00000000004ef6d4 in sub_char_table_set_range (table=14575333, from=64256, to=64262, val=50415725, is_uniprop=false) at chartab.c:477
>         sub = 54492901
>         tbl = 0xde66e0
>         depth = 1
>         min_char = 0
>         chars_in_block = 4096
>         i = 15
>         c = 61440
>         lim = 16
> #10 0x00000000004ef86c in char_table_set_range (table=52981493, from=64256, to=64262, val=50415725) at chartab.c:511
>         sub = 14575333
>         is_uniprop = false
>         lim = 0
>         i = 0
>         c = 0
>         tbl = 0x3286ef0
> #11 0x00000000004efeca in Fset_char_table_range (char_table=52981493, range=17504803, value=50415725) at chartab.c:654
> #12 0x0000000000680b3f in Fset_fontset_font (name=17419252, target=29952, font_spec=15236741, frame=13456677, add=0) at fontset.c:1590
>         fontset = 52981493
>         font_def = 15103109
>         registry = 17878196
>         family = 0
>         range_list = 17504787
>         charset = 0x0
>         fontname = 17878292
>         ascii_changed = true
> #13 0x0000000000681569 in fontset_from_font (font_object=50891429) at fontset.c:1757
>         target = 29952
>         font_name = 17419444
>         font_spec = 15236741
>         registry = 28656
>         fontset_spec = 15395877
>         alias = 17419220
>         name = 17419252
>         fontset = 52981493
>         val = 0

The difference starts in this frame #13, inside fontset_from_font.  On
my system, this call returns where indicated below:

  int
  fontset_from_font (Lisp_Object font_object)
  {
    Lisp_Object font_name = font_get_name (font_object);
    Lisp_Object font_spec = copy_font_spec (font_object);
    Lisp_Object registry = AREF (font_spec, FONT_REGISTRY_INDEX);
    Lisp_Object fontset_spec, alias, name, fontset;
    Lisp_Object val;

    val = assoc_no_quit (font_spec, auto_fontset_alist);
    if (CONSP (val))
      return XINT (FONTSET_ID (XCDR (val))); <<<<<<<<<<<<<<<<<

Evidently, on your system the call to assoc_no_quit doesn't return a
cons cell, but something else, probably Qnil.  Is that true?

If so, please show the values of the 2 arguments to assoc_no_quit (in
their Lisp form, as displayed by the "pp" command).

Also, do you see the same call chain, with _exactly_ the same
arguments, starting from fontset_from_font, each time you create a new
frame?

Finally, please give the exact sequence of commands you invoke to
create a new frame, and what file/buffer is initially displayed in the
new frame.  (I used src/xdisp.c via "C-x 5 f".)  I'd like to make sure
we ask Emacs to do exactly the same job.

> The lisp object arguments of interest are:
> 
> x_new_font:
>   font_object = #<font-object "-unknown-DejaVu Sans Mono-normal-normal-normal-*-14-*-*-*-m-0-iso10646-1">
> 
> Fset_fontset_font:
>   name = "-unknown-DejaVu Sans Mono-normal-normal-normal-*-14-*-*-*-m-0-fontset-auto129"
>   target = latin
>   font_spec = #<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil>
> 
>   here I get find_font_encoding() returning encoding = (unicode-bmp).
>   CHARSET_SYMBOL_ID() then converts this encoding to 144
> 
> Fset_char_table_range:
>   char_table = <long messy thing; in attachment>
>   range = (64256 . 64262)
>   value = [[#<font-spec nil nil nil nil iso10646-1 nil nil nil nil nil nil nil nil> 144 nil]]

For the record, the range (64256 . 64262) covers the Latin ligatures,
like ff.  DejaVu Sans Mono covers only 2 of them.  On my system, the
default is Courier New, which supports more.  Not sure this has
anything to do with the problem, but just in case, can you start Emacs
with a Courier font, and see if the problem still happens?




^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05  7:55                 ` Eli Zaretskii
@ 2015-10-05  8:24                   ` Dima Kogan
  2015-10-05  8:33                     ` Eli Zaretskii
  2015-10-05  8:43                     ` Eli Zaretskii
  0 siblings, 2 replies; 37+ messages in thread
From: Dima Kogan @ 2015-10-05  8:24 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: eggert, emacs-devel

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Dima Kogan <lists@dima.secretsauce.net>
>> Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org
>> Date: Mon, 05 Oct 2015 00:21:32 -0700
>> 
>> Hi. This is happening for me again. And I can't make it NOT happen now,
>> so I can't compare the two cases. You said you see x_new_font() calls,
>> but not the subsequent Fset_char_table_range() calls. I see these
>> Fset_char_table_range() calls with every new frame, and I don't know
>> where my emacs gets off track.
>
> The difference starts in this frame #13, inside fontset_from_font.  On
> my system, this call returns where indicated below:
>
>   int
>   fontset_from_font (Lisp_Object font_object)
>   {
>     Lisp_Object font_name = font_get_name (font_object);
>     Lisp_Object font_spec = copy_font_spec (font_object);
>     Lisp_Object registry = AREF (font_spec, FONT_REGISTRY_INDEX);
>     Lisp_Object fontset_spec, alias, name, fontset;
>     Lisp_Object val;
>
>     val = assoc_no_quit (font_spec, auto_fontset_alist);
>     if (CONSP (val))
>       return XINT (FONTSET_ID (XCDR (val))); <<<<<<<<<<<<<<<<<
>
> Evidently, on your system the call to assoc_no_quit doesn't return a
> cons cell, but something else, probably Qnil.  Is that true?

Yes. Qnil.


> If so, please show the values of the 2 arguments to assoc_no_quit (in
> their Lisp form, as displayed by the "pp" command).

This is the crux of the problem. The font_spec is

  #<font-spec nil unknown DejaVu\ Sans\ Mono nil iso10646-1 normal normal normal 14 nil 100 0 ((:name . "monospace-10") (user-spec . "monospace-10"))>

The auto_fontset_alist has many entries, all with the same identical key:

  #<font-spec nil unknown DejaVu\ Sans\ Mono nil iso10646-1 normal normal normal 14 nil 100 0 ((:name) (user-spec . "monospace-10"))>

Clearly these aren't identical, and this is the problem. I'm tracking
down where this is changed right now.


> Also, do you see the same call chain, with _exactly_ the same
> arguments, starting from fontset_from_font, each time you create a new
> frame?

Yep


> Finally, please give the exact sequence of commands you invoke to
> create a new frame, and what file/buffer is initially displayed in the
> new frame.  (I used src/xdisp.c via "C-x 5 f".)  I'd like to make sure
> we ask Emacs to do exactly the same job.

I initially make a daemon with "emacs -Q --daemon". Then I open a client
frame with "emacsclient -a '' -c". I open/close clients this way several
times to get the initialization out of the way. I don't touch the emacs
at all, so the initial *scratch* buffer is what's open.


> For the record, the range (64256 . 64262) covers the Latin ligatures,
> like ff.  DejaVu Sans Mono covers only 2 of them.  On my system, the
> default is Courier New, which supports more.  Not sure this has
> anything to do with the problem, but just in case, can you start Emacs
> with a Courier font, and see if the problem still happens?

I don't off the top of my head know how to do that, but let me
investigate the auto_fontset_alist key discrepancy first.

Thank you very much.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05  8:24                   ` Dima Kogan
@ 2015-10-05  8:33                     ` Eli Zaretskii
  2015-10-05  8:43                     ` Eli Zaretskii
  1 sibling, 0 replies; 37+ messages in thread
From: Eli Zaretskii @ 2015-10-05  8:33 UTC (permalink / raw)
  To: Dima Kogan; +Cc: eggert, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org
> Date: Mon, 05 Oct 2015 01:24:08 -0700
> 
> > Finally, please give the exact sequence of commands you invoke to
> > create a new frame, and what file/buffer is initially displayed in the
> > new frame.  (I used src/xdisp.c via "C-x 5 f".)  I'd like to make sure
> > we ask Emacs to do exactly the same job.
> 
> I initially make a daemon with "emacs -Q --daemon". Then I open a client
> frame with "emacsclient -a '' -c". I open/close clients this way several
> times to get the initialization out of the way. I don't touch the emacs
> at all, so the initial *scratch* buffer is what's open.

If investigating the value of auto_fontset_alist doesn't provide the
solution, I'd prefer if we kept the daemon out of this, and instead
used a "normal" Emacs session, assuming the problem happens there as
well.  At least for me, it's easier to deal with normal sessions than
with those which need a daemon.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05  8:24                   ` Dima Kogan
  2015-10-05  8:33                     ` Eli Zaretskii
@ 2015-10-05  8:43                     ` Eli Zaretskii
  2015-10-05  9:24                       ` Dima Kogan
  1 sibling, 1 reply; 37+ messages in thread
From: Eli Zaretskii @ 2015-10-05  8:43 UTC (permalink / raw)
  To: Dima Kogan; +Cc: eggert, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org
> Date: Mon, 05 Oct 2015 01:24:08 -0700
> 
> > If so, please show the values of the 2 arguments to assoc_no_quit (in
> > their Lisp form, as displayed by the "pp" command).
> 
> This is the crux of the problem. The font_spec is
> 
>   #<font-spec nil unknown DejaVu\ Sans\ Mono nil iso10646-1 normal normal normal 14 nil 100 0 ((:name . "monospace-10") (user-spec . "monospace-10"))>
> 
> The auto_fontset_alist has many entries, all with the same identical key:
> 
>   #<font-spec nil unknown DejaVu\ Sans\ Mono nil iso10646-1 normal normal normal 14 nil 100 0 ((:name) (user-spec . "monospace-10"))>

Not sure if it's relevant, but on my system, neither
auto_fontset_alist entries nor the value of font_spec have the
(:name ...) element.  They do have user-spec, but no :name.  Perhaps
try finding out where does that come from.  (Functions in fontset.el
look like one possible place.)



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05  8:43                     ` Eli Zaretskii
@ 2015-10-05  9:24                       ` Dima Kogan
  2015-10-05  9:49                         ` Dima Kogan
  0 siblings, 1 reply; 37+ messages in thread
From: Dima Kogan @ 2015-10-05  9:24 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: eggert, emacs-devel

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Dima Kogan <lists@dima.secretsauce.net>
>> Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org
>> Date: Mon, 05 Oct 2015 01:24:08 -0700
>> 
>> > If so, please show the values of the 2 arguments to assoc_no_quit (in
>> > their Lisp form, as displayed by the "pp" command).
>> 
>> This is the crux of the problem. The font_spec is
>> 
>>   #<font-spec nil unknown DejaVu\ Sans\ Mono nil iso10646-1 normal normal normal 14 nil 100 0 ((:name . "monospace-10") (user-spec . "monospace-10"))>
>> 
>> The auto_fontset_alist has many entries, all with the same identical key:
>> 
>>   #<font-spec nil unknown DejaVu\ Sans\ Mono nil iso10646-1 normal normal normal 14 nil 100 0 ((:name) (user-spec . "monospace-10"))>
>
> Not sure if it's relevant, but on my system, neither
> auto_fontset_alist entries nor the value of font_spec have the
> (:name ...) element.  They do have user-spec, but no :name.  Perhaps
> try finding out where does that come from.  (Functions in fontset.el
> look like one possible place.)

OK. So the problem is that fontset_from_font() does

  Lisp_Object font_spec = copy_font_spec (font_object);

and then sets this font_spec as the key to the alist. However
copy_font_spec() is not a deep copy, and the caller to
fontset_from_font() ends up with references to internals of font_spec.
It then changes those internals, and ends up changing the key of the
auto_fontset_alist.

Specifically the (name . ...) cons cell is the one being shared. If
anybody cares, the backtrace of the reset of the :name is

    #0  0x000000000054cdad in XSETCDR (c=15185539, n=0) at lisp.h:1194
    #1  0x0000000000608d42 in font_put_extra (font=19160773, prop=5184, val=0) at font.c:732
    #2  0x000000000060f849 in font_clear_prop (attrs=0x7ffccea52c20, prop=FONT_SLANT_INDEX) at font.c:3044
    #3  0x0000000000509d69 in merge_face_vectors (f=0xf975d0, from=0x7ffccea52d20, to=0x7ffccea52c20, named_merge_points=0x0) at xfaces.c:2130
    #4  0x0000000000510790 in x_supports_face_attributes_p (f=0xf975d0, attrs=0x7ffccea52d20, def_face=0xebb2e0)
        at xfaces.c:4691
    #5  0x00000000005113cb in Fdisplay_supports_face_attributes_p (attributes=10113851, display=16348629)

but this seems hardly relevant. Making copy_font_spec() a deep copy
probably would resolve this. Trying that now.




^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05  9:24                       ` Dima Kogan
@ 2015-10-05  9:49                         ` Dima Kogan
  2015-10-05  9:58                           ` Andreas Schwab
  0 siblings, 1 reply; 37+ messages in thread
From: Dima Kogan @ 2015-10-05  9:49 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: eggert, emacs-devel


Dima Kogan <lists@dima.secretsauce.net> writes:

> Making copy_font_spec() a deep copy probably would resolve this.
> Trying that now.

Aaand, that works. The leak went down from 24KB/frame to 12KB/frame.
Patch below. I'm not as familiar with lisp as I should probably be, so
there's probably a nicer way for this patch to have been written.


diff --git a/src/font.c b/src/font.c
index 8e06532..ca872d0 100644
--- a/src/font.c
+++ b/src/font.c
@@ -3981,7 +3981,15 @@ copy_font_spec (Lisp_Object font)
   pcdr = spec->props + FONT_EXTRA_INDEX;
   for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
     if (!EQ (XCAR (XCAR (tail)), QCfont_entity))
-      *pcdr = Fcons (XCAR (tail), Qnil), pcdr = xcdr_addr (*pcdr);
+      {
+        if (CONSP (XCAR (tail)))
+          *pcdr = Fcons (Fcons( XCAR (XCAR (tail)),
+                                XCDR (XCAR (tail))),
+                         Qnil);
+        else
+          *pcdr = Fcons (XCAR (tail), Qnil);
+        pcdr = xcdr_addr (*pcdr);
+      }
 
   XSETFONT (new_spec, spec);
   return new_spec;



^ permalink raw reply related	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05  9:49                         ` Dima Kogan
@ 2015-10-05  9:58                           ` Andreas Schwab
  2015-10-05 10:02                             ` Dima Kogan
  0 siblings, 1 reply; 37+ messages in thread
From: Andreas Schwab @ 2015-10-05  9:58 UTC (permalink / raw)
  To: Dima Kogan; +Cc: Eli Zaretskii, eggert, emacs-devel

Dima Kogan <lists@dima.secretsauce.net> writes:

> diff --git a/src/font.c b/src/font.c
> index 8e06532..ca872d0 100644
> --- a/src/font.c
> +++ b/src/font.c
> @@ -3981,7 +3981,15 @@ copy_font_spec (Lisp_Object font)
>    pcdr = spec->props + FONT_EXTRA_INDEX;
>    for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
>      if (!EQ (XCAR (XCAR (tail)), QCfont_entity))
> -      *pcdr = Fcons (XCAR (tail), Qnil), pcdr = xcdr_addr (*pcdr);
> +      {
> +        if (CONSP (XCAR (tail)))

This better be always true, otherwise XCAR (XCAR (tail)) would be a bug.

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05  9:58                           ` Andreas Schwab
@ 2015-10-05 10:02                             ` Dima Kogan
  2015-10-05 10:47                               ` Eli Zaretskii
  0 siblings, 1 reply; 37+ messages in thread
From: Dima Kogan @ 2015-10-05 10:02 UTC (permalink / raw)
  To: Andreas Schwab; +Cc: Eli Zaretskii, eggert, emacs-devel

Andreas Schwab <schwab@suse.de> writes:
> Dima Kogan <lists@dima.secretsauce.net> writes:
>
>> diff --git a/src/font.c b/src/font.c
>> index 8e06532..ca872d0 100644
>> --- a/src/font.c
>> +++ b/src/font.c
>> @@ -3981,7 +3981,15 @@ copy_font_spec (Lisp_Object font)
>>    pcdr = spec->props + FONT_EXTRA_INDEX;
>>    for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
>>      if (!EQ (XCAR (XCAR (tail)), QCfont_entity))
>> -      *pcdr = Fcons (XCAR (tail), Qnil), pcdr = xcdr_addr (*pcdr);
>> +      {
>> +        if (CONSP (XCAR (tail)))
>
> This better be always true, otherwise XCAR (XCAR (tail)) would be a bug.

It isn't. Without that check I was getting every time.

  *ERROR*: Wrong type argument: listp, "monospace-10"

Surprised me too, and I haven't checked to see what was happening there.
I will look... tomorrow. It's bed time.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05 10:02                             ` Dima Kogan
@ 2015-10-05 10:47                               ` Eli Zaretskii
  2015-10-05 18:19                                 ` Dima Kogan
  0 siblings, 1 reply; 37+ messages in thread
From: Eli Zaretskii @ 2015-10-05 10:47 UTC (permalink / raw)
  To: Dima Kogan; +Cc: schwab, eggert, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Cc: Eli Zaretskii <eliz@gnu.org>, eggert@cs.ucla.edu, emacs-devel@gnu.org
> Date: Mon, 05 Oct 2015 03:02:16 -0700
> 
> Andreas Schwab <schwab@suse.de> writes:
> > Dima Kogan <lists@dima.secretsauce.net> writes:
> >
> >> diff --git a/src/font.c b/src/font.c
> >> index 8e06532..ca872d0 100644
> >> --- a/src/font.c
> >> +++ b/src/font.c
> >> @@ -3981,7 +3981,15 @@ copy_font_spec (Lisp_Object font)
> >>    pcdr = spec->props + FONT_EXTRA_INDEX;
> >>    for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
> >>      if (!EQ (XCAR (XCAR (tail)), QCfont_entity))
> >> -      *pcdr = Fcons (XCAR (tail), Qnil), pcdr = xcdr_addr (*pcdr);
> >> +      {
> >> +        if (CONSP (XCAR (tail)))
> >
> > This better be always true, otherwise XCAR (XCAR (tail)) would be a bug.
> 
> It isn't. Without that check I was getting every time.
> 
>   *ERROR*: Wrong type argument: listp, "monospace-10"

I think what Andreas meant was this: the old code used
XCAR (XCAR (tail)) unconditionally, which seems to indicate that
XCAR (tail) is always a cons cell, and your test should always
yield true.

> Surprised me too, and I haven't checked to see what was happening there.

So maybe your code should include some check for QCfont_entity in the
'else' clause as well.

Btw, isn't 12KB per frame still a lot?

Thanks.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05 10:47                               ` Eli Zaretskii
@ 2015-10-05 18:19                                 ` Dima Kogan
  2015-10-05 18:24                                   ` Eli Zaretskii
  2015-10-05 23:21                                   ` Dima Kogan
  0 siblings, 2 replies; 37+ messages in thread
From: Dima Kogan @ 2015-10-05 18:19 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: schwab, eggert, emacs-devel

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Dima Kogan <lists@dima.secretsauce.net>
>> Cc: Eli Zaretskii <eliz@gnu.org>, eggert@cs.ucla.edu, emacs-devel@gnu.org
>> Date: Mon, 05 Oct 2015 03:02:16 -0700
>> 
>> Andreas Schwab <schwab@suse.de> writes:
>> > Dima Kogan <lists@dima.secretsauce.net> writes:
>> >
>> >> diff --git a/src/font.c b/src/font.c
>> >> index 8e06532..ca872d0 100644
>> >> --- a/src/font.c
>> >> +++ b/src/font.c
>> >> @@ -3981,7 +3981,15 @@ copy_font_spec (Lisp_Object font)
>> >>    pcdr = spec->props + FONT_EXTRA_INDEX;
>> >>    for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
>> >>      if (!EQ (XCAR (XCAR (tail)), QCfont_entity))
>> >> -      *pcdr = Fcons (XCAR (tail), Qnil), pcdr = xcdr_addr (*pcdr);
>> >> +      {
>> >> +        if (CONSP (XCAR (tail)))
>> >
>> > This better be always true, otherwise XCAR (XCAR (tail)) would be a bug.
>> 
>> It isn't. Without that check I was getting every time.
>> 
>>   *ERROR*: Wrong type argument: listp, "monospace-10"
>
> I think what Andreas meant was this: the old code used
> XCAR (XCAR (tail)) unconditionally, which seems to indicate that
> XCAR (tail) is always a cons cell, and your test should always
> yield true.

I just looked at it again, and it was my mistake; this is always a cons
cell as it should be. I was getting the error when using Fcopy_sequence
instead of making a new cell with Fcons. The former would make a deeper
copy, but the alist entries aren't lists, so Fcopy_sequence() was
barfing. Making a new cons-cell is one-level deep, and it's deep-enough,
so it works. So yeah, my bad.


>> Surprised me too, and I haven't checked to see what was happening there.
>
> So maybe your code should include some check for QCfont_entity in the
> 'else' clause as well.

Here's the updated patch:

diff --git a/src/font.c b/src/font.c
index 8e06532..dd574ca 100644
--- a/src/font.c
+++ b/src/font.c
@@ -3981,7 +3981,12 @@ copy_font_spec (Lisp_Object font)
   pcdr = spec->props + FONT_EXTRA_INDEX;
   for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
     if (!EQ (XCAR (XCAR (tail)), QCfont_entity))
-      *pcdr = Fcons (XCAR (tail), Qnil), pcdr = xcdr_addr (*pcdr);
+      {
+        *pcdr = Fcons (Fcons( XCAR (XCAR (tail)),
+                              XCDR (XCAR (tail))),
+                       Qnil);
+        pcdr = xcdr_addr (*pcdr);
+      }
 
   XSETFONT (new_spec, spec);
   return new_spec;

I'm not sure what you mean about checking for QCfont_entity. This new
patch doesn't add an if(), and there's already a QCfont_entity check
there. This is fine, right?


> Btw, isn't 12KB per frame still a lot?

Yes, I think so. There are more leaks to find.



^ permalink raw reply related	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05 18:19                                 ` Dima Kogan
@ 2015-10-05 18:24                                   ` Eli Zaretskii
  2015-10-05 23:21                                   ` Dima Kogan
  1 sibling, 0 replies; 37+ messages in thread
From: Eli Zaretskii @ 2015-10-05 18:24 UTC (permalink / raw)
  To: Dima Kogan; +Cc: schwab, eggert, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Cc: schwab@suse.de, eggert@cs.ucla.edu, emacs-devel@gnu.org
> Date: Mon, 05 Oct 2015 11:19:14 -0700
> 
> >> > This better be always true, otherwise XCAR (XCAR (tail)) would be a bug.
> >> 
> >> It isn't. Without that check I was getting every time.
> >> 
> >>   *ERROR*: Wrong type argument: listp, "monospace-10"
> >
> > I think what Andreas meant was this: the old code used
> > XCAR (XCAR (tail)) unconditionally, which seems to indicate that
> > XCAR (tail) is always a cons cell, and your test should always
> > yield true.
> 
> I just looked at it again, and it was my mistake; this is always a cons
> cell as it should be. I was getting the error when using Fcopy_sequence
> instead of making a new cell with Fcons. The former would make a deeper
> copy, but the alist entries aren't lists, so Fcopy_sequence() was
> barfing. Making a new cons-cell is one-level deep, and it's deep-enough,
> so it works. So yeah, my bad.
> 
> 
> >> Surprised me too, and I haven't checked to see what was happening there.
> >
> > So maybe your code should include some check for QCfont_entity in the
> > 'else' clause as well.
> 
> Here's the updated patch:
> 
> diff --git a/src/font.c b/src/font.c
> index 8e06532..dd574ca 100644
> --- a/src/font.c
> +++ b/src/font.c
> @@ -3981,7 +3981,12 @@ copy_font_spec (Lisp_Object font)
>    pcdr = spec->props + FONT_EXTRA_INDEX;
>    for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
>      if (!EQ (XCAR (XCAR (tail)), QCfont_entity))
> -      *pcdr = Fcons (XCAR (tail), Qnil), pcdr = xcdr_addr (*pcdr);
> +      {
> +        *pcdr = Fcons (Fcons( XCAR (XCAR (tail)),
> +                              XCDR (XCAR (tail))),
> +                       Qnil);
> +        pcdr = xcdr_addr (*pcdr);
> +      }
>  
>    XSETFONT (new_spec, spec);
>    return new_spec;
> 
> I'm not sure what you mean about checking for QCfont_entity. This new
> patch doesn't add an if(), and there's already a QCfont_entity check
> there. This is fine, right?

Forget that.  It was based on your reports about errors.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05 18:19                                 ` Dima Kogan
  2015-10-05 18:24                                   ` Eli Zaretskii
@ 2015-10-05 23:21                                   ` Dima Kogan
  2015-10-06  2:41                                     ` Eli Zaretskii
  1 sibling, 1 reply; 37+ messages in thread
From: Dima Kogan @ 2015-10-05 23:21 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: schwab, eggert, emacs-devel

Dima Kogan <lists@dima.secretsauce.net> writes:

> Here's the updated patch:
>
> diff --git a/src/font.c b/src/font.c
> index 8e06532..dd574ca 100644
> --- a/src/font.c
> +++ b/src/font.c
> @@ -3981,7 +3981,12 @@ copy_font_spec (Lisp_Object font)
>    pcdr = spec->props + FONT_EXTRA_INDEX;
>    for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
>      if (!EQ (XCAR (XCAR (tail)), QCfont_entity))
> -      *pcdr = Fcons (XCAR (tail), Qnil), pcdr = xcdr_addr (*pcdr);
> +      {
> +        *pcdr = Fcons (Fcons( XCAR (XCAR (tail)),
> +                              XCDR (XCAR (tail))),
> +                       Qnil);
> +        pcdr = xcdr_addr (*pcdr);
> +      }
>  
>    XSETFONT (new_spec, spec);
>    return new_spec;

After a bit more testing, I'm happy with this patch. Thoughts about
merging it? Should I open a bug tracker entry to keep track of it?



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-05 23:21                                   ` Dima Kogan
@ 2015-10-06  2:41                                     ` Eli Zaretskii
  2015-10-08 21:51                                       ` Dima Kogan
  0 siblings, 1 reply; 37+ messages in thread
From: Eli Zaretskii @ 2015-10-06  2:41 UTC (permalink / raw)
  To: Dima Kogan; +Cc: schwab, eggert, emacs-devel

> From: Dima Kogan <lists@dima.secretsauce.net>
> Cc: schwab@suse.de, eggert@cs.ucla.edu, emacs-devel@gnu.org
> Date: Mon, 05 Oct 2015 16:21:32 -0700
> 
> Dima Kogan <lists@dima.secretsauce.net> writes:
> 
> > Here's the updated patch:
> >
> > diff --git a/src/font.c b/src/font.c
> > index 8e06532..dd574ca 100644
> > --- a/src/font.c
> > +++ b/src/font.c
> > @@ -3981,7 +3981,12 @@ copy_font_spec (Lisp_Object font)
> >    pcdr = spec->props + FONT_EXTRA_INDEX;
> >    for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
> >      if (!EQ (XCAR (XCAR (tail)), QCfont_entity))
> > -      *pcdr = Fcons (XCAR (tail), Qnil), pcdr = xcdr_addr (*pcdr);
> > +      {
> > +        *pcdr = Fcons (Fcons( XCAR (XCAR (tail)),
> > +                              XCDR (XCAR (tail))),
> > +                       Qnil);
> > +        pcdr = xcdr_addr (*pcdr);
> > +      }
> >  
> >    XSETFONT (new_spec, spec);
> >    return new_spec;
> 
> After a bit more testing, I'm happy with this patch. Thoughts about
> merging it?

Let's wait for a few days, and push if not objections.

> Should I open a bug tracker entry to keep track of it?

Might be a good idea, yes.  Please mention this thread there, if you
do.

Thanks.



^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Debugging emacs memory management
  2015-10-06  2:41                                     ` Eli Zaretskii
@ 2015-10-08 21:51                                       ` Dima Kogan
  0 siblings, 0 replies; 37+ messages in thread
From: Dima Kogan @ 2015-10-08 21:51 UTC (permalink / raw)
  To: emacs-devel

>> Should I open a bug tracker entry to keep track of it?
>
> Might be a good idea, yes.  Please mention this thread there, if you
> do.

http://debbugs.gnu.org/cgi/bugreport.cgi?bug=21651



^ permalink raw reply	[flat|nested] 37+ messages in thread

end of thread, other threads:[~2015-10-08 21:51 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-11  6:01 Debugging emacs memory management Dima Kogan
2015-02-11 15:05 ` Stefan Monnier
2015-02-15 20:28   ` Dima Kogan
2015-02-15 20:47     ` Eli Zaretskii
2015-02-16  1:39       ` Stefan Monnier
2015-02-17  7:59         ` Dima Kogan
2015-02-17 15:59           ` Eli Zaretskii
2015-02-18  0:07           ` Stefan Monnier
2015-02-11 19:07 ` Florian Weimer
2015-09-15 19:27 ` Dima Kogan
2015-09-16 16:28   ` Paul Eggert
2015-09-20 22:01     ` Dima Kogan
2015-09-21  6:46       ` Eli Zaretskii
2015-09-21  8:54         ` Dima Kogan
2015-09-21 10:00           ` Eli Zaretskii
2015-09-21 10:21             ` Eli Zaretskii
2015-09-22 21:33               ` Dima Kogan
2015-09-23  6:35                 ` Eli Zaretskii
2015-09-23  6:37                   ` Dima Kogan
2015-09-23  7:16                     ` Eli Zaretskii
2015-10-05  7:21               ` Dima Kogan
2015-10-05  7:55                 ` Eli Zaretskii
2015-10-05  8:24                   ` Dima Kogan
2015-10-05  8:33                     ` Eli Zaretskii
2015-10-05  8:43                     ` Eli Zaretskii
2015-10-05  9:24                       ` Dima Kogan
2015-10-05  9:49                         ` Dima Kogan
2015-10-05  9:58                           ` Andreas Schwab
2015-10-05 10:02                             ` Dima Kogan
2015-10-05 10:47                               ` Eli Zaretskii
2015-10-05 18:19                                 ` Dima Kogan
2015-10-05 18:24                                   ` Eli Zaretskii
2015-10-05 23:21                                   ` Dima Kogan
2015-10-06  2:41                                     ` Eli Zaretskii
2015-10-08 21:51                                       ` Dima Kogan
2015-09-16 16:34   ` Davis Herring
2015-09-16 22:03   ` Markus Triska

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