unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#54996: Emacs hangs when editing Python code with debug-on-error set to t
@ 2022-04-17 20:16 Richard Stanton
  2022-04-17 20:43 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 10+ messages in thread
From: Richard Stanton @ 2022-04-17 20:16 UTC (permalink / raw)
  To: 54996

Running Emacs 28.1 on MacOS 12.3.1, I’ve encountered a situation where Emacs hangs while editing Python code.

To see the problem, fire up Emacs 28.1 with init.el containing just one line:

———————
(setq debug-on-error t)
———————

Now open a Python file containing the following text:

———————
"""Text in triple double quotes"""
———————

Put the cursor right at the start of the file, on the first double quote, and press ‘, the single quote character. On my machine, Emacs now hangs and doesn’t respond to the keyboard. Without debug-on-error, this works just fine.

Best,

Richard Stanton






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

* bug#54996: Emacs hangs when editing Python code with debug-on-error set to t
  2022-04-17 20:16 bug#54996: Emacs hangs when editing Python code with debug-on-error set to t Richard Stanton
@ 2022-04-17 20:43 ` Lars Ingebrigtsen
  2022-04-18  5:46   ` Eli Zaretskii
  0 siblings, 1 reply; 10+ messages in thread
From: Lars Ingebrigtsen @ 2022-04-17 20:43 UTC (permalink / raw)
  To: Richard Stanton; +Cc: 54996

Richard Stanton <rhstanton@berkeley.edu> writes:

> Put the cursor right at the start of the file, on the first double
> quote, and press ‘, the single quote character. On my machine, Emacs
> now hangs and doesn’t respond to the keyboard. Without debug-on-error,
> this works just fine.

I can reproduce this, too (on Debian/bookworm).  `C-g' does work to
break it, but then it just hangs again almost immediately, so I guess
it's a problem in font-locking.

But it's bizarre that the debug-on-error setting should affect this.
I've skimmed through python.el looking for anything obvious (like a
`condition-case-unless-debug' but can't find anything).

The culprit must be in python-syntax-stringify -- if I just remove that,
the hang is gone.  But there's no odd error handling there that I can
see (unless it's hiding in syntax-ppss)...  anybody got any ideas?

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





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

* bug#54996: Emacs hangs when editing Python code with debug-on-error set to t
  2022-04-17 20:43 ` Lars Ingebrigtsen
@ 2022-04-18  5:46   ` Eli Zaretskii
  2022-04-18  9:45     ` Lars Ingebrigtsen
  2022-04-18 10:56     ` Daniel Martín via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 2 replies; 10+ messages in thread
From: Eli Zaretskii @ 2022-04-18  5:46 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: rhstanton, 54996

> From: Lars Ingebrigtsen <larsi@gnus.org>
> Date: Sun, 17 Apr 2022 22:43:00 +0200
> Cc: 54996@debbugs.gnu.org
> 
> Richard Stanton <rhstanton@berkeley.edu> writes:
> 
> > Put the cursor right at the start of the file, on the first double
> > quote, and press ‘, the single quote character. On my machine, Emacs
> > now hangs and doesn’t respond to the keyboard. Without debug-on-error,
> > this works just fine.
> 
> I can reproduce this, too (on Debian/bookworm).

And I cannot reproduce at all.  Does the recipe involve the Python
interpreter in any way?  If so, that might be the reason why it
doesn't reproduce here.

It is also not clear to me whether I should insert ‘ or ' (I tried
both).

> But it's bizarre that the debug-on-error setting should affect this.
> I've skimmed through python.el looking for anything obvious (like a
> `condition-case-unless-debug' but can't find anything).

Calling a debugger triggers a redisplay cycle, and maybe that explains
the problem.

> The culprit must be in python-syntax-stringify -- if I just remove that,
> the hang is gone.  But there's no odd error handling there that I can
> see (unless it's hiding in syntax-ppss)...  anybody got any ideas?

Catching a backtrace on the C level might explain what happens.  But
since I cannot reproduce the problem, I cannot show such a backtrace,
either.





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

* bug#54996: Emacs hangs when editing Python code with debug-on-error set to t
  2022-04-18  5:46   ` Eli Zaretskii
@ 2022-04-18  9:45     ` Lars Ingebrigtsen
  2022-04-18 10:02       ` Eli Zaretskii
  2022-04-18 10:56     ` Daniel Martín via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 1 reply; 10+ messages in thread
From: Lars Ingebrigtsen @ 2022-04-18  9:45 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: rhstanton, 54996

Eli Zaretskii <eliz@gnu.org> writes:

> And I cannot reproduce at all.  Does the recipe involve the Python
> interpreter in any way?  If so, that might be the reason why it
> doesn't reproduce here.

Nope, just font locking.

> It is also not clear to me whether I should insert ‘ or ' (I tried
> both).

It's '

>> But it's bizarre that the debug-on-error setting should affect this.
>> I've skimmed through python.el looking for anything obvious (like a
>> `condition-case-unless-debug' but can't find anything).
>
> Calling a debugger triggers a redisplay cycle, and maybe that explains
> the problem.

Hm, yes...

>> The culprit must be in python-syntax-stringify -- if I just remove that,
>> the hang is gone.  But there's no odd error handling there that I can
>> see (unless it's hiding in syntax-ppss)...  anybody got any ideas?
>
> Catching a backtrace on the C level might explain what happens.  But
> since I cannot reproduce the problem, I cannot show such a backtrace,
> either.

Do you have any suggestions about where to put a breakpoint?  I tried to
put a breakpoint on call_debugger, but nothing...

My test case is:

gdb --args ./src/emacs -geometry -0+0 --eval "(setq debug-on-error t)" -Q  /tmp/foo.py

with foo.py containing just that triple-quoted string.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





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

* bug#54996: Emacs hangs when editing Python code with debug-on-error set to t
  2022-04-18  9:45     ` Lars Ingebrigtsen
@ 2022-04-18 10:02       ` Eli Zaretskii
  2022-04-18 11:07         ` Lars Ingebrigtsen
  0 siblings, 1 reply; 10+ messages in thread
From: Eli Zaretskii @ 2022-04-18 10:02 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: rhstanton, 54996

> From: Lars Ingebrigtsen <larsi@gnus.org>
> Cc: rhstanton@berkeley.edu,  54996@debbugs.gnu.org
> Date: Mon, 18 Apr 2022 11:45:30 +0200
> 
> > Catching a backtrace on the C level might explain what happens.  But
> > since I cannot reproduce the problem, I cannot show such a backtrace,
> > either.
> 
> Do you have any suggestions about where to put a breakpoint?  I tried to
> put a breakpoint on call_debugger, but nothing...

In Fsignal, I guess.  But it is strange that call_debugger doesn't
trigger: do you see a *Backtrace* buffer popping up?





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

* bug#54996: Emacs hangs when editing Python code with debug-on-error set to t
  2022-04-18  5:46   ` Eli Zaretskii
  2022-04-18  9:45     ` Lars Ingebrigtsen
@ 2022-04-18 10:56     ` Daniel Martín via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 0 replies; 10+ messages in thread
From: Daniel Martín via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2022-04-18 10:56 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: rhstanton, Lars Ingebrigtsen, 54996

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

Eli Zaretskii <eliz@gnu.org> writes:

>
> Catching a backtrace on the C level might explain what happens.  But
> since I cannot reproduce the problem, I cannot show such a backtrace,
> either.

I can reproduce the problem on macOS.  I sampled Emacs during the hang
and I've attached the resulting call graph here.


[-- Attachment #2: EmacsHang.txt --]
[-- Type: text/plain, Size: 432913 bytes --]

Sampling process 90302 for 3 seconds with 1 millisecond of run time between samples
Sampling completed, processing symbols...
Analysis of sampling emacs (pid 90302) every 1 millisecond
Process:         emacs [90302]
Path:            /Users/USER/*/emacs
Load Address:    0x1009e8000
Identifier:      emacs
Version:         0
Code Type:       ARM64
Platform:        macOS
Parent Process:  bash [5930]

Date/Time:       2022-04-17 11:18:03.594 +0200
Launch Time:     2022-04-17 11:15:05.410 +0200
OS Version:      macOS 12.3.1 (21E258)
Report Version:  7
Analysis Tool:   /usr/bin/sample

Physical footprint:         63.0M
Physical footprint (peak):  64.5M
----

Call graph:
    2024 Thread_2620134   DispatchQueue_1: com.apple.main-thread  (serial)
    + 2024 start  (in dyld) + 516  [0x1013d1088]
    +   2024 main  (in emacs) + 9068  [0x100ac45b8]  emacs.c:2447
    +     2024 Frecursive_edit  (in emacs) + 364  [0x100ac52c0]  keyboard.c:812
    +       2024 recursive_edit_1  (in emacs) + 372  [0x100ac5130]  keyboard.c:729
    +         2024 recursive_edit_1.cold.1  (in emacs) + 80  [0x100c2d874]  keyboard.c:1120
    +           2024 internal_catch  (in emacs) + 88  [0x100b53f3c]  eval.c:1180
    +             2024 command_loop_2  (in emacs) + 52  [0x100ac58f4]  keyboard.c:1142
    +               2024 internal_condition_case  (in emacs) + 96  [0x100b54660]  eval.c:1450
    +                 2024 command_loop_1  (in emacs) + 712  [0x100ac5bd0]  keyboard.c:1401
    +                   2024 read_key_sequence  (in emacs) + 1412  [0x100ac79bc]  keyboard.c:9932
    +                     2024 read_char  (in emacs) + 3500  [0x100aca4c4]  keyboard.c:2592
    +                       2024 redisplay_internal  (in emacs) + 4100  [0x100a16bf4]  xdisp.c:16492
    +                         2024 handle_stop  (in emacs) + 80  [0x100a37d6c]  xdisp.c:3875
    +                           2024 handle_fontified_prop  (in emacs) + 548  [0x100a38cdc]  xdisp.c:4359
    +                             2024 safe_call  (in emacs) + 40  [0x100a0f2b8]  xdisp.c:3030
    +                               2024 safe__call  (in emacs) + 332  [0x100a0f410]  xdisp.c:3015
    +                                 2024 internal_condition_case_n  (in emacs) + 120  [0x100b54828]  eval.c:1530
    +                                   2024 Ffuncall  (in emacs) + 340  [0x100b537c8]  eval.c:2873
    +                                     2024 exec_byte_code  (in emacs) + 3392  [0x100b9fd60]  bytecode.c:809
    +                                       2024 run_hook_with_args  (in emacs) + 324  [0x100b563f0]  eval.c:0
    +                                         2024 run_hook_wrapped_funcall  (in emacs) + 28  [0x100b565a0]  eval.c:2657
    +                                           2024 Ffuncall  (in emacs) + 340  [0x100b537c8]  eval.c:2873
    +                                             966 exec_byte_code  (in emacs) + 2836  [0x100b9fb34]  bytecode.c:782
    +                                             ! 551 garbage_collect  (in emacs) + 748  [0x100b2b2f4]  alloc.c:6176
    +                                             ! : 543 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | 543 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : |   543 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : |     543 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : |       543 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |         543 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : |           543 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : |             543 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : |               509 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               + 509 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   505 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   ! 505 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : |               +   !   505 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : |               +   !     505 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : |               +   !       499 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : 498 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | 488 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | + 488 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   484 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   ! 484 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   483 process_mark_stack  (in emacs) + 1276  [0x100b2ca80]  alloc.c:6803
    +                                             ! : |               +   !       : | +   !   : 483 traverse_intervals_noorder  (in emacs) + 56  [0x100bbe430]  intervals.c:244
    +                                             ! : |               +   !       : | +   !   :   477 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   | 477 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : |               +   !       : | +   !   :   |   477 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : |               +   !       : | +   !   :   |     477 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : |               +   !       : | +   !   :   |       475 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       + 475 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +   475 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +     475 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +       475 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         474 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         ! 474 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   471 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   : 471 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   466 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   | 466 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   456 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   + 456 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +   456 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +     456 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       455 process_mark_stack  (in emacs) + 1276  [0x100b2ca80]  alloc.c:6803
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       ! 455 traverse_intervals_noorder  (in emacs) + 56  [0x100bbe430]  intervals.c:244
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   440 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 440 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   436 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   | 436 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |   436 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |     436 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       413 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 408 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + ! 408 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !   408 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     385 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 385 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   373 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 372 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + 370 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! 338 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 338 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   336 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   | 336 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   312 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 312 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +   312 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     286 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 286 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   93 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 93 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   91 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | 84 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + 83 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + ! 83 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   79 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : 41 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : | 17 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : | 9 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : | 7 process_mark_stack  (in emacs) + 444,420  [0x100b2c740,0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : | 6 process_mark_stack  (in emacs) + 964  [0x100b2c948]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : | 2 process_mark_stack  (in emacs) + 36  [0x100b2c5a8]  alloc.c:6725
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : 21 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : | 14 pdumper_cold_object_p_impl  (in emacs) + 12  [0x100b33dfc]  pdumper.c:5142
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : | 7 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : 9 mark_char_table  (in emacs) + 256,244  [0x100b2f1d0,0x100b2f1c4]  alloc.c:6470
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : 3 mark_char_table  (in emacs) + 192,304  [0x100b2f190,0x100b2f200]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : 2 mark_char_table  (in emacs) + 216  [0x100b2f1a8]  alloc.c:6465
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : 2 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : 1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   3 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : 2 mark_char_table  (in emacs) + 232,332  [0x100b2f1b8,0x100b2f21c]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   : 1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + !   1 mark_char_table  (in emacs) + 280  [0x100b2f1e8]  alloc.c:6472
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | + 1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | +   1 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   | 7 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   4 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   ! 2 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   ! : 2 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   ! :   2 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   ! :     2 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   ! :       1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   ! :       1 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   ! 2 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   !   2 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   !     2 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   !       2 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   !         2 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   !           1 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   !           | 1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   !           1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   2 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   ! 2 process_mark_stack  (in emacs) + 204,208  [0x100b2c650,0x100b2c654]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   |   1 mark_char_table  (in emacs) + 192  [0x100b2f190]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :     2 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   70 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 37 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | 37 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   36 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + 28 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! 8 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 4 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 2 process_mark_stack  (in emacs) + 420,444  [0x100b2c728,0x100b2c740]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! 6 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 4 pdumper_cold_object_p_impl  (in emacs) + 12  [0x100b33dfc]  pdumper.c:5142
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 2 process_mark_stack  (in emacs) + 1120  [0x100b2c9e4]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! 5 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 3 process_mark_stack  (in emacs) + 1132  [0x100b2c9f0]  alloc.c:6820
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 2 process_mark_stack  (in emacs) + 1280  [0x100b2ca84]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! 4 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 2 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! : 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! 2 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! 1 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! 1 mark_char_table  (in emacs) + 240  [0x100b2f1c0]  alloc.c:6470
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! 1 process_mark_stack  (in emacs) + 3404  [0x100b2d2d0]  alloc.c:7013
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + 6 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! 4 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + ! 2 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   + 2 mark_char_table  (in emacs) + 332,368  [0x100b2f21c,0x100b2f240]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 33 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   33 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :     33 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       32 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       + 32 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   30 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! 15 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 4 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 3 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 2 process_mark_stack  (in emacs) + 956  [0x100b2c940]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 2 process_mark_stack  (in emacs) + 248,284  [0x100b2c67c,0x100b2c6a0]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6978
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! 6 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 5 pdumper_cold_object_p_impl  (in emacs) + 12,20  [0x100b33dfc,0x100b33e04]  pdumper.c:5142
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 1 process_mark_stack  (in emacs) + 1120  [0x100b2c9e4]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! 3 mark_char_table  (in emacs) + 240  [0x100b2f1c0]  alloc.c:6470
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! 3 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 2 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! : 1 process_mark_stack  (in emacs) + 240  [0x100b2c674]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! 1 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! 1 mark_char_table  (in emacs) + 420  [0x100b2f274]  alloc.c:6478
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   ! 1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   !   1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +   2 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       +     2 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :       1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :         1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :           1 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   36 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 6 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 6 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 4 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 process_mark_stack  (in emacs) + 516,528,...  [0x100b2c788,0x100b2c794,...]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 284  [0x100b2c6a0]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 956  [0x100b2c940]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   26 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 5 process_mark_stack  (in emacs) + 204,216,...  [0x100b2c650,0x100b2c65c,...]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 5 process_mark_stack  (in emacs) + 500,532,...  [0x100b2c778,0x100b2c798,...]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 process_mark_stack  (in emacs) + 444,420  [0x100b2c740,0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 124,412  [0x100b2c600,0x100b2c720]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 240  [0x100b2c674]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 460  [0x100b2c750]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   13 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 pdumper_marked_p_impl  (in emacs) + 44,56  [0x100b33f38,0x100b33f44]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 process_mark_stack  (in emacs) + 300,356  [0x100b2c6b0,0x100b2c6e8]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   12 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 3 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 500,532  [0x100b2c778,0x100b2c798]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   11 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 10 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | 3 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | + 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | + 1 process_mark_stack  (in emacs) + 632  [0x100b2c7fc]  alloc.c:6935
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | 2 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | + 1 process_mark_stack  (in emacs) + 1068  [0x100b2c9b0]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | + 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | 2 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | + 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | + 1 process_mark_stack  (in emacs) + 632  [0x100b2c7fc]  alloc.c:6935
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | 2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | + 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | + 1 process_mark_stack  (in emacs) + 532  [0x100b2c798]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : | 1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : |   1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   :   1 mark_localized_symbol  (in emacs) + 20  [0x100b2f3f4]  alloc.c:6553
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   9 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 4 process_mark_stack  (in emacs) + 500,528  [0x100b2c778,0x100b2c794]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   7 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 4 process_mark_stack  (in emacs) + 500,516  [0x100b2c778,0x100b2c788]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6803
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   3 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 2 process_mark_stack  (in emacs) + 124,148  [0x100b2c600,0x100b2c618]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 532  [0x100b2c798]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   3 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 632  [0x100b2c7fc]  alloc.c:6935
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 748  [0x100b2c870]  alloc.c:6939
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 844  [0x100b2c8d0]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   2 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 1132  [0x100b2c9f0]  alloc.c:6820
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   : 1 process_mark_stack  (in emacs) + 1292  [0x100b2ca90]  alloc.c:6916
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   1 process_mark_stack  (in emacs) + 1276  [0x100b2ca80]  alloc.c:6803
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !     1 traverse_intervals_noorder  (in emacs) + 56  [0x100bbe430]  intervals.c:244
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !       1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !         1 pdumper_marked_p_impl  (in emacs) + 56  [0x100b33f44]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     10 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 3 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 2 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     4 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 2 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     3 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 2 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     2 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 1132  [0x100b2c9f0]  alloc.c:6820
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     2 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 pdumper_marked_p_impl  (in emacs) + 56  [0x100b33f44]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 1160  [0x100b2ca0c]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 pdumper_set_marked_impl  (in emacs) + 64  [0x100b33f88]  pdumper.c:5186
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     1 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !   1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !     1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     !       1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     ! 1 process_mark_stack  (in emacs) + 808  [0x100b2c8ac]  alloc.c:6959
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +     1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   +       1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   6 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 372  [0x100b2c6f8]  alloc.c:6980
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   5 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 148  [0x100b2c618]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 476  [0x100b2c760]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   5 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 256  [0x100b2c684]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   3 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   3 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   + 1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |   2 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |     1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   |     1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   | 1 process_mark_stack  (in emacs) + 148  [0x100b2c618]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :   1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! :     1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! 9 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 2 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 136  [0x100b2c60c]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 220  [0x100b2c660]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 1068  [0x100b2c9b0]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! 9 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 2 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 2 process_mark_stack  (in emacs) + 500,532  [0x100b2c778,0x100b2c798]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 2 process_mark_stack  (in emacs) + 256  [0x100b2c684]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! 4 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 352  [0x100b2c6e4]  alloc.c:6978
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! 4 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 2 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! 3 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 284  [0x100b2c6a0]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! 1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! 1 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! : 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! 1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + !   1 process_mark_stack  (in emacs) + 736  [0x100b2c864]  alloc.c:6949
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + 1 mark_char_table  (in emacs) + 372  [0x100b2f244]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + ! 1 mark_char_table  (in emacs) + 352  [0x100b2f230]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | + 1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | +   1 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 1 process_mark_stack  (in emacs) + 352  [0x100b2c6e4]  alloc.c:6978
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   7 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 3 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   2 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 1 process_mark_stack  (in emacs) + 168  [0x100b2c62c]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 1 process_mark_stack  (in emacs) + 1108  [0x100b2c9d8]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   1 process_mark_stack  (in emacs) + 1276  [0x100b2ca80]  alloc.c:6803
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   | 1 traverse_intervals_noorder  (in emacs) + 56  [0x100bbe430]  intervals.c:244
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   |   1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   |     1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :   1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     :     1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     7 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 2 process_mark_stack  (in emacs) + 544,576  [0x100b2c7a4,0x100b2c7c4]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 460  [0x100b2c750]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     5 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 2 process_mark_stack  (in emacs) + 500,532  [0x100b2c778,0x100b2c798]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 284  [0x100b2c6a0]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 372  [0x100b2c6f8]  alloc.c:6980
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     3 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6803
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     3 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 284  [0x100b2c6a0]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     2 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     2 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     : 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !     1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + !       1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 5 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +   2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +   : 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +   : 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +   1 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +   : 1 process_mark_stack  (in emacs) + 512  [0x100b2c784]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +   1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +   : 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +   1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +     1 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       6 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 2 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 2 process_mark_stack  (in emacs) + 532,540  [0x100b2c798,0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       4 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 256  [0x100b2c684]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       3 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       3 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 3 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +   3 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +     3 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +       3 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +         3 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +           3 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +             2 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +             ! 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +             ! 1 process_mark_stack  (in emacs) + 284  [0x100b2c6a0]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +             1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       +               1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       2 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 132  [0x100b2c608]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 pdumper_set_marked_impl  (in emacs) + 36  [0x100b33f6c]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       1 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       + 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |       1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   |         1 process_mark_stack  (in emacs) + 792  [0x100b2c89c]  alloc.c:6959
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   | 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :   1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   :     1 pdumper_set_marked_impl  (in emacs) + 32  [0x100b33f68]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   6 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 3 process_mark_stack  (in emacs) + 516,500  [0x100b2c788,0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 1 process_mark_stack  (in emacs) + 228  [0x100b2c668]  alloc.c:6794
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   4 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 3 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   2 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   : 1 process_mark_stack  (in emacs) + 168  [0x100b2c62c]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !   1 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       !     1 process_mark_stack  (in emacs) + 240  [0x100b2c674]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +       1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   +         1 process_mark_stack  (in emacs) + 284  [0x100b2c6a0]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   4 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   + 2 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   + 1 process_mark_stack  (in emacs) + 132  [0x100b2c608]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   + 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   3 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   + 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   + 1 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   + 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   + 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |   1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   |     1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   3 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   | 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   | 1 pdumper_set_marked_impl  (in emacs) + 64  [0x100b33f88]  pdumper.c:5186
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   | 1 process_mark_stack  (in emacs) + 460  [0x100b2c750]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   | 1 process_mark_stack  (in emacs) + 240  [0x100b2c674]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :   1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | +   !   :   |       +         !   :     1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               +   !       : | +   !   :   |       +         !   : 1 process_mark_stack  (in emacs) + 1108  [0x100b2c9d8]  alloc.c:6816
    +                                             ! : |               +   !       : | +   !   :   |       +         !   1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       +         !   : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   |       +         !   1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +         !     1 process_mark_stack  (in emacs) + 412  [0x100b2c720]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   |       +         1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |       +           1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               +   !       : | +   !   :   |       1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :   |       + 1 process_mark_stack  (in emacs) + 352  [0x100b2c6e4]  alloc.c:6978
    +                                             ! : |               +   !       : | +   !   :   |       1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   |         1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : |               +   !       : | +   !   :   2 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | +   !   :   | 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   | 1 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : |               +   !       : | +   !   :   1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | +   !   :   | 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   !   :   1 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |               +   !       : | +   !   :   | 1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |   1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |     1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |               +   !       : | +   !   :   |       1 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : |               +   !       : | +   !   :   |         1 mark_char_table  (in emacs) + 216  [0x100b2f1a8]  alloc.c:6465
    +                                             ! : |               +   !       : | +   !   :   1 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : |               +   !       : | +   !   :   | 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   :   1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   !   :     1 process_mark_stack  (in emacs) + 412  [0x100b2c720]  alloc.c:6729
    +                                             ! : |               +   !       : | +   !   1 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : |               +   !       : | +   !     1 process_mark_stack  (in emacs) + 284  [0x100b2c6a0]  alloc.c:6972
    +                                             ! : |               +   !       : | +   1 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : |               +   !       : | +   ! 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | +   1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | +   ! 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | +   1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : |               +   !       : | +   ! 1 process_mark_stack  (in emacs) + 704  [0x100b2c844]  alloc.c:0
    +                                             ! : |               +   !       : | +   1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : | +     1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   !       : | 2 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               +   !       : | + 2 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | 2 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : | + 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : |               +   !       : | + 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   !       : | 2 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !       : | + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   !       : | + 1 process_mark_stack  (in emacs) + 168  [0x100b2c62c]  alloc.c:6729
    +                                             ! : |               +   !       : | 2 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : | + 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               +   !       : | + 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : |               +   !       : | 1 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : |               +   !       : | + 1 process_mark_stack  (in emacs) + 1416  [0x100b2cb0c]  alloc.c:6853
    +                                             ! : |               +   !       : | 1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : |               +   !       : |   1 process_mark_stack  (in emacs) + 748  [0x100b2c870]  alloc.c:6939
    +                                             ! : |               +   !       : 1 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : |               +   !       :   1 process_mark_stack  (in emacs) + 284  [0x100b2c6a0]  alloc.c:6972
    +                                             ! : |               +   !       2 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               +   !       : 2 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : |               +   !       2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +   !       : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               +   !       : 1 process_mark_stack  (in emacs) + 132  [0x100b2c608]  alloc.c:6729
    +                                             ! : |               +   !       1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   !       : 1 process_mark_stack  (in emacs) + 352  [0x100b2c6e4]  alloc.c:6978
    +                                             ! : |               +   !       1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   !         1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               +   1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +   ! 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : |               +   1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : |               +   ! 1 process_mark_stack  (in emacs) + 792  [0x100b2c89c]  alloc.c:6959
    +                                             ! : |               +   1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : |               +   ! 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               +   1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               +     1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               12 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               + 3 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : |               + 2 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |               + 2 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               + 2 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 168  [0x100b2c62c]  alloc.c:6729
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : |               11 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |               + 3 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |               + 3 process_mark_stack  (in emacs) + 500,532  [0x100b2c778,0x100b2c798]  alloc.c:6928
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : |               5 process_mark_stack  (in emacs) + 1788  [0x100b2cc80]  alloc.c:6846
    +                                             ! : |               + 3 process_mark_stack  (in emacs) + 1592  [0x100b2cbbc]  alloc.c:6842
    +                                             ! : |               + ! 2 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               + ! : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : |               + ! : 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               + ! 1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               + !   1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 1600  [0x100b2cbc4]  alloc.c:6842
    +                                             ! : |               + ! 1 mark_face_cache  (in emacs) + 112  [0x100b2f604]  alloc.c:6542
    +                                             ! : |               + !   1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : |               + !     1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 2080  [0x100b2cda4]  alloc.c:6846
    +                                             ! : |               3 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               + 2 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : |               1 process_mark_stack  (in emacs) + 2068  [0x100b2cd98]  alloc.c:6846
    +                                             ! : |               + 1 process_mark_stack  (in emacs) + 1276  [0x100b2ca80]  alloc.c:6803
    +                                             ! : |               +   1 traverse_intervals_noorder  (in emacs) + 56  [0x100bbe430]  intervals.c:244
    +                                             ! : |               +     1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : |               +       1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |               1 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |                 1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |                   1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |                     1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |                       1 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : |                         1 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6463
    +                                             ! : 2 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | 1 process_mark_stack  (in emacs) + 1160  [0x100b2ca0c]  alloc.c:0
    +                                             ! : | 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : 2 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | 1 process_mark_stack  (in emacs) + 528  [0x100b2c794]  alloc.c:6928
    +                                             ! : 2 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : | 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : 1 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : | 1 process_mark_stack  (in emacs) + 1120  [0x100b2c9e4]  alloc.c:6816
    +                                             ! : 1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! :   1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! 360 garbage_collect  (in emacs) + 1052  [0x100b2b424]  alloc.c:6176
    +                                             ! : 170 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | 96 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + 95 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! 92 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! : 71 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! : | 31 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! : | + 10 process_mark_stack  (in emacs) + 124,108,...  [0x100b2c600,0x100b2c5f0,...]  alloc.c:6729
    +                                             ! : | + ! : | + 7 process_mark_stack  (in emacs) + 204,212,...  [0x100b2c650,0x100b2c658,...]  alloc.c:6732
    +                                             ! : | + ! : | + 6 process_mark_stack  (in emacs) + 420,444  [0x100b2c728,0x100b2c740]  alloc.c:0
    +                                             ! : | + ! : | + 3 process_mark_stack  (in emacs) + 956,960  [0x100b2c940,0x100b2c944]  alloc.c:6816
    +                                             ! : | + ! : | + 2 process_mark_stack  (in emacs) + 1136  [0x100b2c9f4]  alloc.c:6820
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 36  [0x100b2c5a8]  alloc.c:6725
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 40  [0x100b2c5ac]  alloc.c:6727
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : | + ! : | 10 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | + ! : | + 3 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | + ! : | + 2 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! : | + 2 process_mark_stack  (in emacs) + 136,148  [0x100b2c60c,0x100b2c618]  alloc.c:6729
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 1456  [0x100b2cb34]  alloc.c:6917
    +                                             ! : | + ! : | 9 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! : | + 6 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 1448  [0x100b2cb2c]  alloc.c:6916
    +                                             ! : | + ! : | 5 mark_char_table  (in emacs) + 256,240  [0x100b2f1d0,0x100b2f1c0]  alloc.c:6470
    +                                             ! : | + ! : | 4 mark_char_table  (in emacs) + 216  [0x100b2f1a8]  alloc.c:6465
    +                                             ! : | + ! : | 4 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : | + ! : | + 3 pdumper_cold_object_p_impl  (in emacs) + 12  [0x100b33dfc]  pdumper.c:5142
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 1120  [0x100b2c9e4]  alloc.c:6816
    +                                             ! : | + ! : | 2 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 972  [0x100b2c950]  alloc.c:6816
    +                                             ! : | + ! : | + 1 process_mark_stack  (in emacs) + 264  [0x100b2c68c]  alloc.c:6972
    +                                             ! : | + ! : | 1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : | + ! : | 1 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : | + ! : | 1 mark_char_table  (in emacs) + 192  [0x100b2f190]  alloc.c:6476
    +                                             ! : | + ! : | 1 process_mark_stack  (in emacs) + 20  [0x100b2c598]  alloc.c:6717
    +                                             ! : | + ! : | 1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! : | + 1 pdumper_marked_p_impl  (in emacs) + 48  [0x100b33f3c]  pdumper.c:5172
    +                                             ! : | + ! : | 1 process_mark_stack  (in emacs) + 3404  [0x100b2d2d0]  alloc.c:7013
    +                                             ! : | + ! : 11 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : | + ! : | 6 mark_char_table  (in emacs) + 232,332  [0x100b2f1b8,0x100b2f21c]  alloc.c:6468
    +                                             ! : | + ! : | 5 mark_char_table  (in emacs) + 204,104  [0x100b2f19c,0x100b2f138]  alloc.c:6463
    +                                             ! : | + ! : 4 mark_char_table  (in emacs) + 372  [0x100b2f244]  alloc.c:6468
    +                                             ! : | + ! : | 2 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : | + ! : | 2 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! : 3 mark_char_table  (in emacs) + 232,332  [0x100b2f1b8,0x100b2f21c]  alloc.c:6468
    +                                             ! : | + ! : 2 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! : | 1 mark_char_table  (in emacs) + 60  [0x100b2f10c]  alloc.c:6462
    +                                             ! : | + ! : | 1 mark_char_table  (in emacs) + 344  [0x100b2f228]  alloc.c:6468
    +                                             ! : | + ! : 1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : | + ! 1 mark_char_table  (in emacs) + 388  [0x100b2f254]  alloc.c:6472
    +                                             ! : | + ! : 1 mark_char_table  (in emacs) + 392  [0x100b2f258]  alloc.c:6472
    +                                             ! : | + ! 1 mark_char_table  (in emacs) + 400  [0x100b2f260]  alloc.c:6472
    +                                             ! : | + ! : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! 1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + !   1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + !     1 process_mark_stack  (in emacs) + 212  [0x100b2c658]  alloc.c:6732
    +                                             ! : | + 1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : | 74 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |   73 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : |   ! 73 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |   !   65 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |   !   : 65 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : |   !   :   62 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |   !   :   | 29 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |   !   :   | + 7 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : |   !   :   | + 7 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : |   !   :   | + 6 process_mark_stack  (in emacs) + 240,284  [0x100b2c674,0x100b2c6a0]  alloc.c:6972
    +                                             ! : |   !   :   | + 4 process_mark_stack  (in emacs) + 956,1108  [0x100b2c940,0x100b2c9d8]  alloc.c:6816
    +                                             ! : |   !   :   | + 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : |   !   :   | + 1 process_mark_stack  (in emacs) + 412  [0x100b2c720]  alloc.c:6729
    +                                             ! : |   !   :   | + 1 process_mark_stack  (in emacs) + 200  [0x100b2c64c]  alloc.c:6731
    +                                             ! : |   !   :   | + 1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : |   !   :   | + 1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6978
    +                                             ! : |   !   :   | 13 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : |   !   :   | + 5 process_mark_stack  (in emacs) + 204,212,...  [0x100b2c650,0x100b2c658,...]  alloc.c:6732
    +                                             ! : |   !   :   | + 4 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : |   !   :   | + 3 pdumper_marked_p_impl  (in emacs) + 44,56  [0x100b33f38,0x100b33f44]  pdumper.c:5172
    +                                             ! : |   !   :   | + 1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : |   !   :   | 6 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : |   !   :   | + 4 pdumper_cold_object_p_impl  (in emacs) + 12  [0x100b33dfc]  pdumper.c:5142
    +                                             ! : |   !   :   | + 2 process_mark_stack  (in emacs) + 1116,1120  [0x100b2c9e0,0x100b2c9e4]  alloc.c:6816
    +                                             ! : |   !   :   | 6 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |   !   :   | + 3 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : |   !   :   | + 2 pdumper_marked_p_impl  (in emacs) + 44,48  [0x100b33f38,0x100b33f3c]  pdumper.c:5172
    +                                             ! : |   !   :   | + 1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |   !   :   | 3 mark_char_table  (in emacs) + 332  [0x100b2f21c]  alloc.c:6468
    +                                             ! : |   !   :   | 2 mark_char_table  (in emacs) + 240  [0x100b2f1c0]  alloc.c:6470
    +                                             ! : |   !   :   | 2 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |   !   :   | + 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : |   !   :   | + 1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : |   !   :   | 1 mark_char_table  (in emacs) + 192  [0x100b2f190]  alloc.c:6476
    +                                             ! : |   !   :   2 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : |   !   :   | 1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : |   !   :   | 1 mark_char_table  (in emacs) + 240  [0x100b2f1c0]  alloc.c:6470
    +                                             ! : |   !   :   1 mark_char_table  (in emacs) + 332  [0x100b2f21c]  alloc.c:6468
    +                                             ! : |   !   8 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |   !     3 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : |   !     | 3 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : |   !     3 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : |   !     | 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : |   !     | 1 process_mark_stack  (in emacs) + 296  [0x100b2c6ac]  alloc.c:6972
    +                                             ! : |   !     | 1 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : |   !     2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : |   !       1 process_mark_stack  (in emacs) + 412  [0x100b2c720]  alloc.c:6729
    +                                             ! : |   !       1 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : |   1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : |     1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : 65 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | 17 process_mark_stack  (in emacs) + 516,500,...  [0x100b2c788,0x100b2c778,...]  alloc.c:6928
    +                                             ! : | 11 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : | 10 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | 8 process_mark_stack  (in emacs) + 444,420  [0x100b2c740,0x100b2c728]  alloc.c:0
    +                                             ! : | 4 process_mark_stack  (in emacs) + 124,144  [0x100b2c600,0x100b2c614]  alloc.c:6729
    +                                             ! : | 4 process_mark_stack  (in emacs) + 204,216  [0x100b2c650,0x100b2c65c]  alloc.c:6732
    +                                             ! : | 4 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | 2 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | 2 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : | 1 process_mark_stack  (in emacs) + 196  [0x100b2c648]  alloc.c:6731
    +                                             ! : | 1 process_mark_stack  (in emacs) + 632  [0x100b2c7fc]  alloc.c:6935
    +                                             ! : | 1 process_mark_stack  (in emacs) + 284  [0x100b2c6a0]  alloc.c:6972
    +                                             ! : 48 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | 9 process_mark_stack  (in emacs) + 208,212,...  [0x100b2c654,0x100b2c658,...]  alloc.c:6732
    +                                             ! : | 8 process_mark_stack  (in emacs) + 420,444  [0x100b2c728,0x100b2c740]  alloc.c:0
    +                                             ! : | 8 process_mark_stack  (in emacs) + 500,532,...  [0x100b2c778,0x100b2c798,...]  alloc.c:6928
    +                                             ! : | 6 process_mark_stack  (in emacs) + 124,412,...  [0x100b2c600,0x100b2c720,...]  alloc.c:6729
    +                                             ! : | 5 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | 4 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | 2 process_mark_stack  (in emacs) + 240  [0x100b2c674]  alloc.c:6972
    +                                             ! : | 2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6978
    +                                             ! : | 1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : | 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : | 1 process_mark_stack  (in emacs) + 956  [0x100b2c940]  alloc.c:6816
    +                                             ! : | 1 process_mark_stack  (in emacs) + 372  [0x100b2c6f8]  alloc.c:6980
    +                                             ! : 21 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | 8 pdumper_marked_p_impl  (in emacs) + 44,56  [0x100b33f38,0x100b33f44]  pdumper.c:5172
    +                                             ! : | 4 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | 4 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : | 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | 1 process_mark_stack  (in emacs) + 132  [0x100b2c608]  alloc.c:6729
    +                                             ! : | 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | 1 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : 19 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | 5 process_mark_stack  (in emacs) + 124,136  [0x100b2c600,0x100b2c60c]  alloc.c:6729
    +                                             ! : | 3 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | 3 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | 3 process_mark_stack  (in emacs) + 204,216  [0x100b2c650,0x100b2c65c]  alloc.c:6732
    +                                             ! : | 2 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : | 2 process_mark_stack  (in emacs) + 500,532  [0x100b2c778,0x100b2c798]  alloc.c:6928
    +                                             ! : | 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : 14 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | 6 process_mark_stack  (in emacs) + 500,516  [0x100b2c778,0x100b2c788]  alloc.c:6928
    +                                             ! : | 3 process_mark_stack  (in emacs) + 96,100  [0x100b2c5e4,0x100b2c5e8]  alloc.c:6727
    +                                             ! : | 2 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : | 2 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : 7 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | 2 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | 2 process_mark_stack  (in emacs) + 1132  [0x100b2c9f0]  alloc.c:6820
    +                                             ! : | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : | 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : 5 garbage_collect  (in emacs) + 1052  [0x100b2b424]  alloc.c:6176
    +                                             ! : | 2 process_mark_stack  (in emacs) + 500,532  [0x100b2c778,0x100b2c798]  alloc.c:6928
    +                                             ! : | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : | 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : 4 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | 1 process_mark_stack  (in emacs) + 216  [0x100b2c65c]  alloc.c:6732
    +                                             ! : | 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : | 1 process_mark_stack  (in emacs) + 240  [0x100b2c674]  alloc.c:6972
    +                                             ! : 3 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : | 2 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | 1 process_mark_stack  (in emacs) + 716  [0x100b2c850]  alloc.c:6944
    +                                             ! : 2 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : | 1 process_mark_stack  (in emacs) + 132  [0x100b2c608]  alloc.c:6729
    +                                             ! : | 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : 2 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! :   1 pdumper_cold_object_p_impl  (in emacs) + 12  [0x100b33dfc]  pdumper.c:5142
    +                                             ! :   1 process_mark_stack  (in emacs) + 1120  [0x100b2c9e4]  alloc.c:6816
    +                                             ! 20 garbage_collect  (in emacs) + 2536  [0x100b2b9f0]  alloc.c:6235
    +                                             ! : 15 sweep_conses  (in emacs) + 624  [0x100b2ffe0]  alloc.c:7165
    +                                             ! : | 6 sweep_conses  (in emacs) + 316  [0x100b2feac]  alloc.c:7142
    +                                             ! : | 3 sweep_conses  (in emacs) + 260  [0x100b2fe74]  alloc.c:7149
    +                                             ! : | 2 sweep_conses  (in emacs) + 300  [0x100b2fe9c]  alloc.c:7140
    +                                             ! : | 1 rpl_free  (in emacs) + 32  [0x100c1b0c8]  free.c:48
    +                                             ! : | + 1 free_small  (in libsystem_malloc.dylib) + 884  [0x196cc8090]
    +                                             ! : | +   1 free_small  (in libsystem_malloc.dylib) + 920  [0x196cc80b4]
    +                                             ! : | 1 sweep_conses  (in emacs) + 176  [0x100b2fe20]  alloc.c:7117
    +                                             ! : | 1 sweep_conses  (in emacs) + 216  [0x100b2fe48]  alloc.c:7131
    +                                             ! : | 1 sweep_conses  (in emacs) + 268  [0x100b2fe7c]  alloc.c:7150
    +                                             ! : 5 sweep_conses  (in emacs) + 508  [0x100b2ff6c]  alloc.c:7165
    +                                             ! :   4 sweep_conses  (in emacs) + 272,288  [0x100b2fe80,0x100b2fe90]  alloc.c:7137
    +                                             ! :   1 sweep_conses  (in emacs) + 468  [0x100b2ff44]  alloc.c:7165
    +                                             ! 14 garbage_collect  (in emacs) + 2556  [0x100b2ba04]  alloc.c:6235
    +                                             ! : 14 sweep_vectors  (in emacs) + 1108  [0x100b30bb8]  alloc.c:3264
    +                                             ! :   6 sweep_vectors  (in emacs) + 840,848  [0x100b30aac,0x100b30ab4]  alloc.c:3222
    +                                             ! :   2 sweep_vectors  (in emacs) + 268,288  [0x100b30870,0x100b30884]  alloc.c:0
    +                                             ! :   2 sweep_vectors  (in emacs) + 320,328  [0x100b308a4,0x100b308ac]  alloc.c:3236
    +                                             ! :   2 sweep_vectors  (in emacs) + 300,760  [0x100b30890,0x100b30a5c]  alloc.c:3241
    +                                             ! :   1 rpl_free  (in emacs) + 32  [0x100c1b0c8]  free.c:48
    +                                             ! :   | 1 free  (in libsystem_malloc.dylib) + 148  [0x196cc4c08]
    +                                             ! :   |   1 free  (in libsystem_malloc.dylib) + 376  [0x196cc4cec]
    +                                             ! :   1 sweep_vectors  (in emacs) + 808  [0x100b30a8c]  alloc.c:3220
    +                                             ! 9 garbage_collect  (in emacs) + 2532  [0x100b2b9ec]  alloc.c:6235
    +                                             ! : 9 sweep_strings  (in emacs) + 200  [0x100b2f9c8]  alloc.c:2009
    +                                             ! :   4 sweep_strings  (in emacs) + 820,808,...  [0x100b2fc34,0x100b2fc28,...]  alloc.c:2069
    +                                             ! :   2 sweep_strings  (in emacs) + 136  [0x100b2f988]  alloc.c:2003
    +                                             ! :   1 sweep_strings  (in emacs) + 128  [0x100b2f980]  alloc.c:2000
    +                                             ! :   1 sweep_strings  (in emacs) + 228  [0x100b2f9e4]  alloc.c:2012
    +                                             ! :   1 sweep_strings  (in emacs) + 548  [0x100b2fb24]  alloc.c:2068
    +                                             ! 7 garbage_collect  (in emacs) + 952  [0x100b2b3c0]  alloc.c:6176
    +                                             ! : 2 garbage_collect  (in emacs) + 952  [0x100b2b3c0]  alloc.c:6176
    +                                             ! : | 2 process_mark_stack  (in emacs) + 444,452  [0x100b2c740,0x100b2c748]  alloc.c:0
    +                                             ! : 2 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : 2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : 1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! :   1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! 2 garbage_collect  (in emacs) + 868  [0x100b2b36c]  alloc.c:6176
    +                                             ! : 2 garbage_collect  (in emacs) + 868  [0x100b2b36c]  alloc.c:6176
    +                                             ! :   1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! :   1 process_mark_stack  (in emacs) + 532  [0x100b2c798]  alloc.c:6928
    +                                             ! 1 garbage_collect  (in emacs) + 1584  [0x100b2b638]  alloc.c:6182
    +                                             ! : 1 mark_threads_callback  (in emacs) + 88  [0x100bd189c]  thread.c:691
    +                                             ! :   1 mark_c_stack  (in emacs) + 72  [0x100b29734]  alloc.c:5145
    +                                             ! :     1 mark_c_stack  (in emacs) + 72  [0x100b29734]  alloc.c:5145
    +                                             ! :       1 mark_maybe_pointer  (in emacs) + 60  [0x100b29348]  alloc.c:4823
    +                                             ! 1 garbage_collect  (in emacs) + 2548  [0x100b2b9fc]  alloc.c:6235
    +                                             ! : 1 garbage_collect  (in emacs) + 2548  [0x100b2b9fc]  alloc.c:6235
    +                                             ! :   1 sweep_symbols  (in emacs) + 284  [0x100b3051c]  alloc.c:7317
    +                                             ! 1 garbage_collect  (in emacs) + 2560  [0x100b2ba08]  alloc.c:6235
    +                                             !   1 pdumper_clear_marks_impl  (in emacs) + 44  [0x100b33fb8]  pdumper.c:5194
    +                                             !     1 __bzero  (in libsystem_platform.dylib) + 68  [0x196ecce04]
    +                                             426 exec_byte_code  (in emacs) + 3512  [0x100b9fdd8]  bytecode.c:838
    +                                             ! 407 unbind_to  (in emacs) + 116  [0x100b50c48]  eval.c:3639
    +                                             ! : 406 bcall0  (in emacs) + 28  [0x100ba31b4]  bytecode.c:335
    +                                             ! : | 380 Ffuncall  (in emacs) + 276  [0x100b53788]  eval.c:2868
    +                                             ! : | + 214 garbage_collect  (in emacs) + 748  [0x100b2b2f4]  alloc.c:6176
    +                                             ! : | + ! 206 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! : 206 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : | + ! :   206 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : | + ! :     206 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : | + ! :       206 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :         206 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : | + ! :           206 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : | + ! :             206 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : | + ! :               192 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               | 192 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   191 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   + 191 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : | + ! :               |   +   191 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : | + ! :               |   +     191 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : | + ! :               |   +       190 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       ! 190 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   188 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   : 188 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :   188 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :     188 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :       188 process_mark_stack  (in emacs) + 1276  [0x100b2ca80]  alloc.c:6803
    +                                             ! : | + ! :               |   +       !   :         188 traverse_intervals_noorder  (in emacs) + 56  [0x100bbe430]  intervals.c:244
    +                                             ! : | + ! :               |   +       !   :           183 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           | 183 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : | + ! :               |   +       !   :           |   183 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : | + ! :               |   +       !   :           |     183 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : | + ! :               |   +       !   :           |       183 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |         183 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |           183 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |             183 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |               183 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                 183 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                   183 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                     183 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                       183 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                         183 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                           183 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                             183 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                               183 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                                 183 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                                   183 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                                     183 process_mark_stack  (in emacs) + 1276  [0x100b2ca80]  alloc.c:6803
    +                                             ! : | + ! :               |   +       !   :           |                                       183 traverse_intervals_noorder  (in emacs) + 56  [0x100bbe430]  intervals.c:244
    +                                             ! : | + ! :               |   +       !   :           |                                         180 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                                         + 180 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                                         +   178 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                                         +   ! 178 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !   178 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     177 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : 171 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | 169 mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | + 169 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +   169 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     157 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 157 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   155 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   : 155 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :   155 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     131 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 131 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |   131 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |     131 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       119 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       + 119 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +   119 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     107 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 107 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   38 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 38 mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :   38 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     34 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | 32 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | + 32 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   30 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! 15 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! : 4 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! : 3 process_mark_stack  (in emacs) + 444,420  [0x100b2c740,0x100b2c728]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! : 3 process_mark_stack  (in emacs) + 36  [0x100b2c5a8]  alloc.c:6725
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! : 3 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! : 2 process_mark_stack  (in emacs) + 964  [0x100b2c948]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! 7 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! : 4 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! : 3 pdumper_cold_object_p_impl  (in emacs) + 12  [0x100b33dfc]  pdumper.c:5142
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! 2 mark_char_table  (in emacs) + 216  [0x100b2f1a8]  alloc.c:6465
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! 2 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! 1 mark_char_table  (in emacs) + 256  [0x100b2f1d0]  alloc.c:6470
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! 1 mark_char_table  (in emacs) + 304  [0x100b2f200]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! 1 process_mark_stack  (in emacs) + 20  [0x100b2c598]  alloc.c:6717
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! 1 process_mark_stack  (in emacs) + 3404  [0x100b2d2d0]  alloc.c:7013
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   1 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   ! 1 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | +   1 mark_char_table  (in emacs) + 420  [0x100b2f274]  alloc.c:6478
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | 1 mark_char_table  (in emacs) + 240  [0x100b2f1c0]  alloc.c:6470
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     | 1 mark_char_table  (in emacs) + 400  [0x100b2f260]  alloc.c:6472
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     |   1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     4 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       4 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :         3 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :         + 3 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :         +   2 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :         +   ! 2 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :         +   !   1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :         +   !   1 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :         +   1 mark_char_table  (in emacs) + 400  [0x100b2f260]  alloc.c:6472
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :         +     1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :         1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :           1 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :             1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :               1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :                 1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :                   1 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :                     1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   24 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 13 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | 13 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |   13 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     12 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     + 12 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +   12 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     5 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     ! 2 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     ! 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     ! 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     ! 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     3 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     ! 1 process_mark_stack  (in emacs) + 412  [0x100b2c720]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     ! 1 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     ! 1 process_mark_stack  (in emacs) + 956  [0x100b2c940]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     1 mark_char_table  (in emacs) + 332  [0x100b2f21c]  alloc.c:6468
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     1 mark_char_table  (in emacs) + 240  [0x100b2f1c0]  alloc.c:6470
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +     1 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     +       1 pdumper_cold_object_p_impl  (in emacs) + 20  [0x100b33e04]  pdumper.c:5142
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |     1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |       1 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |         1 process_mark_stack  (in emacs) + 424  [0x100b2c72c]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 11 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :   11 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :     11 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       10 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + 3 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + ! 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + ! 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + ! 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + 2 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + ! 2 pdumper_cold_object_p_impl  (in emacs) + 12  [0x100b33dfc]  pdumper.c:5142
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + 2 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + ! 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + ! 1 process_mark_stack  (in emacs) + 1280  [0x100b2ca84]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + 1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + ! 1 process_mark_stack  (in emacs) + 956  [0x100b2c940]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + 1 mark_char_table  (in emacs) + 192  [0x100b2f190]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       + 1 process_mark_stack  (in emacs) + 3396  [0x100b2d2c8]  alloc.c:7013
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :       1 mark_char_table  (in emacs) + 372  [0x100b2f244]  alloc.c:6468
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :         1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6463
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   20 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 5 process_mark_stack  (in emacs) + 516,500,...  [0x100b2c788,0x100b2c778,...]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 3 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 2 process_mark_stack  (in emacs) + 420,1160  [0x100b2c728,0x100b2ca0c]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 2 process_mark_stack  (in emacs) + 144,148  [0x100b2c614,0x100b2c618]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 2 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 240  [0x100b2c674]  alloc.c:6972
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 352  [0x100b2c6e4]  alloc.c:6978
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   7 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 6 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | 2 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | + 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | 1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | + 1 process_mark_stack  (in emacs) + 168  [0x100b2c62c]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | 1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | + 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | 1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | + 1 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : | 1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : |   1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   :   1 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   6 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 2 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 1068  [0x100b2c9b0]  alloc.c:6802
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 372  [0x100b2c6f8]  alloc.c:6980
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   3 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 2 process_mark_stack  (in emacs) + 500,532  [0x100b2c778,0x100b2c798]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   3 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   3 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   : 1 process_mark_stack  (in emacs) + 296  [0x100b2c6ac]  alloc.c:6972
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !   3 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !     1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !     1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     !     1 process_mark_stack  (in emacs) + 196  [0x100b2c648]  alloc.c:6731
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     6 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 2 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     1 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 1 process_mark_stack  (in emacs) + 1120  [0x100b2c9e4]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 1 process_mark_stack  (in emacs) + 228  [0x100b2c668]  alloc.c:6794
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     ! 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +     1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       +       1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       6 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       + 2 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       + 2 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       + 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       + 1 process_mark_stack  (in emacs) + 460  [0x100b2c750]  alloc.c:6799
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       3 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       + 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       + 1 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       2 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       + 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       + 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |         1 process_mark_stack  (in emacs) + 1068  [0x100b2c9b0]  alloc.c:6802
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     6 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 2 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 2 process_mark_stack  (in emacs) + 244,284  [0x100b2c678,0x100b2c6a0]  alloc.c:6972
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     5 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 1068  [0x100b2c9b0]  alloc.c:6802
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     3 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 pdumper_set_marked_impl  (in emacs) + 64  [0x100b33f88]  pdumper.c:5186
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     3 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 2 process_mark_stack  (in emacs) + 500,516  [0x100b2c778,0x100b2c788]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 196  [0x100b2c648]  alloc.c:6731
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 244  [0x100b2c678]  alloc.c:6972
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     1 process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     1 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 process_mark_stack  (in emacs) + 1132  [0x100b2c9f0]  alloc.c:6820
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     1 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |   1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |     1 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |       1 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |         1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     |           1 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     | 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :     1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   :       1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !   2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !     1 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     !     1 process_mark_stack  (in emacs) + 532  [0x100b2c798]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     4 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 1 process_mark_stack  (in emacs) + 412  [0x100b2c720]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 1 process_mark_stack  (in emacs) + 532  [0x100b2c798]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     3 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 2 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     2 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     2 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 1 process_mark_stack  (in emacs) + 196  [0x100b2c648]  alloc.c:6731
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     ! 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +     1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | +       1 process_mark_stack  (in emacs) + 792  [0x100b2c89c]  alloc.c:6959
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | 2 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |   1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |   ! 1 process_mark_stack  (in emacs) + 532  [0x100b2c798]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |   1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |     1 process_mark_stack  (in emacs) + 132  [0x100b2c608]  alloc.c:6729
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : 3 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | 3 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |   3 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |     3 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |       3 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |         3 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |           3 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |             2 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |             + 1 process_mark_stack  (in emacs) + 36  [0x100b2c5a8]  alloc.c:6725
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |             + 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : |             1 mark_char_table  (in emacs) + 240  [0x100b2f1c0]  alloc.c:6470
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : 1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : 1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : | 1 process_mark_stack  (in emacs) + 456  [0x100b2c74c]  alloc.c:6798
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     : 1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     :   1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !     1 mark_buffer  (in emacs) + 276  [0x100b2f02c]  alloc.c:6505
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !       1 traverse_intervals_noorder  (in emacs) + 56  [0x100bbe430]  intervals.c:244
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !         1 traverse_intervals_noorder  (in emacs) + 56  [0x100bbe430]  intervals.c:244
    +                                             ! : | + ! :               |   +       !   :           |                                         +   !           1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         +   1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               |   +       !   :           |                                         +   ! 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         +   1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                         +     1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           |                                         + 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! :               |   +       !   :           |                                         1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               |   +       !   :           |                                         + 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | + ! :               |   +       !   :           |                                         1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |   +       !   :           |                                           1 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : | + ! :               |   +       !   :           2 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   :           | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           | 1 process_mark_stack  (in emacs) + 372  [0x100b2c6f8]  alloc.c:6980
    +                                             ! : | + ! :               |   +       !   :           1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | + ! :               |   +       !   :           | 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :               |   +       !   :           1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : | + ! :               |   +       !   :           | 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | + ! :               |   +       !   :           1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               |   +       !   :             1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : | + ! :               |   +       !   1 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! :               |   +       !   : 1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :   1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :     1 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :               |   +       !   :       1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :               |   +       !   :         1 mark_char_table  (in emacs) + 240  [0x100b2f1c0]  alloc.c:6470
    +                                             ! : | + ! :               |   +       !   1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               |   +       !     1 process_mark_stack  (in emacs) + 132  [0x100b2c608]  alloc.c:6729
    +                                             ! : | + ! :               |   +       1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | + ! :               |   +         1 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | + ! :               |   1 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | + ! :               |     1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : | + ! :               5 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               | 2 process_mark_stack  (in emacs) + 500,540  [0x100b2c778,0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               | 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : | + ! :               | 1 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : | + ! :               | 1 process_mark_stack  (in emacs) + 240  [0x100b2c674]  alloc.c:6972
    +                                             ! : | + ! :               3 process_mark_stack  (in emacs) + 1788  [0x100b2cc80]  alloc.c:6846
    +                                             ! : | + ! :               | 3 process_mark_stack  (in emacs) + 1592  [0x100b2cbbc]  alloc.c:6842
    +                                             ! : | + ! :               |   1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! :               |   + 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | + ! :               |   1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! :               |   + 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : | + ! :               |   1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               |     1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! :               2 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | + ! :               | 1 process_mark_stack  (in emacs) + 136  [0x100b2c60c]  alloc.c:6729
    +                                             ! : | + ! :               | 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! :               2 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! :               | 2 process_mark_stack  (in emacs) + 500,532  [0x100b2c778,0x100b2c798]  alloc.c:6928
    +                                             ! : | + ! :               1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! :               | 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | + ! :               1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! :                 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : | + ! 3 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! : 3 process_mark_stack  (in emacs) + 516,500  [0x100b2c788,0x100b2c778]  alloc.c:6928
    +                                             ! : | + ! 2 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : | + ! : 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | + ! : 1 pdumper_set_marked_impl  (in emacs) + 64  [0x100b33f88]  pdumper.c:5186
    +                                             ! : | + ! 2 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 144  [0x100b2c614]  alloc.c:6729
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : | + ! 1 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + !   1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + 142 garbage_collect  (in emacs) + 1052  [0x100b2b424]  alloc.c:6176
    +                                             ! : | + ! 61 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! : 31 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! : | 31 process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
    +                                             ! : | + ! : |   31 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! : |     27 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! : |     + 27 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! : |     +   26 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! : |     +   ! 8 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! : |     +   ! : 4 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | + ! : |     +   ! : 1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | + ! : |     +   ! : 1 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : | + ! : |     +   ! : 1 process_mark_stack  (in emacs) + 956  [0x100b2c940]  alloc.c:6816
    +                                             ! : | + ! : |     +   ! : 1 process_mark_stack  (in emacs) + 240  [0x100b2c674]  alloc.c:6972
    +                                             ! : | + ! : |     +   ! 7 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! : |     +   ! : 2 pdumper_marked_p_impl  (in emacs) + 44,56  [0x100b33f38,0x100b33f44]  pdumper.c:5172
    +                                             ! : | + ! : |     +   ! : 2 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | + ! : |     +   ! : 2 process_mark_stack  (in emacs) + 204,216  [0x100b2c650,0x100b2c65c]  alloc.c:6732
    +                                             ! : | + ! : |     +   ! : 1 process_mark_stack  (in emacs) + 240  [0x100b2c674]  alloc.c:6972
    +                                             ! : | + ! : |     +   ! 7 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! : |     +   ! : 4 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! : |     +   ! : 3 process_mark_stack  (in emacs) + 356,300  [0x100b2c6e8,0x100b2c6b0]  alloc.c:6975
    +                                             ! : | + ! : |     +   ! 3 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : | + ! : |     +   ! : 3 pdumper_cold_object_p_impl  (in emacs) + 12  [0x100b33dfc]  pdumper.c:5142
    +                                             ! : | + ! : |     +   ! 1 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : | + ! : |     +   1 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : | + ! : |     +     1 mark_char_table  (in emacs) + 332  [0x100b2f21c]  alloc.c:6468
    +                                             ! : | + ! : |     4 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! : |       2 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! : |       ! 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : | + ! : |       ! 1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! : |       1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! : |       ! 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! : |       1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! : |         1 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : | + ! : 30 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :   30 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :     29 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :     + 23 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :     + ! 10 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :     + ! : 2 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | + ! :     + ! : 2 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! :     + ! : 2 process_mark_stack  (in emacs) + 204,212  [0x100b2c650,0x100b2c658]  alloc.c:6732
    +                                             ! : | + ! :     + ! : 2 process_mark_stack  (in emacs) + 224,232  [0x100b2c664,0x100b2c66c]  alloc.c:6794
    +                                             ! : | + ! :     + ! : 1 process_mark_stack  (in emacs) + 124  [0x100b2c600]  alloc.c:6729
    +                                             ! : | + ! :     + ! : 1 process_mark_stack  (in emacs) + 956  [0x100b2c940]  alloc.c:6816
    +                                             ! : | + ! :     + ! 5 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! :     + ! : 3 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! :     + ! : 1 process_mark_stack  (in emacs) + 1280  [0x100b2ca84]  alloc.c:0
    +                                             ! : | + ! :     + ! : 1 process_mark_stack  (in emacs) + 1132  [0x100b2c9f0]  alloc.c:6820
    +                                             ! : | + ! :     + ! 4 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | + ! :     + ! : 2 process_mark_stack  (in emacs) + 124,144  [0x100b2c600,0x100b2c614]  alloc.c:6729
    +                                             ! : | + ! :     + ! : 1 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | + ! :     + ! : 1 process_mark_stack  (in emacs) + 452  [0x100b2c748]  alloc.c:0
    +                                             ! : | + ! :     + ! 2 process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
    +                                             ! : | + ! :     + ! : 2 pdumper_cold_object_p_impl  (in emacs) + 12  [0x100b33dfc]  pdumper.c:5142
    +                                             ! : | + ! :     + ! 1 mark_char_table  (in emacs) + 232  [0x100b2f1b8]  alloc.c:6468
    +                                             ! : | + ! :     + ! 1 mark_char_table  (in emacs) + 192  [0x100b2f190]  alloc.c:6476
    +                                             ! : | + ! :     + 3 mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
    +                                             ! : | + ! :     + ! 2 mark_char_table  (in emacs) + 232,332  [0x100b2f1b8,0x100b2f21c]  alloc.c:6468
    +                                             ! : | + ! :     + ! 1 mark_char_table  (in emacs) + 304  [0x100b2f200]  alloc.c:6476
    +                                             ! : | + ! :     + 2 mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
    +                                             ! : | + ! :     + ! 1 mark_char_table  (in emacs) + 60  [0x100b2f10c]  alloc.c:6462
    +                                             ! : | + ! :     + ! 1 mark_char_table  (in emacs) + 344  [0x100b2f228]  alloc.c:6468
    +                                             ! : | + ! :     + 1 mark_char_table  (in emacs) + 372  [0x100b2f244]  alloc.c:6468
    +                                             ! : | + ! :     +   1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! :     1 mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
    +                                             ! : | + ! :       1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! :         1 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! 23 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! : 6 process_mark_stack  (in emacs) + 96,104  [0x100b2c5e4,0x100b2c5ec]  alloc.c:6727
    +                                             ! : | + ! : 3 pdumper_marked_p_impl  (in emacs) + 44,48  [0x100b33f38,0x100b33f3c]  pdumper.c:5172
    +                                             ! : | + ! : 3 process_mark_stack  (in emacs) + 124,136,...  [0x100b2c600,0x100b2c60c,...]  alloc.c:6729
    +                                             ! : | + ! : 2 process_mark_stack  (in emacs) + 420,444  [0x100b2c728,0x100b2c740]  alloc.c:0
    +                                             ! : | + ! : 2 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : | + ! : 2 process_mark_stack  (in emacs) + 372  [0x100b2c6f8]  alloc.c:6980
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 476  [0x100b2c760]  alloc.c:6799
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 544  [0x100b2c7a4]  alloc.c:6931
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 352  [0x100b2c6e4]  alloc.c:6978
    +                                             ! : | + ! 19 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
    +                                             ! : | + ! : 4 pdumper_set_marked_impl  (in emacs) + 60  [0x100b33f84]  pdumper.c:5185
    +                                             ! : | + ! : 4 process_mark_stack  (in emacs) + 124,412  [0x100b2c600,0x100b2c720]  alloc.c:6729
    +                                             ! : | + ! : 4 process_mark_stack  (in emacs) + 208,220  [0x100b2c654,0x100b2c660]  alloc.c:6732
    +                                             ! : | + ! : 3 process_mark_stack  (in emacs) + 420,444  [0x100b2c728,0x100b2c740]  alloc.c:0
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 460  [0x100b2c750]  alloc.c:6799
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6978
    +                                             ! : | + ! 11 process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
    +                                             ! : | + ! : 4 process_mark_stack  (in emacs) + 136,124  [0x100b2c60c,0x100b2c600]  alloc.c:6729
    +                                             ! : | + ! : 3 process_mark_stack  (in emacs) + 444,420  [0x100b2c740,0x100b2c728]  alloc.c:0
    +                                             ! : | + ! : 2 process_mark_stack  (in emacs) + 204  [0x100b2c650]  alloc.c:6732
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 224  [0x100b2c664]  alloc.c:6794
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : | + ! 10 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! : 4 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : | + ! : 2 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! : 2 process_mark_stack  (in emacs) + 132,136  [0x100b2c608,0x100b2c60c]  alloc.c:6729
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 500  [0x100b2c778]  alloc.c:6928
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + ! 7 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + ! : 5 process_mark_stack  (in emacs) + 500,516  [0x100b2c778,0x100b2c788]  alloc.c:6928
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 132  [0x100b2c608]  alloc.c:6729
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 236  [0x100b2c670]  alloc.c:6971
    +                                             ! : | + ! 4 process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
    +                                             ! : | + ! : 2 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | + ! : 1 pdumper_marked_p_impl  (in emacs) + 44  [0x100b33f38]  pdumper.c:5172
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! 3 garbage_collect  (in emacs) + 1052  [0x100b2b424]  alloc.c:6176
    +                                             ! : | + ! : 2 process_mark_stack  (in emacs) + 500,532  [0x100b2c778,0x100b2c798]  alloc.c:6928
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 952  [0x100b2c93c]  alloc.c:6814
    +                                             ! : | + ! 2 process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 1068  [0x100b2c9b0]  alloc.c:6802
    +                                             ! : | + ! 1 process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 704  [0x100b2c844]  alloc.c:0
    +                                             ! : | + ! 1 process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
    +                                             ! : | + !   1 mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
    +                                             ! : | + !     1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + !       1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + 5 garbage_collect  (in emacs) + 2532  [0x100b2b9ec]  alloc.c:6235
    +                                             ! : | + ! 5 sweep_strings  (in emacs) + 200  [0x100b2f9c8]  alloc.c:2009
    +                                             ! : | + !   3 sweep_strings  (in emacs) + 224,228  [0x100b2f9e0,0x100b2f9e4]  alloc.c:2012
    +                                             ! : | + !   1 sweep_strings  (in emacs) + 568  [0x100b2fb38]  alloc.c:2068
    +                                             ! : | + !   1 sweep_strings  (in emacs) + 788  [0x100b2fc14]  alloc.c:2069
    +                                             ! : | + 5 garbage_collect  (in emacs) + 2536  [0x100b2b9f0]  alloc.c:6235
    +                                             ! : | + ! 4 sweep_conses  (in emacs) + 624  [0x100b2ffe0]  alloc.c:7165
    +                                             ! : | + ! : 1 sweep_conses  (in emacs) + 272  [0x100b2fe80]  alloc.c:7137
    +                                             ! : | + ! : 1 sweep_conses  (in emacs) + 300  [0x100b2fe9c]  alloc.c:7140
    +                                             ! : | + ! : 1 sweep_conses  (in emacs) + 260  [0x100b2fe74]  alloc.c:7149
    +                                             ! : | + ! : 1 sweep_conses  (in emacs) + 268  [0x100b2fe7c]  alloc.c:7150
    +                                             ! : | + ! 1 sweep_conses  (in emacs) + 508  [0x100b2ff6c]  alloc.c:7165
    +                                             ! : | + !   1 sweep_conses  (in emacs) + 300  [0x100b2fe9c]  alloc.c:7140
    +                                             ! : | + 4 garbage_collect  (in emacs) + 952  [0x100b2b3c0]  alloc.c:6176
    +                                             ! : | + ! 2 process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
    +                                             ! : | + ! : 2 process_mark_stack  (in emacs) + 516  [0x100b2c788]  alloc.c:6928
    +                                             ! : | + ! 1 garbage_collect  (in emacs) + 952  [0x100b2b3c0]  alloc.c:6176
    +                                             ! : | + ! : 1 process_mark_stack  (in emacs) + 444  [0x100b2c740]  alloc.c:0
    +                                             ! : | + ! 1 process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
    +                                             ! : | + !   1 process_mark_stack  (in emacs) + 420  [0x100b2c728]  alloc.c:0
    +                                             ! : | + 4 garbage_collect  (in emacs) + 2556  [0x100b2ba04]  alloc.c:6235
    +                                             ! : | + ! 4 sweep_vectors  (in emacs) + 1108  [0x100b30bb8]  alloc.c:3264
    +                                             ! : | + !   3 sweep_vectors  (in emacs) + 152,268,...  [0x100b307fc,0x100b30870,...]  alloc.c:0
    +                                             ! : | + !   1 sweep_vectors  (in emacs) + 848  [0x100b30ab4]  alloc.c:3222
    +                                             ! : | + 3 garbage_collect  (in emacs) + 1584  [0x100b2b638]  alloc.c:6182
    +                                             ! : | + ! 2 mark_threads_callback  (in emacs) + 44  [0x100bd1870]  thread.c:691
    +                                             ! : | + ! : 2 mark_bytecode  (in emacs) + 100  [0x100ba3100]  bytecode.c:422
    +                                             ! : | + ! :   2 mark_memory  (in emacs) + 60  [0x100b292e8]  alloc.c:4953
    +                                             ! : | + ! :     2 mark_memory  (in emacs) + 60  [0x100b292e8]  alloc.c:4953
    +                                             ! : | + ! :       1 mark_maybe_pointer  (in emacs) + 76  [0x100b29358]  alloc.c:4823
    +                                             ! : | + ! :       1 process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6727
    +                                             ! : | + ! 1 mark_threads_callback  (in emacs) + 88  [0x100bd189c]  thread.c:691
    +                                             ! : | + !   1 mark_c_stack  (in emacs) + 60  [0x100b29728]  alloc.c:5145
    +                                             ! : | + !     1 mark_c_stack  (in emacs) + 60  [0x100b29728]  alloc.c:5145
    +                                             ! : | + !       1 mark_maybe_pointer  (in emacs) + 32  [0x100b2932c]  alloc.c:4792
    +                                             ! : | + 2 garbage_collect  (in emacs) + 2528  [0x100b2b9e8]  alloc.c:6230
    +                                             ! : | + ! 2 mark_and_sweep_weak_table_contents  (in emacs) + 44  [0x100b2bff8]  alloc.c:5998
    +                                             ! : | + !   1 sweep_weak_table  (in emacs) + 144  [0x100b66858]  fns.c:4589
    +                                             ! : | + !   : 1 sweep_weak_table  (in emacs) + 732  [0x100b66aa4]  fns.c:4580
    +                                             ! : | + !   1 sweep_weak_table  (in emacs) + 588  [0x100b66a14]  fns.c:4648
    +                                             ! : | + !     1 process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
    +                                             ! : | + !       1 process_mark_stack  (in emacs) + 300  [0x100b2c6b0]  alloc.c:6975
    +                                             ! : | + 1 garbage_collect  (in emacs) + 1436  [0x100b2b5a4]  alloc.c:6180
    +                                             ! : | +   1 mark_image_cache  (in emacs) + 80  [0x100bdf374]  image.c:2932
    +                                             ! : | +     1 mark_image_cache  (in emacs) + 80  [0x100bdf374]  image.c:2932
    +                                             ! : | +       1 process_mark_stack  (in emacs) + 208  [0x100b2c654]  alloc.c:6732
    +                                             ! : | 23 Ffuncall  (in emacs) + 340  [0x100b537c8]  eval.c:2873
    +                                             ! : | + 7 exec_byte_code  (in emacs) + 12348  [0x100ba205c]  bytecode.c:1430
    +                                             ! : | + ! 4 exec_byte_code  (in emacs) + 2864,3376,...  [0x100b9fb50,0x100b9fd50,...]  bytecode.c:0
    +                                             ! : | + ! 1 Fset_buffer  (in emacs) + 20  [0x100aec390]  buffer.c:2248
    +                                             ! : | + ! : 1 Fset_buffer  (in emacs) + 20  [0x100aec390]  buffer.c:2248
    +                                             ! : | + ! :   1 Fget_buffer  (in emacs) + 36  [0x100ae95f8]  buffer.c:469
    +                                             ! : | + ! 1 Fset_buffer  (in emacs) + 76  [0x100aec3c8]  buffer.c:2254
    +                                             ! : | + ! 1 exec_byte_code  (in emacs) + 2800  [0x100b9fb10]  bytecode.c:780
    +                                             ! : | + 5 Ffuncall  (in emacs) + 340  [0x100b537c8]  eval.c:2873
    +                                             ! : | + ! 2 exec_byte_code  (in emacs) + 4260,4272  [0x100ba00c4,0x100ba00d0]  bytecode.c:0
    +                                             ! : | + ! 2 funcall_general  (in emacs) + 556,560  [0x100b56c94,0x100b56c98]  eval.c:0
    +                                             ! : | + ! 1 exec_byte_code  (in emacs) + 220  [0x100b9f0fc]  bytecode.c:513
    +                                             ! : | + 4 exec_byte_code  (in emacs) + 3392  [0x100b9fd60]  bytecode.c:809
    +                                             ! : | + ! 2 exec_byte_code  (in emacs) + 3392  [0x100b9fd60]  bytecode.c:809
    +                                             ! : | + ! : 1 funcall_subr  (in emacs) + 44  [0x100b56d18]  eval.c:2890
    +                                             ! : | + ! : 1 funcall_subr  (in emacs) + 288  [0x100b56e0c]  eval.c:2911
    +                                             ! : | + ! 1 exec_byte_code  (in emacs) + 3052  [0x100b9fc0c]  bytecode.c:814
    +                                             ! : | + ! 1 exec_byte_code  (in emacs) + 3484  [0x100b9fdbc]  bytecode.c:838
    +                                             ! : | + 2 exec_byte_code  (in emacs) + 16320,16344  [0x100ba2fe0,0x100ba2ff8]  bytecode.c:1726
    +                                             ! : | + 2 exec_byte_code  (in emacs) + 3512  [0x100b9fdd8]  bytecode.c:838
    +                                             ! : | + ! 2 exec_byte_code  (in emacs) + 3512  [0x100b9fdd8]  bytecode.c:838
    +                                             ! : | + !   2 unbind_to  (in emacs) + 104  [0x100b50c3c]  eval.c:3639
    +                                             ! : | + 1 Ffuncall  (in emacs) + 368  [0x100b537e4]  eval.c:2876
    +                                             ! : | + 1 exec_byte_code  (in emacs) + 0  [0x100b9f020]  bytecode.c:471
    +                                             ! : | + 1 exec_byte_code  (in emacs) + 4296  [0x100ba00e8]  bytecode.c:929
    +                                             ! : | +   1 exec_byte_code  (in emacs) + 12340  [0x100ba2054]  bytecode.c:1430
    +                                             ! : | 3 bcall0  (in emacs) + 28  [0x100ba31b4]  bytecode.c:335
    +                                             ! : |   1 Ffuncall  (in emacs) + 188  [0x100b53730]  eval.c:2866
    +                                             ! : |   1 Ffuncall  (in emacs) + 264  [0x100b5377c]  eval.c:2868
    +                                             ! : |   1 Ffuncall  (in emacs) + 324  [0x100b537b8]  eval.c:2873
    +                                             ! : 1 unbind_to  (in emacs) + 116  [0x100b50c48]  eval.c:3639
    +                                             ! :   1 bcall0  (in emacs) + 12  [0x100ba31a4]  bytecode.c:334
    +                                             ! 6 exec_byte_code  (in emacs) + 11148,1824,...  [0x100ba1bac,0x100b9f740,...]  bytecode.c:0
    +                                             ! 4 exec_byte_code  (in emacs) + 1732  [0x100b9f6e4]  bytecode.c:668
    +                                             ! 3 exec_byte_code  (in emacs) + 15780  [0x100ba2dc4]  bytecode.c:1716
    +                                             ! 2 exec_byte_code  (in emacs) + 5476  [0x100ba0584]  bytecode.c:1034
    +                                             ! 1 exec_byte_code  (in emacs) + 11128  [0x100ba1b98]  bytecode.c:1365
    +                                             ! 1 exec_byte_code  (in emacs) + 3512  [0x100b9fdd8]  bytecode.c:838
    +                                             ! : 1 unbind_to  (in emacs) + 104  [0x100b50c3c]  eval.c:3639
    +                                             ! 1 exec_byte_code  (in emacs) + 3796  [0x100b9fef4]  bytecode.c:867
    +                                             ! 1 exec_byte_code  (in emacs) + 3904  [0x100b9ff60]  bytecode.c:881
    +                                             423 exec_byte_code  (in emacs) + 3392  [0x100b9fd60]  bytecode.c:809
    +                                             ! 162 Fparse_partial_sexp  (in emacs) + 684  [0x100b9b4d4]  syntax.c:3604
    +                                             ! : 122 scan_sexps_forward  (in emacs) + 11556  [0x100b9e38c]  syntax.c:3434
    +                                             ! : | 47 scan_sexps_forward  (in emacs) + 11272,11260,...  [0x100b9e270,0x100b9e264,...]  syntax.c:3434
    +                                             ! : | 36 scan_sexps_forward  (in emacs) + 9408,9548,...  [0x100b9db28,0x100b9dbb4,...]  syntax.c:3410
    +                                             ! : | 17 update_syntax_table  (in emacs) + 1008  [0x100b8fb9c]  syntax.c:424
    +                                             ! : | + 6 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : | + ! 4 Fassq  (in emacs) + 24  [0x100b5f67c]  fns.c:1745
    +                                             ! : | + ! 2 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : | + !   1 Fassq  (in emacs) + 180  [0x100b5f718]  fns.c:1747
    +                                             ! : | + !   1 Fassq  (in emacs) + 196  [0x100b5f728]  fns.c:1748
    +                                             ! : | + 4 update_syntax_table  (in emacs) + 1008  [0x100b8fb9c]  syntax.c:424
    +                                             ! : | + ! 2 lookup_char_property  (in emacs) + 52,60  [0x100bc0778,0x100bc0780]  intervals.c:1719
    +                                             ! : | + ! 1 lookup_char_property  (in emacs) + 236  [0x100bc0830]  intervals.c:1722
    +                                             ! : | + ! 1 lookup_char_property  (in emacs) + 248  [0x100bc083c]  intervals.c:1723
    +                                             ! : | + 2 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! : | + ! 1 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! : | + ! 1 lookup_char_property  (in emacs) + 64  [0x100bc0784]  intervals.c:1736
    +                                             ! : | + 2 lookup_char_property  (in emacs) + 508,512  [0x100bc0940,0x100bc0944]  intervals.c:1724
    +                                             ! : | + 2 update_syntax_table  (in emacs) + 1008  [0x100b8fb9c]  syntax.c:424
    +                                             ! : | + 1 update_syntax_table  (in emacs) + 1184  [0x100b8fc4c]  syntax.c:0
    +                                             ! : | 8 scan_sexps_forward  (in emacs) + 9640,9608  [0x100b9dc10,0x100b9dbf0]  syntax.c:3418
    +                                             ! : | 4 scan_sexps_forward  (in emacs) + 9152,9140  [0x100b9da28,0x100b9da1c]  syntax.c:3409
    +                                             ! : | 3 scan_sexps_forward  (in emacs) + 11556  [0x100b9e38c]  syntax.c:3434
    +                                             ! : | + 2 update_syntax_table  (in emacs) + 60  [0x100b8f7e8]  syntax.c:332
    +                                             ! : | + 1 update_syntax_table  (in emacs) + 280  [0x100b8f8c4]  syntax.c:367
    +                                             ! : | 2 scan_sexps_forward  (in emacs) + 9652,11612  [0x100b9dc1c,0x100b9e3c4]  syntax.c:0
    +                                             ! : | 2 scan_sexps_forward  (in emacs) + 9116  [0x100b9da04]  syntax.c:3408
    +                                             ! : | 2 update_syntax_table  (in emacs) + 1164  [0x100b8fc38]  syntax.c:459
    +                                             ! : | + 1 next_interval  (in emacs) + 68  [0x100bbeb48]  intervals.c:667
    +                                             ! : | + 1 next_interval  (in emacs) + 124  [0x100bbeb80]  intervals.c:674
    +                                             ! : | 1 update_syntax_table  (in emacs) + 444  [0x100b8f968]  syntax.c:382
    +                                             ! : |   1 Fcar  (in emacs) + 0  [0x100b3a55c]  data.c:613
    +                                             ! : 38 scan_sexps_forward  (in emacs) + 480  [0x100b9b848]  syntax.c:3241
    +                                             ! : | 13 update_syntax_table  (in emacs) + 1008  [0x100b8fb9c]  syntax.c:424
    +                                             ! : | + 5 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : | + ! 4 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : | + ! : 2 Fassq  (in emacs) + 180  [0x100b5f718]  fns.c:1747
    +                                             ! : | + ! : 1 Fassq  (in emacs) + 196  [0x100b5f728]  fns.c:1748
    +                                             ! : | + ! : 1 Fassq  (in emacs) + 52  [0x100b5f698]  fns.c:1750
    +                                             ! : | + ! 1 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1737
    +                                             ! : | + 3 update_syntax_table  (in emacs) + 1008  [0x100b8fb9c]  syntax.c:424
    +                                             ! : | + ! 2 lookup_char_property  (in emacs) + 52,60  [0x100bc0778,0x100bc0780]  intervals.c:1719
    +                                             ! : | + ! 1 lookup_char_property  (in emacs) + 236  [0x100bc0830]  intervals.c:1722
    +                                             ! : | + 2 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! : | + ! 2 lookup_char_property  (in emacs) + 64  [0x100bc0784]  intervals.c:1736
    +                                             ! : | + 1 Fcar  (in emacs) + 0  [0x100b3a55c]  data.c:613
    +                                             ! : | + 1 Fcar  (in emacs) + 44  [0x100b3a588]  data.c:614
    +                                             ! : | + 1 update_syntax_table  (in emacs) + 1160  [0x100b8fc34]  syntax.c:459
    +                                             ! : | 8 update_syntax_table  (in emacs) + 608  [0x100b8fa0c]  syntax.c:382
    +                                             ! : | + 5 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : | + ! 3 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : | + ! : 2 Fassq  (in emacs) + 196,408  [0x100b5f728,0x100b5f7fc]  fns.c:1748
    +                                             ! : | + ! : 1 Fassq  (in emacs) + 180  [0x100b5f718]  fns.c:1747
    +                                             ! : | + ! 1 Fassq  (in emacs) + 24  [0x100b5f67c]  fns.c:1745
    +                                             ! : | + ! 1 Fassq  (in emacs) + 80  [0x100b5f6b4]  fns.c:1752
    +                                             ! : | + 1 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! : | + ! 1 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! : | + 1 lookup_char_property  (in emacs) + 560  [0x100bc0974]  intervals.c:1747
    +                                             ! : | + 1 update_syntax_table  (in emacs) + 616  [0x100b8fa14]  syntax.c:402
    +                                             ! : | 4 scan_sexps_forward  (in emacs) + 9692,11328,...  [0x100b9dc44,0x100b9e2a8,...]  syntax.c:3434
    +                                             ! : | 4 update_syntax_table  (in emacs) + 96  [0x100b8f80c]  syntax.c:337
    +                                             ! : | + 1 find_interval  (in emacs) + 12  [0x100bbe9d4]  intervals.c:603
    +                                             ! : | + 1 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + ! 1 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + !   1 balance_an_interval  (in emacs) + 64  [0x100bbe6cc]  intervals.c:387
    +                                             ! : | + 1 interval_of  (in emacs) + 12  [0x100bc2d48]  textprop.c:525
    +                                             ! : | + 1 update_syntax_table  (in emacs) + 596  [0x100b8fa00]  syntax.c:382
    +                                             ! : | 2 scan_sexps_forward  (in emacs) + 9416,9432  [0x100b9db30,0x100b9db40]  syntax.c:3410
    +                                             ! : | 2 update_syntax_table  (in emacs) + 1164  [0x100b8fc38]  syntax.c:459
    +                                             ! : | + 2 next_interval  (in emacs) + 4,44  [0x100bbeb08,0x100bbeb30]  intervals.c:662
    +                                             ! : | 1 scan_sexps_forward  (in emacs) + 1812  [0x100b9bd7c]  syntax.c:3265
    +                                             ! : | 1 scan_sexps_forward  (in emacs) + 8796  [0x100b9d8c4]  syntax.c:3396
    +                                             ! : | 1 scan_sexps_forward  (in emacs) + 9608  [0x100b9dbf0]  syntax.c:3418
    +                                             ! : | 1 scan_sexps_forward  (in emacs) + 3568  [0x100b9c458]  syntax.c:3476
    +                                             ! : | 1 update_syntax_table  (in emacs) + 1540  [0x100b8fdb0]  syntax.c:469
    +                                             ! : 2 Fparse_partial_sexp  (in emacs) + 684  [0x100b9b4d4]  syntax.c:3604
    +                                             ! :   1 scan_sexps_forward  (in emacs) + 92  [0x100b9b6c4]  syntax.c:3201
    +                                             ! :   1 scan_sexps_forward  (in emacs) + 420  [0x100b9b80c]  syntax.c:3241
    +                                             ! 47 search_command  (in emacs) + 1040  [0x100b15468]  search.c:1061
    +                                             ! : 36 rpl_re_search_2  (in emacs) + 2620  [0x100b1ae00]  regex-emacs.c:3381
    +                                             ! : | 9 re_match_2_internal  (in emacs) + 276  [0x100b1b164]  regex-emacs.c:3977
    +                                             ! : | + 4 re_match_2_internal  (in emacs) + 360,756,...  [0x100b1b1b8,0x100b1b344,...]  regex-emacs.c:0
    +                                             ! : | + 2 re_match_2_internal  (in emacs) + 1116  [0x100b1b4ac]  regex-emacs.c:4065
    +                                             ! : | + 1 re_match_2_internal  (in emacs) + 276  [0x100b1b164]  regex-emacs.c:3977
    +                                             ! : | + ! 1 record_unwind_protect_ptr  (in emacs) + 224  [0x100b53638]  eval.c:3431
    +                                             ! : | + 1 re_match_2_internal  (in emacs) + 628  [0x100b1b2c4]  regex-emacs.c:4018
    +                                             ! : | + 1 re_match_2_internal  (in emacs) + 1040  [0x100b1b460]  regex-emacs.c:4061
    +                                             ! : | 8 re_match_2_internal  (in emacs) + 8200  [0x100b1d058]  regex-emacs.c:4965
    +                                             ! : | + 6 update_syntax_table_forward  (in emacs) + 68  [0x100b8ff40]  syntax.c:516
    +                                             ! : | + ! 3 update_syntax_table  (in emacs) + 1164  [0x100b8fc38]  syntax.c:459
    +                                             ! : | + ! : 1 next_interval  (in emacs) + 88  [0x100bbeb5c]  intervals.c:0
    +                                             ! : | + ! : 1 next_interval  (in emacs) + 44  [0x100bbeb30]  intervals.c:662
    +                                             ! : | + ! : 1 next_interval  (in emacs) + 100  [0x100bbeb68]  intervals.c:674
    +                                             ! : | + ! 1 update_syntax_table  (in emacs) + 444  [0x100b8f968]  syntax.c:382
    +                                             ! : | + ! : 1 update_syntax_table  (in emacs) + 888  [0x100b8fb24]  syntax.c:410
    +                                             ! : | + ! 1 update_syntax_table  (in emacs) + 1008  [0x100b8fb9c]  syntax.c:424
    +                                             ! : | + ! : 1 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : | + ! :   1 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1737
    +                                             ! : | + ! 1 update_syntax_table_forward  (in emacs) + 68  [0x100b8ff40]  syntax.c:516
    +                                             ! : | + !   1 update_syntax_table  (in emacs) + 264  [0x100b8f8b4]  syntax.c:367
    +                                             ! : | + 1 re_match_2_internal  (in emacs) + 1576  [0x100b1b678]  regex-emacs.c:0
    +                                             ! : | + 1 re_match_2_internal  (in emacs) + 17064  [0x100b1f2f8]  regex-emacs.c:4144
    +                                             ! : | 5 re_match_2_internal  (in emacs) + 8096  [0x100b1cff0]  regex-emacs.c:4964
    +                                             ! : | + 2 SYNTAX_TABLE_BYTE_TO_CHAR  (in emacs) + 108  [0x100b1af64]  syntax.h:170
    +                                             ! : | + ! 2 SYNTAX_TABLE_BYTE_TO_CHAR  (in emacs) + 108  [0x100b1af64]  syntax.h:170
    +                                             ! : | + !   2 buf_bytepos_to_charpos  (in emacs) + 792  [0x100afa71c]  marker.c:422
    +                                             ! : | + 1 SYNTAX_TABLE_BYTE_TO_CHAR  (in emacs) + 336  [0x100b1b048]  syntax.h:160
    +                                             ! : | + 1 re_match_2_internal  (in emacs) + 8368  [0x100b1d100]  regex-emacs.c:4972
    +                                             ! : | + 1 re_match_2_internal  (in emacs) + 16428  [0x100b1f07c]  regex-emacs.c:5013
    +                                             ! : | 4 re_match_2_internal  (in emacs) + 18108  [0x100b1f70c]  regex-emacs.c:4209
    +                                             ! : | + 2 unbind_to  (in emacs) + 116  [0x100b50c48]  eval.c:3639
    +                                             ! : | + ! 1 unbind_to  (in emacs) + 496  [0x100b50dc4]  eval.c:3642
    +                                             ! : | + ! 1 unwind_re_match  (in emacs) + 12  [0x100b2449c]  regex-emacs.c:3865
    +                                             ! : | + 1 re_match_2_internal  (in emacs) + 18108  [0x100b1f70c]  regex-emacs.c:4209
    +                                             ! : | + ! 1 unbind_to  (in emacs) + 56  [0x100b50c0c]  eval.c:3628
    +                                             ! : | + 1 unbind_to  (in emacs) + 520  [0x100b50ddc]  eval.c:3645
    +                                             ! : | 3 re_match_2_internal  (in emacs) + 188  [0x100b1b10c]  regex-emacs.c:3964
    +                                             ! : | + 3 ___chkstk_darwin  (in libsystem_pthread.dylib) + 4  [0x196eb1094]
    +                                             ! : | 3 re_match_2_internal  (in emacs) + 17208  [0x100b1f388]  regex-emacs.c:5059
    +                                             ! : | + 2 re_match_2_internal  (in emacs) + 17208  [0x100b1f388]  regex-emacs.c:5059
    +                                             ! : | + ! 1 unbind_to  (in emacs) + 148  [0x100b50c68]  eval.c:3637
    +                                             ! : | + ! 1 unbind_to  (in emacs) + 172  [0x100b50c80]  eval.c:3639
    +                                             ! : | + 1 unbind_to  (in emacs) + 116  [0x100b50c48]  eval.c:3639
    +                                             ! : | +   1 unwind_re_match  (in emacs) + 12  [0x100b2449c]  regex-emacs.c:3865
    +                                             ! : | 3 rpl_re_search_2  (in emacs) + 2620  [0x100b1ae00]  regex-emacs.c:3381
    +                                             ! : | + 2 re_match_2_internal  (in emacs) + 164  [0x100b1b0f4]  regex-emacs.c:3964
    +                                             ! : | + 1 re_match_2_internal  (in emacs) + 136  [0x100b1b0d8]  regex-emacs.c:3962
    +                                             ! : | 1 re_match_2_internal  (in emacs) + 18304  [0x100b1f7d0]  regex-emacs.c:5063
    +                                             ! : 11 rpl_re_search_2  (in emacs) + 452  [0x100b1a588]  regex-emacs.c:3263
    +                                             ! :   4 update_syntax_table  (in emacs) + 608  [0x100b8fa0c]  syntax.c:382
    +                                             ! :   + 2 update_syntax_table  (in emacs) + 608  [0x100b8fa0c]  syntax.c:382
    +                                             ! :   + ! 2 lookup_char_property  (in emacs) + 52,212  [0x100bc0778,0x100bc0818]  intervals.c:1719
    +                                             ! :   + 1 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! :   + ! 1 lookup_char_property  (in emacs) + 528  [0x100bc0954]  intervals.c:0
    +                                             ! :   + 1 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! :   +   1 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! :   +     1 Fassq  (in emacs) + 192  [0x100b5f724]  fns.c:1748
    +                                             ! :   2 update_syntax_table  (in emacs) + 96  [0x100b8f80c]  syntax.c:337
    +                                             ! :   + 1 find_interval  (in emacs) + 8  [0x100bbe9d0]  intervals.c:603
    +                                             ! :   + 1 update_syntax_table  (in emacs) + 96  [0x100b8f80c]  syntax.c:337
    +                                             ! :   +   1 interval_of  (in emacs) + 172  [0x100bc2de8]  textprop.c:534
    +                                             ! :   2 update_syntax_table  (in emacs) + 1008  [0x100b8fb9c]  syntax.c:424
    +                                             ! :   + 1 lookup_char_property  (in emacs) + 516  [0x100bc0948]  intervals.c:1724
    +                                             ! :   + 1 update_syntax_table  (in emacs) + 1008  [0x100b8fb9c]  syntax.c:424
    +                                             ! :   +   1 lookup_char_property  (in emacs) + 52  [0x100bc0778]  intervals.c:1719
    +                                             ! :   1 rpl_re_search_2  (in emacs) + 452  [0x100b1a588]  regex-emacs.c:3263
    +                                             ! :   + 1 SETUP_SYNTAX_TABLE_FOR_OBJECT  (in emacs) + 108  [0x100b8f5d8]  syntax.c:287
    +                                             ! :   1 update_syntax_table  (in emacs) + 20  [0x100b8f7c0]  syntax.c:326
    +                                             ! :   1 update_syntax_table  (in emacs) + 1164  [0x100b8fc38]  syntax.c:459
    +                                             ! :     1 update_syntax_table  (in emacs) + 1164  [0x100b8fc38]  syntax.c:459
    +                                             ! 46 Fmake_closure  (in emacs) + 124  [0x100b28b04]  alloc.c:3559
    +                                             ! : 45 Fmake_closure  (in emacs) + 124  [0x100b28b04]  alloc.c:3559
    +                                             ! : | 45 allocate_vectorlike  (in emacs) + 228,220,...  [0x100b284a8,0x100b284a0,...]  alloc.c:3322
    +                                             ! : 1 allocate_vectorlike  (in emacs) + 308  [0x100b284f8]  alloc.c:3322
    +                                             ! :   1 allocate_vectorlike  (in emacs) + 308  [0x100b284f8]  alloc.c:3322
    +                                             ! :     1 mem_insert  (in emacs) + 108  [0x100b2e61c]  alloc.c:0
    +                                             ! 31 Fmake_closure  (in emacs) + 212  [0x100b28b5c]  alloc.c:3567
    +                                             ! : 29 Fmake_closure  (in emacs) + 212  [0x100b28b5c]  alloc.c:3567
    +                                             ! : | 28 allocate_vectorlike  (in emacs) + 220,228  [0x100b284a0,0x100b284a8]  alloc.c:3322
    +                                             ! : | 1 allocate_vectorlike  (in emacs) + 36  [0x100b283e8]  alloc.c:3320
    +                                             ! : 1 allocate_vectorlike  (in emacs) + 260  [0x100b284c8]  alloc.c:3322
    +                                             ! : | 1 _malloc_zone_malloc  (in libsystem_malloc.dylib) + 156  [0x196ce1748]
    +                                             ! : |   1 szone_malloc_should_clear  (in libsystem_malloc.dylib) + 128  [0x196cc5370]
    +                                             ! : |     1 small_malloc_should_clear  (in libsystem_malloc.dylib) + 220  [0x196cc5534]
    +                                             ! : |       1 small_malloc_should_clear  (in libsystem_malloc.dylib) + 220  [0x196cc5534]
    +                                             ! : |         1 small_malloc_from_free_list  (in libsystem_malloc.dylib) + 288  [0x196cc5cfc]
    +                                             ! : 1 allocate_vectorlike  (in emacs) + 432  [0x100b28574]  alloc.c:3348
    +                                             ! 14 Fconstrain_to_field  (in emacs) + 180  [0x100b45e44]  editfns.c:652
    +                                             ! : 4 get_char_property_and_overlay  (in emacs) + 892  [0x100bc33d8]  textprop.c:666
    +                                             ! : | 2 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + 2 find_interval  (in emacs) + 244  [0x100bbeabc]  intervals.c:627
    +                                             ! : | 2 validate_interval_range  (in emacs) + 136  [0x100bc2b18]  textprop.c:138
    +                                             ! : |   1 validate_interval_range  (in emacs) + 144  [0x100bc2b20]  textprop.c:142
    +                                             ! : |   1 validate_interval_range  (in emacs) + 436  [0x100bc2c44]  textprop.c:158
    +                                             ! : 4 get_char_property_and_overlay  (in emacs) + 976  [0x100bc342c]  textprop.c:666
    +                                             ! : | 2 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! : | + 2 Fcdr  (in emacs) + 0  [0x100b3a5b4]  data.c:631
    +                                             ! : | 1 lookup_char_property  (in emacs) + 24  [0x100bc075c]  intervals.c:1716
    +                                             ! : | 1 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : |   1 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1737
    +                                             ! : 2 get_char_property_and_overlay  (in emacs) + 448  [0x100bc321c]  textprop.c:639
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 448  [0x100bc321c]  textprop.c:639
    +                                             ! : | + 1 overlays_at  (in emacs) + 636  [0x100aee7e4]  buffer.c:2973
    +                                             ! : | 1 overlays_at  (in emacs) + 0  [0x100aee568]  buffer.c:2872
    +                                             ! : 1 Fconstrain_to_field  (in emacs) + 180  [0x100b45e44]  editfns.c:652
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 60  [0x100bc3098]  textprop.c:612
    +                                             ! : 1 get_char_property_and_overlay  (in emacs) + 68  [0x100bc30a0]  textprop.c:615
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 120  [0x100bc30d4]  textprop.c:620
    +                                             ! : 1 get_char_property_and_overlay  (in emacs) + 404  [0x100bc31f0]  textprop.c:639
    +                                             ! : | 1 ___chkstk_darwin  (in libsystem_pthread.dylib) + 4  [0x196eb1094]
    +                                             ! : 1 get_char_property_and_overlay  (in emacs) + 608  [0x100bc32bc]  textprop.c:640
    +                                             ! :   1 get_char_property_and_overlay  (in emacs) + 608  [0x100bc32bc]  textprop.c:640
    +                                             ! :     1 sort_overlays  (in emacs) + 80  [0x100aef018]  buffer.c:3241
    +                                             ! 14 Fconstrain_to_field  (in emacs) + 584  [0x100b45fd8]  editfns.c:661
    +                                             ! : 5 get_char_property_and_overlay  (in emacs) + 892  [0x100bc33d8]  textprop.c:666
    +                                             ! : | 2 validate_interval_range  (in emacs) + 136  [0x100bc2b18]  textprop.c:138
    +                                             ! : | + 1 validate_interval_range  (in emacs) + 252  [0x100bc2b8c]  textprop.c:157
    +                                             ! : | + 1 validate_interval_range  (in emacs) + 464  [0x100bc2c60]  textprop.c:163
    +                                             ! : | 1 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + 1 find_interval  (in emacs) + 244  [0x100bbeabc]  intervals.c:627
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 892  [0x100bc33d8]  textprop.c:666
    +                                             ! : | + 1 validate_interval_range  (in emacs) + 60  [0x100bc2acc]  textprop.c:136
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 920  [0x100bc33f4]  textprop.c:666
    +                                             ! : 3 get_char_property_and_overlay  (in emacs) + 608  [0x100bc32bc]  textprop.c:640
    +                                             ! : | 2 sort_overlays  (in emacs) + 116  [0x100aef03c]  buffer.c:3244
    +                                             ! : | + 2 ___chkstk_darwin  (in libsystem_pthread.dylib) + 4  [0x196eb1094]
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 608  [0x100bc32bc]  textprop.c:640
    +                                             ! : |   1 sort_overlays  (in emacs) + 80  [0x100aef018]  buffer.c:3241
    +                                             ! : 2 get_char_property_and_overlay  (in emacs) + 68  [0x100bc30a0]  textprop.c:615
    +                                             ! : | 1 fix_position  (in emacs) + 100  [0x100ae9434]  buffer.c:145
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 88  [0x100bc30b4]  textprop.c:618
    +                                             ! : 2 get_char_property_and_overlay  (in emacs) + 620  [0x100bc32c8]  textprop.c:642
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 620  [0x100bc32c8]  textprop.c:642
    +                                             ! : | + 1 set_buffer_temp  (in emacs) + 24  [0x100aec874]  buffer.c:2222
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 828  [0x100bc3398]  textprop.c:660
    +                                             ! : 1 get_char_property_and_overlay  (in emacs) + 404  [0x100bc31f0]  textprop.c:639
    +                                             ! : | 1 ___chkstk_darwin  (in libsystem_pthread.dylib) + 4  [0x196eb1094]
    +                                             ! : 1 get_char_property_and_overlay  (in emacs) + 976  [0x100bc342c]  textprop.c:666
    +                                             ! :   1 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! :     1 lookup_char_property  (in emacs) + 252  [0x100bc0840]  intervals.c:1723
    +                                             ! 12 Fconstrain_to_field  (in emacs) + 532  [0x100b45fa4]  editfns.c:659
    +                                             ! : 4 get_char_property_and_overlay  (in emacs) + 892  [0x100bc33d8]  textprop.c:666
    +                                             ! : | 3 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + 2 find_interval  (in emacs) + 272  [0x100bbead8]  intervals.c:642
    +                                             ! : | + 1 balance_an_interval  (in emacs) + 548  [0x100bbe8b0]  intervals.c:411
    +                                             ! : | 1 find_interval  (in emacs) + 308  [0x100bbeafc]  intervals.c:648
    +                                             ! : 4 get_char_property_and_overlay  (in emacs) + 976  [0x100bc342c]  textprop.c:666
    +                                             ! : | 3 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : | + 2 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : | + ! 2 Fassq  (in emacs) + 192  [0x100b5f724]  fns.c:1748
    +                                             ! : | + 1 Fassq  (in emacs) + 24  [0x100b5f67c]  fns.c:1745
    +                                             ! : | 1 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! : |   1 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! : 1 Fconstrain_to_field  (in emacs) + 532  [0x100b45fa4]  editfns.c:659
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 60  [0x100bc3098]  textprop.c:612
    +                                             ! : 1 get_char_property_and_overlay  (in emacs) + 608  [0x100bc32bc]  textprop.c:640
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 608  [0x100bc32bc]  textprop.c:640
    +                                             ! : |   1 sort_overlays  (in emacs) + 108  [0x100aef034]  buffer.c:3244
    +                                             ! : 1 get_char_property_and_overlay  (in emacs) + 620  [0x100bc32c8]  textprop.c:642
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 628  [0x100bc32d0]  textprop.c:0
    +                                             ! : 1 get_char_property_and_overlay  (in emacs) + 1032  [0x100bc3464]  textprop.c:667
    +                                             ! 12 exec_byte_code  (in emacs) + 3180,3644,...  [0x100b9fc8c,0x100b9fe5c,...]  bytecode.c:0
    +                                             ! 10 exec_byte_code  (in emacs) + 3392  [0x100b9fd60]  bytecode.c:809
    +                                             ! : 3 funcall_subr  (in emacs) + 204,140  [0x100b56db8,0x100b56d78]  eval.c:0
    +                                             ! : 2 Fparse_partial_sexp  (in emacs) + 52  [0x100b9b25c]  syntax.c:3587
    +                                             ! : 2 funcall_subr  (in emacs) + 232  [0x100b56dd4]  eval.c:2909
    +                                             ! : 1 Fmake_closure  (in emacs) + 24  [0x100b28aa0]  alloc.c:3548
    +                                             ! : 1 funcall_subr  (in emacs) + 44  [0x100b56d18]  eval.c:2890
    +                                             ! : 1 funcall_subr  (in emacs) + 60  [0x100b56d28]  eval.c:2893
    +                                             ! 8 Fconstrain_to_field  (in emacs) + 200  [0x100b45e58]  editfns.c:653
    +                                             ! : 3 get_char_property_and_overlay  (in emacs) + 68  [0x100bc30a0]  textprop.c:615
    +                                             ! : | 2 get_char_property_and_overlay  (in emacs) + 312  [0x100bc3194]  textprop.c:633
    +                                             ! : | 1 get_char_property_and_overlay  (in emacs) + 360  [0x100bc31c4]  textprop.c:636
    +                                             ! : 2 get_char_property_and_overlay  (in emacs) + 892  [0x100bc33d8]  textprop.c:666
    +                                             ! : | 1 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + 1 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | +   1 balance_an_interval  (in emacs) + 152  [0x100bbe724]  intervals.c:398
    +                                             ! : | 1 validate_interval_range  (in emacs) + 136  [0x100bc2b18]  textprop.c:138
    +                                             ! : |   1 validate_interval_range  (in emacs) + 464  [0x100bc2c60]  textprop.c:163
    +                                             ! : 2 get_char_property_and_overlay  (in emacs) + 976  [0x100bc342c]  textprop.c:666
    +                                             ! : | 1 lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
    +                                             ! : | + 1 Fcdr  (in emacs) + 0  [0x100b3a5b4]  data.c:631
    +                                             ! : | 1 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : |   1 lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
    +                                             ! : |     1 Fassq  (in emacs) + 196  [0x100b5f728]  fns.c:1748
    +                                             ! : 1 get_char_property_and_overlay  (in emacs) + 608  [0x100bc32bc]  textprop.c:640
    +                                             ! :   1 sort_overlays  (in emacs) + 116  [0x100aef03c]  buffer.c:3244
    +                                             ! :     1 ___chkstk_darwin  (in libsystem_pthread.dylib) + 4  [0x196eb1094]
    +                                             ! 6 search_command  (in emacs) + 740  [0x100b1533c]  search.c:1061
    +                                             ! : 3 compile_pattern  (in emacs) + 688  [0x100b141fc]  search.c:224
    +                                             ! : | 2 Fequal  (in emacs) + 24  [0x100b5f2dc]  fns.c:2447
    +                                             ! : | + 1 Fequal  (in emacs) + 24  [0x100b5f2dc]  fns.c:2447
    +                                             ! : | + ! 1 internal_equal  (in emacs) + 1944  [0x100b62ba8]  fns.c:0
    +                                             ! : | + 1 internal_equal  (in emacs) + 1976  [0x100b62bc8]  fns.c:2632
    +                                             ! : | 1 Fequal  (in emacs) + 36  [0x100b5f2e8]  fns.c:2447
    +                                             ! : 2 compile_pattern  (in emacs) + 172  [0x100b13ff8]  search.c:219
    +                                             ! : | 1 Fstring_equal  (in emacs) + 188  [0x100b5c18c]  fns.c:345
    +                                             ! : | 1 compile_pattern  (in emacs) + 172  [0x100b13ff8]  search.c:220
    +                                             ! : 1 search_command  (in emacs) + 740  [0x100b1533c]  search.c:1061
    +                                             ! :   1 compile_pattern  (in emacs) + 72  [0x100b13f94]  search.c:206
    +                                             ! 5 search_command  (in emacs) + 504  [0x100b15250]  search.c:1089
    +                                             ! : 3 set_point_both  (in emacs) + 288  [0x100bc0b38]  intervals.c:1905
    +                                             ! : | 2 set_point_both  (in emacs) + 424  [0x100bc0bc0]  intervals.c:1928
    +                                             ! : | 1 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : |   1 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : |     1 balance_an_interval  (in emacs) + 108  [0x100bbe6f8]  intervals.c:387
    +                                             ! : 1 search_command  (in emacs) + 504  [0x100b15250]  search.c:1089
    +                                             ! : | 1 set_point_both  (in emacs) + 128  [0x100bc0a98]  intervals.c:1882
    +                                             ! : 1 set_point_both  (in emacs) + 152  [0x100bc0ab0]  intervals.c:1891
    +                                             ! :   1 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! :     1 find_interval  (in emacs) + 264  [0x100bbead0]  intervals.c:631
    +                                             ! 4 Fparse_partial_sexp  (in emacs) + 1040  [0x100b9b638]  syntax.c:3613
    +                                             ! : 2 Fcons  (in emacs) + 76  [0x100b271a4]  alloc.c:2716
    +                                             ! : | 2 lisp_align_malloc  (in emacs) + 332  [0x100b27100]  alloc.c:1251
    +                                             ! : |   2 mem_insert  (in emacs) + 152  [0x100b2e648]  alloc.c:4223
    +                                             ! : |     2 mem_insert  (in emacs) + 312,672  [0x100b2e6e8,0x100b2e850]  alloc.c:4244
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 1040  [0x100b9b638]  syntax.c:3612
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 1040  [0x100b9b638]  syntax.c:3613
    +                                             ! :   1 Fcons  (in emacs) + 156  [0x100b271f4]  alloc.c:2732
    +                                             ! 4 funcall_subr  (in emacs) + 164  [0x100b56d90]  eval.c:2901
    +                                             ! : 4 _platform_memmove  (in libsystem_platform.dylib) + 0,428,...  [0x196ecd0f0,0x196ecd29c,...]
    +                                             ! 3 Fparse_partial_sexp  (in emacs) + 1028  [0x100b9b62c]  syntax.c:3614
    +                                             ! : 3 Fparse_partial_sexp  (in emacs) + 1028  [0x100b9b62c]  syntax.c:3614
    +                                             ! :   2 Fcons  (in emacs) + 28  [0x100b27174]  alloc.c:2706
    +                                             ! :   1 Fcons  (in emacs) + 160  [0x100b271f8]  alloc.c:2732
    +                                             ! 2 Fline_end_position  (in emacs) + 192  [0x100b461bc]  editfns.c:783
    +                                             ! : 2 find_before_next_newline  (in emacs) + 56  [0x100b14fac]  search.c:1006
    +                                             ! :   1 find_before_next_newline  (in emacs) + 56  [0x100b14fac]  search.c:1006
    +                                             ! :   | 1 find_newline  (in emacs) + 68  [0x100b145e8]  search.c:666
    +                                             ! :   1 find_newline  (in emacs) + 400  [0x100b14734]  search.c:710
    +                                             ! :     1 region_cache_forward  (in emacs) + 36  [0x100bb9568]  region-cache.c:684
    +                                             ! :       1 region_cache_forward  (in emacs) + 260  [0x100bb9648]  region-cache.c:701
    +                                             ! 2 Fmake_closure  (in emacs) + 236  [0x100b28b74]  alloc.c:3569
    +                                             ! : 2 _platform_memmove  (in libsystem_platform.dylib) + 428  [0x196ecd29c]
    +                                             ! 2 Fparse_partial_sexp  (in emacs) + 364  [0x100b9b394]  syntax.c:3603
    +                                             ! : 1 Fcar  (in emacs) + 0  [0x100b3a55c]  data.c:613
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 364  [0x100b9b394]  syntax.c:3603
    +                                             ! 2 Fparse_partial_sexp  (in emacs) + 536  [0x100b9b440]  syntax.c:3604
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 540  [0x100b9b444]  syntax.c:3605
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 660  [0x100b9b4bc]  syntax.c:3606
    +                                             ! 2 exec_byte_code  (in emacs) + 2652  [0x100b9fa7c]  bytecode.c:768
    +                                             ! 2 exec_byte_code  (in emacs) + 3584,3592  [0x100b9fe20,0x100b9fe28]  bytecode.c:844
    +                                             ! 2 funcall_subr  (in emacs) + 176  [0x100b56d9c]  eval.c:2902
    +                                             ! : 1 _platform_memset  (in libsystem_platform.dylib) + 180  [0x196ecced4]
    +                                             ! : 1 funcall_subr  (in emacs) + 204  [0x100b56db8]  eval.c:0
    +                                             ! 2 funcall_subr  (in emacs) + 608  [0x100b56f4c]  eval.c:2921
    +                                             ! 2 search_command  (in emacs) + 928  [0x100b153f8]  search.c:1061
    +                                             ! : 2 search_command  (in emacs) + 1032  [0x100b15460]  search.c:1061
    +                                             ! 1 Fmake_closure  (in emacs) + 192  [0x100b28b48]  alloc.c:3561
    +                                             ! : 1 DYLD-STUB$$memcpy  (in emacs) + 4  [0x100c33f44]
    +                                             ! 1 Fmake_closure  (in emacs) + 260  [0x100b28b8c]  alloc.c:3571
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 104  [0x100b9b290]  syntax.c:3599
    +                                             ! : 1 fix_position  (in emacs) + 0  [0x100ae93d0]  buffer.c:138
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 124  [0x100b9b2a4]  syntax.c:3602
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 124  [0x100b9b2a4]  syntax.c:3602
    +                                             ! :   1 validate_region  (in emacs) + 292  [0x100aecb90]  buffer.c:2319
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 164  [0x100b9b2cc]  syntax.c:3603
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 164  [0x100b9b2cc]  syntax.c:3603
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 180  [0x100b9b2dc]  syntax.c:3603
    +                                             ! : 1 Fcar  (in emacs) + 44  [0x100b3a588]  data.c:614
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 284  [0x100b9b344]  syntax.c:3603
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 284  [0x100b9b344]  syntax.c:3603
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 332  [0x100b9b374]  syntax.c:3603
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 340  [0x100b9b37c]  syntax.c:3603
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 432  [0x100b9b3d8]  syntax.c:3603
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 448  [0x100b9b3e8]  syntax.c:3603
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 480  [0x100b9b408]  syntax.c:3603
    +                                             ! : 1 Fcdr  (in emacs) + 44  [0x100b3a5e0]  data.c:632
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 484  [0x100b9b40c]  syntax.c:3603
    +                                             ! : 1 Fcar  (in emacs) + 44  [0x100b3a588]  data.c:614
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 692  [0x100b9b4dc]  syntax.c:3610
    +                                             ! : 1 Fparse_partial_sexp  (in emacs) + 800  [0x100b9b548]  syntax.c:3626
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 1060  [0x100b9b64c]  syntax.c:3612
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 956  [0x100b9b5e4]  syntax.c:3626
    +                                             ! : 1 Fcons  (in emacs) + 172  [0x100b27204]  alloc.c:2733
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 932  [0x100b9b5cc]  syntax.c:3635
    +                                             ! : 1 Fcons  (in emacs) + 172  [0x100b27204]  alloc.c:2733
    +                                             ! 1 Fparse_partial_sexp  (in emacs) + 920  [0x100b9b5c0]  syntax.c:3636
    +                                             ! : 1 Fcons  (in emacs) + 172  [0x100b27204]  alloc.c:2733
    +                                             ! 1 Fset_syntax_table  (in emacs) + 196  [0x100b902bc]  syntax.c:1049
    +                                             ! 1 exec_byte_code  (in emacs) + 852  [0x100b9f374]  bytecode.c:629
    +                                             ! 1 exec_byte_code  (in emacs) + 1340  [0x100b9f55c]  bytecode.c:655
    +                                             ! 1 exec_byte_code  (in emacs) + 2612  [0x100b9fa54]  bytecode.c:766
    +                                             ! 1 exec_byte_code  (in emacs) + 2800  [0x100b9fb10]  bytecode.c:780
    +                                             ! 1 exec_byte_code  (in emacs) + 2844  [0x100b9fb3c]  bytecode.c:783
    +                                             ! 1 exec_byte_code  (in emacs) + 3484  [0x100b9fdbc]  bytecode.c:838
    +                                             ! 1 exec_byte_code  (in emacs) + 3604  [0x100b9fe34]  bytecode.c:849
    +                                             ! 1 funcall_subr  (in emacs) + 256  [0x100b56dec]  eval.c:2909
    +                                             ! 1 search_command  (in emacs) + 1216  [0x100b15518]  search.c:1061
    +                                             ! : 1 search_command  (in emacs) + 1140  [0x100b154cc]  search.c:1061
    +                                             ! 1 search_command  (in emacs) + 1664  [0x100b156d8]  search.c:1061
    +                                             !   1 unbind_to  (in emacs) + 116  [0x100b50c48]  eval.c:3639
    +                                             !     1 unbind_to  (in emacs) + 468  [0x100b50da8]  eval.c:3642
    +                                             75 exec_byte_code  (in emacs) + 1004  [0x100b9f40c]  bytecode.c:631
    +                                             ! 22 exec_byte_code  (in emacs) + 15460,1060,...  [0x100ba2c84,0x100b9f444,...]  bytecode.c:0
    +                                             ! 18 exec_byte_code  (in emacs) + 1732  [0x100b9f6e4]  bytecode.c:668
    +                                             ! 10 Fsymbol_value  (in emacs) + 20  [0x100b3c520]  data.c:1575
    +                                             ! : 3 Fsymbol_value  (in emacs) + 36,44  [0x100b3c530,0x100b3c538]  data.c:1576
    +                                             ! : 2 Fsymbol_value  (in emacs) + 20  [0x100b3c520]  data.c:1575
    +                                             ! : | 1 find_symbol_value  (in emacs) + 232  [0x100b3c4c4]  data.c:1555
    +                                             ! : | 1 find_symbol_value  (in emacs) + 108  [0x100b3c448]  lisp.h:0
    +                                             ! : 2 find_symbol_value  (in emacs) + 244  [0x100b3c4d0]  data.c:1556
    +                                             ! : | 1 find_symbol_value  (in emacs) + 244  [0x100b3c4d0]  data.c:1556
    +                                             ! : | + 1 swap_in_symval_forwarding  (in emacs) + 24  [0x100b3a8b4]  data.c:1507
    +                                             ! : | 1 find_symbol_value  (in emacs) + 244  [0x100b3c4d0]  data.c:1557
    +                                             ! : 1 do_symval_forwarding  (in emacs) + 32  [0x100b3bf74]  data.c:0
    +                                             ! : 1 do_symval_forwarding  (in emacs) + 0  [0x100b3bf54]  data.c:1281
    +                                             ! : 1 find_symbol_value  (in emacs) + 4  [0x100b3c3e0]  data.c:1542
    +                                             ! 7 exec_byte_code  (in emacs) + 1220  [0x100b9f4e4]  bytecode.c:646
    +                                             ! 3 exec_byte_code  (in emacs) + 1152  [0x100b9f4a0]  bytecode.c:639
    +                                             ! 2 Fsymbol_value  (in emacs) + 4  [0x100b3c510]  data.c:1572
    +                                             ! 2 exec_byte_code  (in emacs) + 3604  [0x100b9fe34]  bytecode.c:849
    +                                             ! 2 exec_byte_code  (in emacs) + 3796  [0x100b9fef4]  bytecode.c:867
    +                                             ! 2 exec_byte_code  (in emacs) + 4712  [0x100ba0288]  bytecode.c:961
    +                                             ! 1 exec_byte_code  (in emacs) + 8804  [0x100ba1284]  bytecode.c:1233
    +                                             ! 1 exec_byte_code  (in emacs) + 11184  [0x100ba1bd0]  bytecode.c:1368
    +                                             ! 1 exec_byte_code  (in emacs) + 2596  [0x100b9fa44]  bytecode.c:766
    +                                             ! 1 exec_byte_code  (in emacs) + 2748  [0x100b9fadc]  bytecode.c:780
    +                                             ! 1 exec_byte_code  (in emacs) + 2844  [0x100b9fb3c]  bytecode.c:783
    +                                             ! 1 exec_byte_code  (in emacs) + 3904  [0x100b9ff60]  bytecode.c:881
    +                                             ! 1 exec_byte_code  (in emacs) + 3940  [0x100b9ff84]  bytecode.c:887
    +                                             52 exec_byte_code  (in emacs) + 4740  [0x100ba02a4]  bytecode.c:965
    +                                             ! 20 exec_byte_code  (in emacs) + 2380,15460,...  [0x100b9f96c,0x100ba2c84,...]  bytecode.c:0
    +                                             ! 9 exec_byte_code  (in emacs) + 1732  [0x100b9f6e4]  bytecode.c:668
    +                                             ! 3 _setjmp  (in libsystem_platform.dylib) + 24  [0x196ecb48c]
    +                                             ! 2 exec_byte_code  (in emacs) + 6696  [0x100ba0a48]  bytecode.c:1103
    +                                             ! 2 exec_byte_code  (in emacs) + 9368  [0x100ba14b8]  bytecode.c:1265
    +                                             ! 2 exec_byte_code  (in emacs) + 9800  [0x100ba1668]  bytecode.c:1289
    +                                             ! 2 exec_byte_code  (in emacs) + 15480  [0x100ba2c98]  bytecode.c:1643
    +                                             ! 2 exec_byte_code  (in emacs) + 1220  [0x100b9f4e4]  bytecode.c:646
    +                                             ! 1 exec_byte_code  (in emacs) + 8216  [0x100ba1038]  bytecode.c:1202
    +                                             ! 1 exec_byte_code  (in emacs) + 10328  [0x100ba1878]  bytecode.c:1327
    +                                             ! 1 exec_byte_code  (in emacs) + 10592  [0x100ba1980]  bytecode.c:1330
    +                                             ! 1 exec_byte_code  (in emacs) + 15428  [0x100ba2c64]  bytecode.c:1637
    +                                             ! 1 exec_byte_code  (in emacs) + 3328  [0x100b9fd20]  bytecode.c:502
    +                                             ! 1 exec_byte_code  (in emacs) + 296  [0x100b9f148]  bytecode.c:531
    +                                             ! 1 exec_byte_code  (in emacs) + 2792  [0x100b9fb08]  bytecode.c:780
    +                                             ! 1 exec_byte_code  (in emacs) + 2844  [0x100b9fb3c]  bytecode.c:783
    +                                             ! 1 exec_byte_code  (in emacs) + 3244  [0x100b9fccc]  bytecode.c:793
    +                                             ! 1 exec_byte_code  (in emacs) + 3940  [0x100b9ff84]  bytecode.c:887
    +                                             28 exec_byte_code  (in emacs) + 11192  [0x100ba1bd8]  bytecode.c:1368
    +                                             ! 23 Fgoto_char  (in emacs) + 132  [0x100b4503c]  editfns.c:211
    +                                             ! : 9 set_point_both  (in emacs) + 288  [0x100bc0b38]  intervals.c:1905
    +                                             ! : | 3 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + 1 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + ! 1 balance_an_interval  (in emacs) + 152  [0x100bbe724]  intervals.c:398
    +                                             ! : | + 1 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + 1 find_interval  (in emacs) + 264  [0x100bbead0]  intervals.c:631
    +                                             ! : | 3 find_interval  (in emacs) + 308  [0x100bbeafc]  intervals.c:648
    +                                             ! : | 2 set_point_both  (in emacs) + 352,772  [0x100bc0b78,0x100bc0d1c]  intervals.c:1909
    +                                             ! : | 1 set_point_both  (in emacs) + 424  [0x100bc0bc0]  intervals.c:1928
    +                                             ! : 8 set_point_both  (in emacs) + 152  [0x100bc0ab0]  intervals.c:1891
    +                                             ! : | 5 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + 2 find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
    +                                             ! : | + ! 1 balance_an_interval  (in emacs) + 108  [0x100bbe6f8]  intervals.c:387
    +                                             ! : | + ! 1 balance_an_interval  (in emacs) + 152  [0x100bbe724]  intervals.c:398
    +                                             ! : | + 2 find_interval  (in emacs) + 228,244  [0x100bbeaac,0x100bbeabc]  intervals.c:627
    +                                             ! : | + 1 find_interval  (in emacs) + 272  [0x100bbead8]  intervals.c:642
    +                                             ! : | 1 find_interval  (in emacs) + 12  [0x100bbe9d4]  intervals.c:603
    +                                             ! : | 1 set_point_both  (in emacs) + 152  [0x100bc0ab0]  intervals.c:1891
    +                                             ! : | + 1 find_interval  (in emacs) + 64  [0x100bbea08]  intervals.c:615
    +                                             ! : | 1 set_point_both  (in emacs) + 164  [0x100bc0abc]  intervals.c:1892
    +                                             ! : 3 Fgoto_char  (in emacs) + 132  [0x100b4503c]  editfns.c:211
    +                                             ! : | 1 set_point_both  (in emacs) + 68  [0x100bc0a5c]  intervals.c:1865
    +                                             ! : | 1 set_point_both  (in emacs) + 112  [0x100bc0a88]  intervals.c:1878
    +                                             ! : | 1 set_point_both  (in emacs) + 128  [0x100bc0a98]  intervals.c:1882
    +                                             ! : 2 set_point  (in emacs) + 40  [0x100bc0a04]  intervals.c:1781
    +                                             ! : | 2 buf_charpos_to_bytepos  (in emacs) + 808  [0x100afa18c]  marker.c:267
    +                                             ! : 1 set_point_both  (in emacs) + 1588  [0x100bc104c]  intervals.c:2069
    +                                             ! 2 exec_byte_code  (in emacs) + 4112,11220  [0x100ba0030,0x100ba1bf4]  bytecode.c:0
    +                                             ! 1 Fgoto_char  (in emacs) + 140  [0x100b45044]  editfns.c:214
    +                                             ! 1 exec_byte_code  (in emacs) + 296  [0x100b9f148]  bytecode.c:531
    +                                             ! 1 exec_byte_code  (in emacs) + 2844  [0x100b9fb3c]  bytecode.c:783
    +                                             22 exec_byte_code  (in emacs) + 11608  [0x100ba1d78]  bytecode.c:1390
    +                                             ! 9 exec_byte_code  (in emacs) + 1336  [0x100b9f558]  bytecode.c:654
    +                                             ! 4 exec_byte_code  (in emacs) + 2352  [0x100b9f950]  bytecode.c:708
    +                                             ! 3 exec_byte_code  (in emacs) + 1352  [0x100b9f568]  bytecode.c:655
    +                                             ! 2 exec_byte_code  (in emacs) + 8244  [0x100ba1054]  bytecode.c:1202
    +                                             ! 1 Fchar_after  (in emacs) + 4  [0x100b46b54]  editfns.c:1058
    +                                             ! 1 exec_byte_code  (in emacs) + 1332  [0x100b9f554]  bytecode.c:0
    +                                             ! 1 exec_byte_code  (in emacs) + 8804  [0x100ba1284]  bytecode.c:1233
    +                                             ! 1 exec_byte_code  (in emacs) + 1152  [0x100b9f4a0]  bytecode.c:639
    +                                             11 exec_byte_code  (in emacs) + 524  [0x100b9f22c]  bytecode.c:537
    +                                             ! 6 exec_byte_code  (in emacs) + 560,3356,...  [0x100b9f250,0x100b9fd3c,...]  bytecode.c:0
    +                                             ! 2 exec_byte_code  (in emacs) + 2824  [0x100b9fb28]  bytecode.c:782
    +                                             ! 1 __bzero  (in libsystem_platform.dylib) + 0  [0x196eccdc0]
    +                                             ! 1 exec_byte_code  (in emacs) + 15432  [0x100ba2c68]  bytecode.c:1637
    +                                             ! 1 exec_byte_code  (in emacs) + 2844  [0x100b9fb3c]  bytecode.c:783
    +                                             8 exec_byte_code  (in emacs) + 6264  [0x100ba0898]  bytecode.c:1076
    +                                             ! 2 exec_byte_code  (in emacs) + 296  [0x100b9f148]  bytecode.c:531
    +                                             ! 1 exec_byte_code  (in emacs) + 3356  [0x100b9fd3c]  bytecode.c:0
    +                                             ! 1 exec_byte_code  (in emacs) + 2652  [0x100b9fa7c]  bytecode.c:768
    +                                             ! 1 exec_byte_code  (in emacs) + 2800  [0x100b9fb10]  bytecode.c:780
    +                                             ! 1 exec_byte_code  (in emacs) + 2844  [0x100b9fb3c]  bytecode.c:783
    +                                             ! 1 list2  (in emacs) + 80  [0x100b27304]  alloc.c:2747
    +                                             ! : 1 lisp_align_malloc  (in emacs) + 332  [0x100b27100]  alloc.c:1251
    +                                             ! :   1 lisp_align_malloc  (in emacs) + 332  [0x100b27100]  alloc.c:1251
    +                                             ! :     1 mem_insert  (in emacs) + 108  [0x100b2e61c]  alloc.c:0
    +                                             ! 1 list2  (in emacs) + 216  [0x100b2738c]  alloc.c:2747
    +                                             !   1 lisp_align_malloc  (in emacs) + 332  [0x100b27100]  alloc.c:1251
    +                                             !     1 lisp_align_malloc  (in emacs) + 332  [0x100b27100]  alloc.c:1251
    +                                             !       1 mem_insert  (in emacs) + 108  [0x100b2e61c]  alloc.c:0
    +                                             6 exec_byte_code  (in emacs) + 12272  [0x100ba2010]  bytecode.c:1426
    +                                             ! 2 exec_byte_code  (in emacs) + 2756,2792  [0x100b9fae4,0x100b9fb08]  bytecode.c:780
    +                                             ! 1 Fcurrent_buffer  (in emacs) + 12  [0x100aec370]  buffer.c:2138
    +                                             ! 1 exec_byte_code  (in emacs) + 15816  [0x100ba2de8]  bytecode.c:0
    +                                             ! 1 exec_byte_code  (in emacs) + 2824  [0x100b9fb28]  bytecode.c:782
    +                                             ! 1 exec_byte_code  (in emacs) + 2844  [0x100b9fb3c]  bytecode.c:783
    +                                             3 exec_byte_code  (in emacs) + 12056  [0x100ba1f38]  bytecode.c:1414
    +                                             ! 1 exec_byte_code  (in emacs) + 3352  [0x100b9fd38]  bytecode.c:0
    +                                             ! 1 exec_byte_code  (in emacs) + 516  [0x100b9f224]  bytecode.c:537
    +                                             ! 1 exec_byte_code  (in emacs) + 3736  [0x100b9feb8]  bytecode.c:861
    +                                             2 exec_byte_code  (in emacs) + 4980  [0x100ba0394]  bytecode.c:1000
    +                                             ! 2 FUNCTIONP  (in emacs) + 4  [0x100b565b8]  eval.c:2780
    +                                             1 exec_byte_code  (in emacs) + 5012  [0x100ba03b4]  bytecode.c:1000
    +                                             ! 1 exec_byte_code  (in emacs) + 996  [0x100b9f404]  lisp.h:0
    +                                             1 exec_byte_code  (in emacs) + 428  [0x100b9f1cc]  bytecode.c:534
    +                                               1 exec_byte_code  (in emacs) + 428  [0x100b9f1cc]  bytecode.c:534
    +                                                 1 Flist  (in emacs) + 136  [0x100b280f4]  alloc.c:2823
    2024 Thread_2620143
    + 2024 thread_start  (in libsystem_pthread.dylib) + 8  [0x196eb108c]
    +   2024 _pthread_start  (in libsystem_pthread.dylib) + 148  [0x196eb626c]
    +     2024 __NSThread__start__  (in Foundation) + 808  [0x197e5571c]
    +       2024 -[EmacsApp fd_handler:]  (in emacs) + 248  [0x100beabe4]  nsterm.m:5852
    +         2024 pselect$DARWIN_EXTSN  (in libsystem_kernel.dylib) + 60  [0x196e7eca0]
    +           2024 __pselect  (in libsystem_kernel.dylib) + 8  [0x196e7eda0]
    2024 Thread_2620149: com.apple.NSEventThread
    + 2024 thread_start  (in libsystem_pthread.dylib) + 8  [0x196eb108c]
    +   2024 _pthread_start  (in libsystem_pthread.dylib) + 148  [0x196eb626c]
    +     2024 _NSEventThread  (in AppKit) + 196  [0x199c4c6f4]
    +       2024 CFRunLoopRunSpecific  (in CoreFoundation) + 600  [0x196f80490]
    +         2024 __CFRunLoopRun  (in CoreFoundation) + 1180  [0x196f810cc]
    +           2024 __CFRunLoopServiceMachPort  (in CoreFoundation) + 372  [0x196f82c1c]
    +             2024 mach_msg  (in libsystem_kernel.dylib) + 76  [0x196e78d40]
    +               2024 mach_msg_trap  (in libsystem_kernel.dylib) + 8  [0x196e788d0]
    2024 Thread_2622113
    + 2024 start_wqthread  (in libsystem_pthread.dylib) + 8  [0x196eb1080]
    +   2024 _pthread_wqthread  (in libsystem_pthread.dylib) + 364  [0x196eb23ac]
    +     2024 __workq_kernreturn  (in libsystem_kernel.dylib) + 8  [0x196e7a74c]
    1719 Thread_2621936
      1719 start_wqthread  (in libsystem_pthread.dylib) + 8  [0x196eb1080]
        1719 _pthread_wqthread  (in libsystem_pthread.dylib) + 364  [0x196eb23ac]
          1719 __workq_kernreturn  (in libsystem_kernel.dylib) + 8  [0x196e7a74c]

Total number in stack (recursive counted multiple, when >=5):
        73       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6928
        68       mark_char_table  (in emacs) + 416  [0x100b2f270]  alloc.c:6473
        68       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:0
        68       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6732
        66       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6729
        65       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6727
        51       pdumper_marked_p_impl  (in emacs) + 0  [0x100b33f0c]  pdumper.c:5172
        49       mark_char_table  (in emacs) + 204  [0x100b2f19c]  alloc.c:6476
        48       process_mark_stack  (in emacs) + 744  [0x100b2c86c]  alloc.c:6949
        44       process_mark_stack  (in emacs) + 364  [0x100b2c6f0]  alloc.c:6975
        43       process_mark_stack  (in emacs) + 540  [0x100b2c7a0]  alloc.c:6928
        38       mark_localized_symbol  (in emacs) + 216  [0x100b2f4b8]  alloc.c:6558
        35       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6972
        34       process_mark_stack  (in emacs) + 292  [0x100b2c6a8]  alloc.c:6972
        33       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6971
        31       process_mark_stack  (in emacs) + 848  [0x100b2c8d4]  alloc.c:6960
        30       pdumper_set_marked_impl  (in emacs) + 0  [0x100b33f48]  pdumper.c:5185
        29       process_mark_stack  (in emacs) + 1192  [0x100b2ca2c]  alloc.c:6874
        26       mark_char_table  (in emacs) + 0  [0x100b2f0d0]  alloc.c:6468
        24       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6816
        24       process_mark_stack  (in emacs) + 1064  [0x100b2c9ac]  alloc.c:6799
        22       process_mark_stack  (in emacs) + 1452  [0x100b2cb30]  alloc.c:6916
        19       mark_char_table  (in emacs) + 0  [0x100b2f0d0]  alloc.c:6463
        19       process_mark_stack  (in emacs) + 1128  [0x100b2c9ec]  alloc.c:6816
        18       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6798
        17       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6814
        17       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6931
        16       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6794
        14       find_interval  (in emacs) + 140  [0x100bbea54]  intervals.c:622
        14       lookup_char_property  (in emacs) + 76  [0x100bc0790]  intervals.c:1736
        14       mark_buffer  (in emacs) + 204  [0x100b2efe4]  alloc.c:6501
        14       mark_char_table  (in emacs) + 104  [0x100b2f138]  alloc.c:6462
        14       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6975
        14       process_mark_stack  (in emacs) + 1116  [0x100b2c9e0]  alloc.c:6816
        14       process_mark_stack  (in emacs) + 1204  [0x100b2ca38]  alloc.c:6802
        14       process_mark_stack  (in emacs) + 584  [0x100b2c7cc]  alloc.c:6931
        14       process_mark_stack  (in emacs) + 96  [0x100b2c5e4]  alloc.c:6838
        12       exec_byte_code  (in emacs) + 0  [0x100b9f020]  bytecode.c:0
        12       mark_localized_symbol  (in emacs) + 156  [0x100b2f47c]  alloc.c:6557
        11       mark_char_table  (in emacs) + 0  [0x100b2f0d0]  alloc.c:6470
        11       pdumper_cold_object_p_impl  (in emacs) + 0  [0x100b33df0]  pdumper.c:5142
        10       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6978
        9       traverse_intervals_noorder  (in emacs) + 56  [0x100bbe430]  intervals.c:244
        8       lookup_char_property  (in emacs) + 220  [0x100bc0820]  intervals.c:1719
        8       mark_char_table  (in emacs) + 0  [0x100b2f0d0]  alloc.c:6476
        8       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6799
        7       exec_byte_code  (in emacs) + 0  [0x100b9f020]  bytecode.c:783
        7       get_char_property_and_overlay  (in emacs) + 608  [0x100bc32bc]  textprop.c:640
        7       lookup_char_property  (in emacs) + 0  [0x100bc0744]  intervals.c:1719
        7       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6820
        7       process_mark_stack  (in emacs) + 1276  [0x100b2ca80]  alloc.c:6803
        7       update_syntax_table  (in emacs) + 1008  [0x100b8fb9c]  syntax.c:424
        6       Fassq  (in emacs) + 0  [0x100b5f664]  fns.c:1748
        6       exec_byte_code  (in emacs) + 0  [0x100b9f020]  bytecode.c:780
        6       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6802
        6       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6980
        5       Fparse_partial_sexp  (in emacs) + 0  [0x100b9b228]  syntax.c:3603
        5       ___chkstk_darwin  (in libsystem_pthread.dylib) + 0  [0x196eb1090]
        5       exec_byte_code  (in emacs) + 3392  [0x100b9fd60]  bytecode.c:809
        5       get_char_property_and_overlay  (in emacs) + 892  [0x100bc33d8]  textprop.c:666
        5       lisp_align_malloc  (in emacs) + 332  [0x100b27100]  alloc.c:1251
        5       process_mark_stack  (in emacs) + 0  [0x100b2c584]  alloc.c:6731
        5       unbind_to  (in emacs) + 116  [0x100b50c48]  eval.c:3639

Sort by top of stack, same collapsed (when >= 5):
        __workq_kernreturn  (in libsystem_kernel.dylib)        3743
        __pselect  (in libsystem_kernel.dylib)        2024
        mach_msg_trap  (in libsystem_kernel.dylib)        2024
        process_mark_stack  (in emacs)        978
        exec_byte_code  (in emacs)        217
        mark_char_table  (in emacs)        121
        scan_sexps_forward  (in emacs)        111
        pdumper_marked_p_impl  (in emacs)        84
        allocate_vectorlike  (in emacs)        75
        pdumper_set_marked_impl  (in emacs)        57
        pdumper_cold_object_p_impl  (in emacs)        42
        lookup_char_property  (in emacs)        26
        sweep_conses  (in emacs)        24
        Fassq  (in emacs)        20
        find_interval  (in emacs)        19
        sweep_vectors  (in emacs)        17
        re_match_2_internal  (in emacs)        16
        sweep_strings  (in emacs)        14
        update_syntax_table  (in emacs)        14
        funcall_subr  (in emacs)        13
        Fparse_partial_sexp  (in emacs)        12
        get_char_property_and_overlay  (in emacs)        11
        set_point_both  (in emacs)        11
        unbind_to  (in emacs)        9
        ___chkstk_darwin  (in libsystem_pthread.dylib)        8
        Fcons  (in emacs)        7
        balance_an_interval  (in emacs)        7
        next_interval  (in emacs)        7
        Fcar  (in emacs)        6
        _platform_memmove  (in libsystem_platform.dylib)        6
        validate_interval_range  (in emacs)        6
        Fsymbol_value  (in emacs)        5
        mem_insert  (in emacs)        5

Binary Images:
       0x1009e8000 -        0x100c6fff3 +emacs (0) <A917E624-A0F3-30B3-BC05-827FFDAE524C> /Users/*/emacs
       0x101300000 -        0x101323ff3 +libpng16.16.dylib (0) <07D49D95-F635-348E-B049-DE52B1C55492> /opt/homebrew/*/libpng16.16.dylib
       0x101334000 -        0x10133fff7 +libjansson.4.dylib (0) <1205278E-082E-3F4B-995E-710ADCB907EC> /opt/homebrew/*/libjansson.4.dylib
       0x101350000 -        0x10135bfff +libintl.8.dylib (0) <5AAE591E-5A77-38EF-B2D2-817BAA2FD761> /opt/homebrew/*/libintl.8.dylib
       0x10136c000 -        0x10138bfff +libidn2.0.dylib (0) <7EBDDF68-C1BB-3572-94FE-423FD8312A2E> /opt/homebrew/*/libidn2.0.dylib
       0x10139c000 -        0x1013a7fff +libtasn1.6.dylib (0) <82AAA6EE-6E1D-3902-A5B9-879B6468FDA2> /opt/homebrew/*/libtasn1.6.dylib
       0x1013cc000 -        0x101429113  dyld (955) <FBB89662-E6F2-3434-B542-F75185AC5E74> /usr/lib/dyld
       0x101480000 -        0x1014afff3 +libdbus-1.3.dylib (0) <77C5EB4E-400B-3AC7-B520-A3478C4C6113> /opt/homebrew/*/libdbus-1.3.dylib
       0x1014d0000 -        0x10150bff3 +liblcms2.2.dylib (0) <1478C367-7C89-3846-A709-0301E4DE34AC> /opt/homebrew/*/liblcms2.2.dylib
       0x10152c000 -        0x10153c29f +libffi.8.dylib (0) <1EE859BD-6625-32A1-B6B1-389998CB128C> /opt/homebrew/*/libffi.8.dylib
       0x101570000 -        0x10159fffb +libnettle.8.4.dylib (0) <58FAA649-A21C-30F3-8420-46EDB0F2E83C> /opt/homebrew/*/libnettle.8.4.dylib
       0x101600000 -        0x101637fff +libhogweed.6.4.dylib (0) <333C488A-CCF3-3A74-8C37-131B71CF1F25> /opt/homebrew/*/libhogweed.6.4.dylib
       0x101690000 -        0x1017fbfff +libgnutls.30.dylib (0) <52D703E8-0D2D-35DC-B5F2-E751AE1C8D83> /opt/homebrew/*/libgnutls.30.dylib
       0x101850000 -        0x10190ffff +libp11-kit.0.dylib (0) <B8022D26-2F47-33D6-B428-E9994F7A5DAD> /opt/homebrew/*/libp11-kit.0.dylib
       0x1019d8000 -        0x101a2ffff +libgmp.10.dylib (0) <EFC29CA3-3B2A-3664-976D-B890D76D3D08> /opt/homebrew/*/libgmp.10.dylib
       0x101b20000 -        0x101cb7ffb +libunistring.2.dylib (0) <FB00227C-B927-3173-9B5C-79A900D57F1D> /opt/homebrew/*/libunistring.2.dylib
       0x106278000 -        0x106280047  libobjc-trampolines.dylib (841.13) <D2FBD9CD-4926-3342-81D5-902487BAC01A> /usr/lib/libobjc-trampolines.dylib
       0x10fad0000 -        0x10fad7fff  com.apple.CloudDocsFileProvider (1.0 - 946.101.2) <07AED6A6-752D-3893-89A4-FFE2B4F5C2E4> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/CloudDocsFileProvider.bundle/Contents/MacOS/CloudDocsFileProvider
       0x10fae8000 -        0x10faeffff  com.apple.FileProviderOverride (399.101.4 - 399.101.4) <5A38D355-0B99-3E7A-B4EC-3CD2C31DC282> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/FileProviderOverride.bundle/Contents/MacOS/FileProviderOverride
       0x10ff84000 -        0x10ff9fff3  com.apple.findersync.fileprovideroverride.FinderSyncCollaborationFileProviderOverride (1.0 - 1440.3.1) <FB335F3B-37BB-38B2-A593-44A06B2C5ACB> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/FinderSyncCollaborationFileProviderOverride.bundle/Contents/MacOS/FinderSyncCollaborationFileProviderOverride
       0x196bdd000 -        0x196bdeffe  libsystem_blocks.dylib (79.1) <DF7F3CF2-FF71-3E86-AA3A-46465B8B8DEC> /usr/lib/system/libsystem_blocks.dylib
       0x196bdf000 -        0x196c20ff3  libxpc.dylib (2236.100.61) <4C6EB90B-BD32-3CAD-9F25-C9F234775EFB> /usr/lib/system/libxpc.dylib
       0x196c21000 -        0x196c3affe  libsystem_trace.dylib (1375.100.9) <AAD0C6C8-F622-3FAC-AF4F-A2A021F9AE17> /usr/lib/system/libsystem_trace.dylib
       0x196c3b000 -        0x196cc2fcf  libcorecrypto.dylib (1218.100.47) <29B2F7FD-0F6D-3F41-B569-FB4AE94F4D6B> /usr/lib/system/libcorecrypto.dylib
       0x196cc3000 -        0x196cedffb  libsystem_malloc.dylib (374.100.5) <3A021C33-DD59-37F7-9A86-5CEED68FF9BA> /usr/lib/system/libsystem_malloc.dylib
       0x196cee000 -        0x196d34ff7  libdispatch.dylib (1325.100.36) <DC048E3B-E023-3D17-AFE5-4FF3DC625608> /usr/lib/system/libdispatch.dylib
       0x196d35000 -        0x196d72ffe  libobjc.A.dylib (841.13) <4B5AB8FB-60E0-3992-BA0E-A073A3FA86A7> /usr/lib/libobjc.A.dylib
       0x196d73000 -        0x196d75fff  libsystem_featureflags.dylib (56) <8BCCBE77-3AEB-3BDA-A6B6-4D1D0B7FFBCF> /usr/lib/system/libsystem_featureflags.dylib
       0x196d76000 -        0x196df7fff  libsystem_c.dylib (1507.100.9) <FD566A15-42D8-314A-A99A-B59237DDF5BC> /usr/lib/system/libsystem_c.dylib
       0x196df8000 -        0x196e5eff3  libc++.1.dylib (1300.23) <06BC1EC0-9992-398E-A85B-2973EB1FDBA2> /usr/lib/libc++.1.dylib
       0x196e5f000 -        0x196e76ffb  libc++abi.dylib (1300.23) <E0FC64A3-790D-34B3-A092-432A0E6B1C82> /usr/lib/libc++abi.dylib
       0x196e77000 -        0x196eaefeb  libsystem_kernel.dylib (8020.101.4) <1D7B3B8E-75A1-34EA-AA52-9F7C23155C55> /usr/lib/system/libsystem_kernel.dylib
       0x196eaf000 -        0x196ebbff3  libsystem_pthread.dylib (486.100.11) <CEE8BC77-6923-34D9-89A3-6F8F7279605E> /usr/lib/system/libsystem_pthread.dylib
       0x196ebc000 -        0x196ec8fff  libdyld.dylib (955) <D9C3F911-6697-3B95-A4F6-4FB979F04A6E> /usr/lib/system/libdyld.dylib
       0x196ec9000 -        0x196ed0ffb  libsystem_platform.dylib (273.100.5) <84FA5DD0-806C-310E-B047-479924CD688C> /usr/lib/system/libsystem_platform.dylib
       0x196ed1000 -        0x196efdff3  libsystem_info.dylib (554) <2CE857CF-271D-3196-9087-0875C4D153BD> /usr/lib/system/libsystem_info.dylib
       0x196efe000 -        0x197443ff4  com.apple.CoreFoundation (6.9 - 1858.112) <8E1809FF-F5B1-3D9E-BE15-F2E7B1D8CE51> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
       0x197444000 -        0x1976a3ffb  com.apple.LaunchServices (1141.1 - 1141.1) <BDAC35E0-E3DC-3EC9-AC3D-3B68FD19539C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
       0x1976a4000 -        0x1977ccfff  com.apple.gpusw.MetalTools (1.0 - 1) <A4C5C950-9956-37FF-9A8B-B631F875CC69> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
       0x1977cd000 -        0x197a42ffb  libBLAS.dylib (1381.100.10) <DB3A2A8A-8593-3C9C-9E7C-8E76A5EBE556> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
       0x197a43000 -        0x197a8aff3  com.apple.Lexicon-framework (1.0 - 98.1) <9E82BF97-AFD8-3784-84F8-B0CDBF9F1445> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
       0x197a8b000 -        0x197aecffb  libSparse.dylib (108.100.1) <501D6C38-82DC-389F-880C-8E65C59F88C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
       0x197aed000 -        0x197b71ffb  com.apple.SystemConfiguration (1.21 - 1.21) <686E7376-D1F3-3EB7-8AA2-D37A34DD280B> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
       0x197b72000 -        0x197ba5ff7  libCRFSuite.dylib (51) <E99C091B-9FF7-364B-BDB9-379FC75DB8FC> /usr/lib/libCRFSuite.dylib
       0x197ba6000 -        0x197df8ff4  libmecabra.dylib (972.10) <ACDE5FB9-9CF3-3AEC-B50B-7BAD9F62BC52> /usr/lib/libmecabra.dylib
       0x197df9000 -        0x1981e9ffe  com.apple.Foundation (6.9 - 1858.112) <886A3487-88A6-30BB-B179-1A92996C67CF> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
       0x1981ea000 -        0x1982edffb  com.apple.LanguageModeling (1.0 - 277.4) <0610D2A8-AE63-3D61-9620-6325DA3CB87A> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
       0x1982ee000 -        0x19840dffa  com.apple.CoreDisplay (265.2 - 265.2) <A0987E94-80F9-3961-A251-DF3A9B8776EA> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
       0x19840e000 -        0x1986b1ff3  com.apple.audio.AudioToolboxCore (1.0 - 1245.79.1) <16FAAE1C-3EFD-34C3-9C2F-0F60956778F1> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
       0x1986b2000 -        0x19888dff6  com.apple.CoreText (710.4.0.5 - 710.4.0.5) <E88BFD20-4C8A-355F-96DD-407C2F00BA23> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
       0x19888e000 -        0x198fb0ff6  com.apple.audio.CoreAudio (5.0 - 5.0) <51DD4B50-D2B2-31E7-ACAE-F662748A2D2B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
       0x198fb1000 -        0x19932dffa  com.apple.security (7.0 - 60158.100.133) <68312C1A-D604-3812-A9BE-04CF4639782C> /System/Library/Frameworks/Security.framework/Versions/A/Security
       0x19932e000 -        0x1995e3ff7  libicucore.A.dylib (70104) <BF9FC4BA-0459-3B15-9630-F3B0AA3903DD> /usr/lib/libicucore.A.dylib
       0x1995e4000 -        0x1995eeff3  libsystem_darwin.dylib (1507.100.9) <D07777F4-2044-30E7-82FB-8F239F71A802> /usr/lib/system/libsystem_darwin.dylib
       0x1995ef000 -        0x1998eaff5  com.apple.CoreServices.CarbonCore (1319 - 1319) <CC39CF0C-A415-3759-9977-CF8699FF5A08> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
       0x1998eb000 -        0x199927ffb  com.apple.CoreServicesInternal (484 - 484) <37F1609F-AF45-3F0A-971B-7F9D0DCFC9E2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
       0x199928000 -        0x199965ffd  com.apple.CSStore (1141.1 - 1141.1) <D294FFA8-531C-36C8-8AF3-369DBCD78C37> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
       0x199966000 -        0x199a3cff2  com.apple.framework.IOKit (2.0.2 - 1955.100.5) <1D3A63F1-1F43-3EAD-9815-FA086CBEDA27> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x199a3d000 -        0x199a4cfff  libsystem_notify.dylib (301) <5FF2DA89-8A88-34BB-AA68-BA9C5D24E639> /usr/lib/system/libsystem_notify.dylib
       0x199a4d000 -        0x199a9dffb  libsandbox.1.dylib (1657.101.2) <26C312E7-A8E3-371A-85C7-CF06AA7ADB8D> /usr/lib/libsandbox.1.dylib
       0x199a9e000 -        0x19a955ff6  com.apple.AppKit (6.9 - 2113.40.127) <153590C1-624C-38FB-8FFB-BA751BCCBD16> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
       0x19a956000 -        0x19abc6ff4  com.apple.UIFoundation (1.0 - 786.9) <F0D3190B-04A2-3928-924E-BA8D05EF9953> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
       0x19abc7000 -        0x19abdaff3  com.apple.UniformTypeIdentifiers (709 - 709) <46515FEB-0F4B-36D2-8BD2-A2AB5FC2418F> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
       0x19abdb000 -        0x19ad62ffc  com.apple.desktopservices (2.3 - 1438.3.1) <59EA010E-076C-3565-A3B3-9B8CA155ACFB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
       0x19b070000 -        0x19bafefff  libnetwork.dylib (2750.100.70) <2B8EA692-87A3-343D-B5DD-341325AECFA7> /usr/lib/libnetwork.dylib
       0x19baff000 -        0x19bfb2ff2  com.apple.CFNetwork (1331.0.7 - 1331.0.7) <CFDB5CCD-A5E9-3E08-AD4F-087F420DB6A0> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
       0x19bfb3000 -        0x19bfcaffb  libsystem_networkextension.dylib (1471.100.24) <8D842641-0F27-34B1-AEFC-C95B178E5433> /usr/lib/system/libsystem_networkextension.dylib
       0x19bfcb000 -        0x19bfccfff  libenergytrace.dylib (23) <0B25FE36-5D44-3167-8D84-DC1B9DBABABF> /usr/lib/libenergytrace.dylib
       0x19bfcd000 -        0x19c023ffe  libMobileGestalt.dylib (1073.100.31.0.1) <95E7CB3D-E4B1-30AD-9843-4B9661D49F2A> /usr/lib/libMobileGestalt.dylib
       0x19c024000 -        0x19c03bff7  libsystem_asl.dylib (392.100.2) <6B2F4A2F-2C36-3D5D-87F0-9B6BBAE5560C> /usr/lib/system/libsystem_asl.dylib
       0x19c03c000 -        0x19c057ff9  com.apple.TCC (1.0 - 1) <5397213B-5DC5-3512-B525-BD2C4F95164F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
       0x19c058000 -        0x19c42cff0  com.apple.SkyLight (1.600.0 - 670.17) <2385383B-3D2C-39C8-B872-2B218B911AD3> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
       0x19c42d000 -        0x19ca39ff3  com.apple.CoreGraphics (2.0 - 1557.5.4) <0598A995-9BC7-3F22-868C-50C5A1CF9C7A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
       0x19ca3a000 -        0x19cb36ff7  com.apple.ColorSync (4.13.0 - 3521.5.2) <5039FFD1-B572-3001-A9BA-28E38AE47D8E> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
       0x19cb37000 -        0x19cb96ff0  com.apple.HIServices (1.22 - 739.1) <E6EB06F5-5546-3C97-A88D-DB6EAA655D97> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
       0x19cfa4000 -        0x19d378ff8  com.apple.CoreData (120 - 1152) <D3E07F23-512A-3722-AE19-417DD3288C99> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
       0x19d379000 -        0x19d392fff  com.apple.ProtocolBuffer (1 - 288.22.9.15.1) <F17B7E40-927E-3018-997E-C89B0038F131> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
       0x19d393000 -        0x19d552ffb  libsqlite3.dylib (331.5) <B80F02DC-291B-3982-8355-E5719BF494FF> /usr/lib/libsqlite3.dylib
       0x19d553000 -        0x19d5d0ffa  com.apple.Accounts (113 - 113) <5C4E10A8-EA1E-3CDC-A456-516484733B38> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
       0x19d5d1000 -        0x19d5eaffe  com.apple.commonutilities (8.0 - 900) <2AD0546E-40B4-350E-A024-D4539BDCD68F> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
       0x19d5eb000 -        0x19d6a6ffa  com.apple.BaseBoard (567.5 - 567.5) <426AFF92-1D58-39DC-B853-6CB62EFD4459> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
       0x19d6a7000 -        0x19d701ffe  com.apple.RunningBoardServices (1.0 - 618.100.42) <00570EAA-FB24-397F-A606-F0173CB991FD> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
       0x19d702000 -        0x19d772ffb  com.apple.AE (924 - 924) <0A3AB363-B23B-3956-8E4C-7C5F72680481> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
       0x19d773000 -        0x19d77bffc  libdns_services.dylib (1557.101.2) <BCAB7C37-03A4-3587-BC80-4CD05F7BE6F1> /usr/lib/libdns_services.dylib
       0x19d77c000 -        0x19d784fff  libsystem_symptoms.dylib (1617.101.2) <753D2289-1662-3922-8A94-FAC9DED81CD5> /usr/lib/system/libsystem_symptoms.dylib
       0x19d785000 -        0x19d92dffa  com.apple.Network (1.0 - 1) <B54894EC-A414-3036-BB8C-E9024EB44E1A> /System/Library/Frameworks/Network.framework/Versions/A/Network
       0x19d92e000 -        0x19d95efff  com.apple.analyticsd (1.0 - 1) <9D7D3779-B1E2-335E-B075-0B0C7E8648EB> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
       0x19d95f000 -        0x19d961fff  libDiagnosticMessagesClient.dylib (112) <28AB09CF-5F67-3012-BC5B-1387122C2C81> /usr/lib/libDiagnosticMessagesClient.dylib
       0x19d962000 -        0x19d9b3ff0  com.apple.spotlight.metadata.utilities (1.0 - 2183.17) <012CFA26-DDE9-317D-A31C-E1FE70E301BC> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
       0x19d9b4000 -        0x19da53ff7  com.apple.Metadata (10.7.0 - 2183.17) <0623AF12-D03D-3B26-AD78-668832C5CA5C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
       0x19da54000 -        0x19da5bfff  com.apple.DiskArbitration (2.7 - 2.7) <BFB7DBD6-EE49-33DA-8874-237F1D082357> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
       0x19da5c000 -        0x19dddfff3  com.apple.vImage (8.1 - 555.3) <72494E17-CD53-36FC-BA80-374BBCE2ED4F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
       0x19dde0000 -        0x19e109ff7  com.apple.QuartzCore (1.11 - 964.19.5) <B3F9D8BC-5D97-3A56-8797-FD3E8847A5B0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
       0x19e10a000 -        0x19e159ffa  libFontRegistry.dylib (333.2.0.1) <7A3F4CEA-C3DB-31A5-8750-7747E07F5AF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
       0x19e15a000 -        0x19e297ffc  com.apple.coreui (2.1 - 738.1) <4E815425-8E55-38FC-B8E5-D328445D9137> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
       0x19e298000 -        0x19e393ffd  com.apple.ViewBridge (640.1 - 640.1) <015ECF34-891E-3308-8C96-D7610255D295> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
       0x19e394000 -        0x19e39fff9  com.apple.PerformanceAnalysis (1.302.2 - 302.2) <B9E036D3-8DFC-3C4F-A976-D247AD65569E> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
       0x19e3a0000 -        0x19e3afff9  com.apple.OpenDirectory (12.3 - 233) <7D0DBABF-3641-3023-90FA-FBC34D93AADA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
       0x19e3b0000 -        0x19e3cffff  com.apple.CFOpenDirectory (12.3 - 233) <D20BAF4E-9452-3684-84A3-B403C9DFD96B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
       0x19e3d0000 -        0x19e3dcfff  com.apple.CoreServices.FSEvents (1326.100.8 - 1326.100.8) <8DF5D744-BF1F-397D-BA11-429182BF64AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
       0x19e3dd000 -        0x19e403fff  com.apple.coreservices.SharedFileList (155 - 155) <807CB9F0-17E2-31FE-9228-A576CF76A1AD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
       0x19e404000 -        0x19e406fff  libapp_launch_measurement.dylib (16) <E38F2FE9-9098-32B1-8001-DF04627895F4> /usr/lib/libapp_launch_measurement.dylib
       0x19e407000 -        0x19e451ff9  com.apple.CoreAutoLayout (1.0 - 28) <31223A23-39A5-3437-B65C-CE741A5E10E9> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
       0x19e452000 -        0x19e53fff3  libxml2.2.dylib (35.6) <265109CD-651C-3398-A819-424554FBDC3A> /usr/lib/libxml2.2.dylib
       0x19e540000 -        0x19e59dff4  com.apple.CoreVideo (1.8 - 0.0) <F988DBD8-B383-38C8-A141-F80E0252430E> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
       0x19e59e000 -        0x19e5a0ffb  com.apple.loginsupport (3.0 - 3.0) <831CD7C2-527C-31D0-85C4-B28FB20E4FBC> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
       0x19e5a1000 -        0x19e5cdfff  com.apple.aps.framework (4.0 - 4.0) <6D4AF097-2339-349A-85DD-E365378E3599> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
       0x19e5ce000 -        0x19e5f5ff9  com.apple.UserManagement (1.0 - 1) <05C2BABE-D7A2-394D-9A50-42D6C573DC48> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
       0x19e5f6000 -        0x19e7f2ffe  com.apple.cloudkit.CloudKit (1950.31.1 - 1950.31.1) <2F4588B1-C166-3FF4-A039-ED9E886ECDDD> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
       0x19e7f3000 -        0x19e899ff6  com.apple.CloudDocs (1.0 - 946.101.2) <0C7406F8-7807-3BDE-98AF-1E9236569C52> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
       0x19f6c6000 -        0x19f76cff1  com.apple.corelocation (2667.0.23 - 2667.0.23) <A43E31D7-46E9-3F0B-AA25-1D0144C1AF04> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
       0x19f76d000 -        0x19f78bfff  libsystem_containermanager.dylib (383.100.23) <ECF472AD-D73F-3C98-B186-2AD4EE20F4D5> /usr/lib/system/libsystem_containermanager.dylib
       0x19f78c000 -        0x19f79fff5  com.apple.IOSurface (302.14 - 302.14) <F819B73A-A04B-3909-89FB-4F5249653913> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
       0x19f7a0000 -        0x19f7a9ff9  com.apple.IOAccelerator (462.8 - 462.8) <43F39E52-3AF8-3060-8779-36D302D8D10D> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
       0x19f7aa000 -        0x19f8ebff5  com.apple.Metal (261.13 - 261.13) <DA3FD743-76D9-351C-9BB0-17027A76B6DF> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
       0x19f8ec000 -        0x19f912fff  com.apple.audio.caulk (1.0 - 92) <23D0D7CE-CB87-35F3-9C15-943BD8F6645A> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
       0x19f913000 -        0x19fa28fff  com.apple.CoreMedia (1.0 - 2940.20.4.3) <BE2A60DE-57EB-3789-9E4E-B3761B2E62C9> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
       0x19fa29000 -        0x19fb6cff4  libFontParser.dylib (329.4.0.1) <2E874A5E-86AF-3966-82AB-9FE74BE5370E> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
       0x19fb6d000 -        0x19fea0ff8  com.apple.HIToolbox (2.1.1 - 1113.9) <4A1D1F30-C79D-3502-B51F-9792ADBD8E06> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
       0x19fea1000 -        0x19feb8fff  com.apple.framework.DFRFoundation (1.0 - 271) <CE771415-B24C-3CDA-861A-19283838B829> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
       0x19feb9000 -        0x19febdffb  com.apple.dt.XCTTargetBootstrap (20073.1) <E0CE17D2-6499-3C2F-BAE2-51D5A8D8513A> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
       0x19febe000 -        0x19feedffb  com.apple.CoreSVG (1.0 - 175.5.1) <9B8A3A33-7961-3115-A6D4-90027A189ACF> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
       0x19feee000 -        0x1a013cff5  com.apple.ImageIO (3.3.0 - 2222.5.4) <3D78F847-399D-3D41-B420-2C5C99B5941A> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
       0x1a013d000 -        0x1a049cff4  com.apple.CoreImage (17.0.0 - 1240.7) <84DD9802-BEAA-356C-B149-D69F669B88CA> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
       0x1a049d000 -        0x1a0510ff6  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <AF194216-0F39-35C0-97BE-CE5263B0B853> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
       0x1a0511000 -        0x1a0515fff  libsystem_configuration.dylib (1163.100.19.0.2) <F241F139-76C4-38FC-A44C-5D695A58592D> /usr/lib/system/libsystem_configuration.dylib
       0x1a0516000 -        0x1a051afff  libsystem_sandbox.dylib (1657.101.2) <9180A377-715B-3790-81DB-AB51A9F0C3C0> /usr/lib/system/libsystem_sandbox.dylib
       0x1a051b000 -        0x1a051cffd  com.apple.AggregateDictionary (1.0 - 1) <CDA2E8F0-016E-3313-96A7-59F36DE9DA6E> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
       0x1a051d000 -        0x1a0520fff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <8458AE70-E109-3A66-A500-99738AF42FDC> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
       0x1a0521000 -        0x1a0522fff  liblangid.dylib (136) <A425ADAC-C7A1-34B1-8076-99A1A8234D34> /usr/lib/liblangid.dylib
       0x1a0523000 -        0x1a0613ffe  com.apple.CoreNLP (1.0 - 273.2) <84CF3405-1894-329B-B1F1-D5A8ECABE405> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
       0x1a0614000 -        0x1a061bffe  com.apple.LinguisticData (1.0 - 399) <A5C41A78-F574-38D1-886D-EEAF21C80507> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
       0x1a061c000 -        0x1a0bc7f83  libBNNS.dylib (403.100.7) <3FAEAC04-F7D4-3092-84EE-A9235E95A2D3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
       0x1a0bc8000 -        0x1a0cadf17  libvDSP.dylib (794.100.2) <88531120-62B0-36E0-8240-9A9AD8861C1C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
       0x1a0cae000 -        0x1a0cc0ff9  com.apple.CoreEmoji (1.0 - 143) <33E9F2FD-20AA-3552-A0C5-463152D11FC6> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
       0x1a0cc1000 -        0x1a0cccff7  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <9B197D0F-85B2-3563-92DC-E2CDF7CDC8D3> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
       0x1a0ccd000 -        0x1a0da9fff  com.apple.framework.CoreWLAN (16.0 - 1657) <7F8D9117-58CC-314A-B94D-73B4DF0841BB> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
       0x1a0daa000 -        0x1a0f9affa  com.apple.CoreUtils (6.9 - 690.41) <00641A59-3CCB-316B-9361-5BF3DA85C17B> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
       0x1a0f9b000 -        0x1a0fc3ff2  com.apple.MobileKeyBag (2.0 - 1.0) <669D0B5F-1AAC-3C00-B34D-BDD088BDE171> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
       0x1a0fc4000 -        0x1a0fd5ffa  com.apple.AssertionServices (1.0 - 618.100.42) <E0019173-148F-3805-B114-CA25D1E2F073> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
       0x1a0fd6000 -        0x1a1069ff4  com.apple.securityfoundation (6.0 - 55255.100.1) <4947EE62-1FC5-3FA6-8072-66001D0341D3> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
       0x1a106a000 -        0x1a1074fff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <36E9259F-21E8-3D6D-B408-EB53E62BDEC5> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
       0x1a1075000 -        0x1a1082ff1  com.apple.xpc.ServiceManagement (1.0 - 1) <B9A3B43C-410E-341B-861B-03499E160FE6> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
       0x1a1083000 -        0x1a1085fff  libquarantine.dylib (133.100.3) <49C11AB5-FD65-39BE-A1C7-AD885809511E> /usr/lib/system/libquarantine.dylib
       0x1a1086000 -        0x1a1095fff  libCheckFix.dylib (31) <44A3FA10-E99A-3ABD-AB88-AC4B08CAA405> /usr/lib/libCheckFix.dylib
       0x1a1096000 -        0x1a10adffb  libcoretls.dylib (178) <83917B94-DF42-36A6-90F2-03BE08890659> /usr/lib/libcoretls.dylib
       0x1a10ae000 -        0x1a10befff  libbsm.0.dylib (73) <F846BE9A-6194-3F01-BB68-136C8773C3FF> /usr/lib/libbsm.0.dylib
       0x1a10bf000 -        0x1a111bff3  libmecab.dylib (972.10) <F5437F4A-11AB-3552-B4AC-892EA12C0CD1> /usr/lib/libmecab.dylib
       0x1a111c000 -        0x1a111effb  libgermantok.dylib (29) <DEC352DB-87CA-32D9-A50B-8BCFDA500095> /usr/lib/libgermantok.dylib
       0x1a111f000 -        0x1a1133ff3  libLinearAlgebra.dylib (1381.100.10) <4F8F416B-40C9-3F1C-AF32-6483A114BFB6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
       0x1a1134000 -        0x1a1345ffc  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <1DD8C78C-2645-3B61-8559-8C48BE2BA53E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
       0x1a1346000 -        0x1a139bffd  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <4201EA2A-A50D-3B8B-820C-73246D57EBBB> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
       0x1a156d000 -        0x1a159dff2  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <3BEFD5DB-B6B2-39C7-8505-A049FB9919D8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
       0x1a159e000 -        0x1a1644ffe  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <35935C8C-46FC-310D-B2B2-7572902CCBDD> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
       0x1a1645000 -        0x1a16d1ff2  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <3723B225-B34D-3B6D-AE8C-2CF02D004678> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
       0x1a16d2000 -        0x1a16e2fef  com.apple.AppleFSCompression (132.100.2 - 1.0) <52955B0D-25E3-331F-AE05-E0DA9C842941> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
       0x1a16e3000 -        0x1a16efff7  libbz2.1.0.dylib (45) <CE75B0C5-644E-3A3C-8254-705D9EBD5055> /usr/lib/libbz2.1.0.dylib
       0x1a16f0000 -        0x1a16f5fff  libsystem_coreservices.dylib (133) <92325446-C184-3BDF-B839-CFC2A7C558EC> /usr/lib/system/libsystem_coreservices.dylib
       0x1a16f6000 -        0x1a1728ffb  com.apple.CoreServices.OSServices (1141.1 - 1141.1) <C3381426-A8B9-33F2-A966-73690E7DA785> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
       0x1a1729000 -        0x1a186fff6  com.apple.AuthKit (1.0 - 1) <B2FF5536-50BC-3EA3-B447-096741F57194> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
       0x1a1944000 -        0x1a1955fff  libz.1.dylib (77) <5AF373AA-2CC4-3C8D-B03A-CA309C8AA1E1> /usr/lib/libz.1.dylib
       0x1a1956000 -        0x1a198cffb  libsystem_m.dylib (3204.80.2) <E02AEB06-0AB6-3743-BF8C-02CEFA571365> /usr/lib/system/libsystem_m.dylib
       0x1a198d000 -        0x1a198dfff  libcharset.1.dylib (61) <8F7E3727-8D2A-386A-BD54-EDB50003420E> /usr/lib/libcharset.1.dylib
       0x1a198e000 -        0x1a1996ff3  libmacho.dylib (994) <A96A86CA-C4C0-3013-BB2E-5F7572B18A00> /usr/lib/system/libmacho.dylib
       0x1a1997000 -        0x1a19b2fff  libkxld.dylib (8020.101.4) <67B7CC3B-FB03-353B-8AE1-B967832E6226> /usr/lib/system/libkxld.dylib
       0x1a19b3000 -        0x1a19bfffb  libcommonCrypto.dylib (60191.100.1) <5AAADB40-420D-326A-AC38-CFE1D81DA1E5> /usr/lib/system/libcommonCrypto.dylib
       0x1a19c0000 -        0x1a19cafff  libunwind.dylib (202.2) <687985E7-0BD0-3898-9FCA-F8BCAAE282AE> /usr/lib/system/libunwind.dylib
       0x1a19cb000 -        0x1a19d2ffb  liboah.dylib (254.16) <41FFA258-B820-37DB-9D7B-2EE4AEFEBF2A> /usr/lib/liboah.dylib
       0x1a19d3000 -        0x1a19dbff7  libcopyfile.dylib (180.100.3) <97564E56-1B3C-3C9A-B653-AE99C54231AC> /usr/lib/system/libcopyfile.dylib
       0x1a19dc000 -        0x1a19dfffb  libcompiler_rt.dylib (103.1) <7E374D5C-9785-3D65-88D2-98B92AD24C78> /usr/lib/system/libcompiler_rt.dylib
       0x1a19e0000 -        0x1a19e4fff  libsystem_collections.dylib (1507.100.9) <B7FB982C-29CC-383B-9C25-60D660BB1433> /usr/lib/system/libsystem_collections.dylib
       0x1a19e5000 -        0x1a19e7ffb  libsystem_secinit.dylib (107.100.5) <A61664A2-D010-3674-95D9-1D06571F9F5A> /usr/lib/system/libsystem_secinit.dylib
       0x1a19e8000 -        0x1a19eafff  libremovefile.dylib (60) <4880993D-A23B-3DCE-942A-4201CE7E5461> /usr/lib/system/libremovefile.dylib
       0x1a19eb000 -        0x1a19ebfff  libkeymgr.dylib (31) <7B91E34D-FEF4-3CAB-ABA5-B2CBCD2BCDC0> /usr/lib/system/libkeymgr.dylib
       0x1a19ec000 -        0x1a19f4fff  libsystem_dnssd.dylib (1557.101.2) <BCF907AB-64F2-3E2C-A203-9FCA6584C584> /usr/lib/system/libsystem_dnssd.dylib
       0x1a19f5000 -        0x1a19faff7  libcache.dylib (85) <E5029B58-FF22-3EC8-9708-A97E2C90C310> /usr/lib/system/libcache.dylib
       0x1a19fb000 -        0x1a19fcfff  libSystem.B.dylib (1311.100.3) <DEE4A1ED-F9DF-3515-BE62-166170214E4C> /usr/lib/libSystem.B.dylib
       0x1a19fd000 -        0x1a1a00ffb  libfakelink.dylib (4) <BEBF14D4-83FA-3A93-87F5-D909D3678AAE> /usr/lib/libfakelink.dylib
       0x1a1a01000 -        0x1a1a01ffb  com.apple.SoftLinking (1.0 - 42) <FABD5E53-69FB-350D-8FC3-59B0DAA7F355> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
       0x1a1a02000 -        0x1a1a3efff  libpcap.A.dylib (110) <E2472F31-3BCF-3E4A-AB94-D9FDD97E45AB> /usr/lib/libpcap.A.dylib
       0x1a1a3f000 -        0x1a1b30ffb  libiconv.2.dylib (61) <C4A0339E-E3FE-3492-BDFF-EA6A6C810FE0> /usr/lib/libiconv.2.dylib
       0x1a1b31000 -        0x1a1b42ff3  libcmph.dylib (8) <14E4D3B2-922B-38CF-9CEF-E238FA3496BD> /usr/lib/libcmph.dylib
       0x1a1b43000 -        0x1a1bc8ffb  libarchive.2.dylib (103) <FE8FE561-CA1C-3A9E-AD32-C638D4266656> /usr/lib/libarchive.2.dylib
       0x1a1bc9000 -        0x1a1c40fff  com.apple.SearchKit (1.4.1 - 1.4.1) <67F6E52B-D8A5-32F9-BD93-FF71801CEDA8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
       0x1a1c41000 -        0x1a1c42ff3  libThaiTokenizer.dylib (10) <93894244-5784-3076-9847-C4E1EEE557CA> /usr/lib/libThaiTokenizer.dylib
       0x1a1c43000 -        0x1a1c67ff7  com.apple.applesauce (1.0 - 16.38) <404EC026-3683-347F-B240-F1669550A81C> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
       0x1a1c68000 -        0x1a1c7fff7  libapple_nghttp2.dylib (2) <A096BD16-1C7B-3C2E-A932-6610751CE56B> /usr/lib/libapple_nghttp2.dylib
       0x1a1c80000 -        0x1a1c92ff7  libSparseBLAS.dylib (1381.100.10) <7111C95E-2668-3F4D-BE81-AA34007DEA43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
       0x1a1c93000 -        0x1a1c94ff9  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <1FEA763F-5250-3085-8ADF-7B40E277C5A7> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
       0x1a1c95000 -        0x1a1c99fff  libpam.2.dylib (29) <F6EF92B2-65F3-3384-B2D2-FD745CCADB41> /usr/lib/libpam.2.dylib
       0x1a1c9a000 -        0x1a1d65fd3  libcompression.dylib (125.100.5) <976695EB-582D-3C35-9780-897B2E96A5A6> /usr/lib/libcompression.dylib
       0x1a1d66000 -        0x1a1d6affb  libQuadrature.dylib (7) <2A3D0BCB-3E83-30D7-9061-B545F9412FC4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
       0x1a1d6b000 -        0x1a222fff7  libLAPACK.dylib (1381.100.10) <FFFD12C9-FAE5-337B-8569-E3CFCFC4F8BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
       0x1a2230000 -        0x1a2286ff6  com.apple.DictionaryServices (1.2 - 350) <18BFAA45-3471-3B56-96E5-3B7876BD9D44> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
       0x1a2287000 -        0x1a229fff3  liblzma.5.dylib (16) <742BDEA4-50E6-3CA0-9FC1-F5B302A6DBAF> /usr/lib/liblzma.5.dylib
       0x1a22a0000 -        0x1a22a1ffb  libcoretls_cfhelpers.dylib (178) <FAFDC1A3-1BF9-3547-A54D-9352E2941C9D> /usr/lib/libcoretls_cfhelpers.dylib
       0x1a22a2000 -        0x1a2308ff3  com.apple.APFS (1934.101.3 - 1934.101.3) <B656E29F-4FCD-34FF-B1E0-BDF635917EAF> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
       0x1a2309000 -        0x1a2317ffb  libxar.1.dylib (487.100.1) <C00DCA51-BBF6-3F90-BB09-1C865544D3E9> /usr/lib/libxar.1.dylib
       0x1a2318000 -        0x1a231bff7  libutil.dylib (62) <B8418B92-F818-399A-835E-B5674FC79DB0> /usr/lib/libutil.dylib
       0x1a231c000 -        0x1a2345ff7  libxslt.1.dylib (18.5) <785464FF-D60D-3450-801D-56EC95D61128> /usr/lib/libxslt.1.dylib
       0x1a2346000 -        0x1a234dfff  libChineseTokenizer.dylib (40) <4429D54B-DF6D-3E7B-8CD6-477ABF7BAF0D> /usr/lib/libChineseTokenizer.dylib
       0x1a234e000 -        0x1a23c1feb  libvMisc.dylib (794.100.2) <11761567-2956-3EF5-968D-5892F62906EF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
       0x1a23c2000 -        0x1a2452fd0  libate.dylib (3.0.6) <E3BAC23D-3BD4-3D8A-8C96-7759F6D2DC37> /usr/lib/libate.dylib
       0x1a2453000 -        0x1a245bfff  libIOReport.dylib (76) <13E02E6B-7D4C-3029-B96C-6613720E08F5> /usr/lib/libIOReport.dylib
       0x1a245c000 -        0x1a246fff5  com.apple.CrashReporterSupport (10.13 - 15094) <BA4133C1-BC80-3FF5-BCFE-BE72388C29C4> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
       0x1a2596000 -        0x1a259dffb  libMatch.1.dylib (38) <AD140416-89FB-3B02-B1CA-7E3095D79F23> /usr/lib/libMatch.1.dylib
       0x1a259e000 -        0x1a2621fff  libCoreStorage.dylib (559) <43DE0A8E-83BF-35A0-A4E3-F6B1BEBBE5E8> /usr/lib/libCoreStorage.dylib
       0x1a2622000 -        0x1a266dffb  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <1119FC72-81F6-3F1C-90EF-0313B016732D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
       0x1a266e000 -        0x1a2688ffb  libexpat.1.dylib (28) <210F5A55-C5A4-3BD8-9A9F-4F36C142F12E> /usr/lib/libexpat.1.dylib
       0x1a2689000 -        0x1a2692fff  libheimdal-asn1.dylib (634.100.7) <ACF0CDA0-0472-3734-9C19-BEF2CED945CF> /usr/lib/libheimdal-asn1.dylib
       0x1a2693000 -        0x1a26a8ffa  com.apple.IconFoundation (493 - 493) <FF109065-92A2-3080-ABE5-2C5EE2A364B4> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
       0x1a26a9000 -        0x1a271aff5  com.apple.IconServices (493 - 493) <D5651151-FF16-39D5-9482-A9DB6DA18FD6> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
       0x1a271b000 -        0x1a278eff5  com.apple.MediaExperience (1.0 - 1) <4A2A8017-7DAB-3FCA-9392-86E69CE82706> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
       0x1a27ba000 -        0x1a27c7ffc  com.apple.GraphVisualizer (1.0 - 100.1) <0FA924D4-C9B5-3AE7-98F2-23983D0E5A3F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
       0x1a27c8000 -        0x1a2bdaffc  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <1BAEE5F4-71EA-3E49-A4C5-C070429122B3> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
       0x1a2bdb000 -        0x1a2c1eff4  com.apple.OTSVG (1.0 - 710.4.0.5) <8BCE4159-1B9B-3754-BCDB-F4B9284E8DA6> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
       0x1a2c1f000 -        0x1a2c27fff  com.apple.xpc.AppServerSupport (1.0 - 2236.100.61) <2370FD67-72EE-3034-938B-E5A32A0BCE6C> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
       0x1a2c28000 -        0x1a2c31ffb  libhvf.dylib (1.0 - 329.4.0.1) <C2B9C8A3-787E-3F00-9F65-D461D3F68952> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
       0x1a2c32000 -        0x1a2c36fff  libspindump.dylib (310) <4F1C02BB-5AB1-33E0-81D3-CB358F64E10D> /usr/lib/libspindump.dylib
       0x1a2c37000 -        0x1a2cf9ffe  com.apple.Heimdal (4.0 - 2.0) <D5D47847-6026-3838-A2A0-9975900A7931> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
       0x1a2cfa000 -        0x1a2d18ff8  com.apple.login (3.0 - 3.0) <F5C72412-70FB-312B-8A7C-8C7B59E535C6> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
       0x1a2eb0000 -        0x1a2eb3fff  libodfde.dylib (26) <A771384D-5B2F-3EE5-9229-D9D26C9ED5B7> /usr/lib/libodfde.dylib
       0x1a2eb4000 -        0x1a2f06ffb  com.apple.bom (14.0 - 238.1) <1193D6B5-19F2-31CC-93CB-586C28D3E0E7> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
       0x1a2f07000 -        0x1a2f4bfff  com.apple.AppleJPEG (1.0 - 1) <2A0B58EB-4DEB-359A-B562-DA1B77496455> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
       0x1a2f4c000 -        0x1a3037fff  libJP2.dylib (2222.5.4) <98F85C5B-0179-3D08-86C5-E310B6237020> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
       0x1a3038000 -        0x1a303bfff  com.apple.WatchdogClient.framework (1.0 - 127.100.16) <13FD331E-F85C-3EBF-BC8F-41630068C7ED> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
       0x1a303c000 -        0x1a3076ffd  com.apple.MultitouchSupport.framework (5440.11 - 5440.11) <724ED186-4A9C-33F5-99AE-D2148BD1FE4D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
       0x1a3077000 -        0x1a34ddff1  com.apple.VideoToolbox (1.0 - 2940.20.4.3) <D74BA0F7-37C7-3C36-A6C0-4048E456EA47> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
       0x1a34de000 -        0x1a350ffeb  libAudioToolboxUtility.dylib (1245.79.1) <E1B1BA59-AED7-36E1-9649-3BCC47F2CD83> /usr/lib/libAudioToolboxUtility.dylib
       0x1a3510000 -        0x1a3531ff3  libPng.dylib (2222.5.4) <8DD1C342-1365-317A-9000-602DAE34FB4C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
       0x1a3532000 -        0x1a358efff  libTIFF.dylib (2222.5.4) <F136E5CF-9F34-3913-880F-93CE349C7E2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
       0x1a358f000 -        0x1a35aeffb  com.apple.IOPresentment (62 - 37) <53FBD3CA-4AB1-3F9D-99DD-8396D4CAAD0E> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
       0x1a35af000 -        0x1a35b3ffb  com.apple.GPUWrangler (6.5.7 - 6.5.7) <A617C232-58CB-3C13-A223-B77462ADA13F> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
       0x1a35b4000 -        0x1a35b6ffb  libRadiance.dylib (2222.5.4) <AA8F3097-FE1E-3B85-9879-3C7B1EE45B4D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
       0x1a35b7000 -        0x1a35bcffb  com.apple.DSExternalDisplay (3.1 - 380) <27AB1108-638B-3688-90B0-DE93D5AEA203> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
       0x1a35bd000 -        0x1a35e7fff  libJPEG.dylib (2222.5.4) <5DD1E066-EADC-32C6-9044-A341788B0964> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
       0x1a35e8000 -        0x1a3617ff7  com.apple.ATSUI (1.0 - 1) <56785513-F26C-359C-A711-15CC95A4E794> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
       0x1a3618000 -        0x1a361cff3  libGIF.dylib (2222.5.4) <6BFBFBD3-DB3E-3516-B72E-96430C10978A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
       0x1a361d000 -        0x1a3626fff  com.apple.CMCaptureCore (1.0 - 190.41.2) <CE271530-8C2C-3744-B7DC-B5037810CAA9> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
       0x1a3627000 -        0x1a3692ffb  com.apple.print.framework.PrintCore (17.1 - 544.1) <BF1E9E9A-21B7-36D7-9C4E-6622F44E65C0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
       0x1a3693000 -        0x1a3736ff2  com.apple.TextureIO (3.10.9 - 3.10.9) <62EDEDF2-7D84-3D05-8E19-607AAFF35CCE> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
       0x1a3737000 -        0x1a3742fff  com.apple.InternationalSupport (1.0 - 69.1) <CF570E0C-D195-3178-B427-B3736956D9DF> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
       0x1a3743000 -        0x1a37bfff9  com.apple.datadetectorscore (8.0 - 697.2) <950B930E-D92B-3126-AF2B-F125778C0486> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
       0x1a37c0000 -        0x1a382dffb  com.apple.UserActivity (511 - 511) <C38201D1-56B8-3556-A141-AFEB565391B2> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
       0x1a382e000 -        0x1a3f9fffc  com.apple.MediaToolbox (1.0 - 2940.20.4.3) <196A906E-5911-3DAD-AFEF-7A2FF7D2A1C6> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
       0x1a4508000 -        0x1a457fffc  com.apple.imfoundation (10.0 - 1000) <8C19C7FB-9DE2-33C5-A0E3-F887FDFCEAF6> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
       0x1a4580000 -        0x1a45a8ff9  com.apple.locationsupport (2667.0.23 - 2667.0.23) <0567DE8B-4DCB-350B-A251-2CDFE7900240> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport
       0x1a45a9000 -        0x1a45e2ffe  libSessionUtility.dylib (128.63) <8DA8B598-A413-3E5C-B8E0-45512F182D0C> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
       0x1a45e3000 -        0x1a4722ffd  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <1A0691B0-D93F-3CBD-AE71-34E7A858EE7F> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
       0x1a4723000 -        0x1a4794ff7  com.apple.audio.AudioSession (1.0 - 128.63) <95A9F081-A81C-3236-90F9-803A44B3537F> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
       0x1a4795000 -        0x1a47a8ffc  libAudioStatistics.dylib (69.66.1) <C78D9A78-D8E4-396F-90FA-AE20D5253319> /usr/lib/libAudioStatistics.dylib
       0x1a47a9000 -        0x1a47bcff8  com.apple.speech.synthesis.framework (9.0.88.5 - 9.0.88.5) <2332F71C-26EA-3A98-AE66-809FB60D0186> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
       0x1a47bd000 -        0x1a482cff3  com.apple.ApplicationServices.ATS (377 - 533.3.0.1) <6B09B034-30FA-3EC8-B82B-22A280E7EC5B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
       0x1a482d000 -        0x1a4845ffb  libresolv.9.dylib (68) <D2EBEE85-A0FC-39EE-8E8D-5723452B6797> /usr/lib/libresolv.9.dylib
       0x1a4846000 -        0x1a4859ff7  libsasl2.2.dylib (214) <E2516F80-9109-35AC-A9A2-139041272A7A> /usr/lib/libsasl2.2.dylib
       0x1a486a000 -        0x1a48c5feb  libParallelCompression.dylib (280.100.14) <00C6650B-4BD6-368F-8591-931CD53CEDFB> /usr/lib/libParallelCompression.dylib
       0x1a4a01000 -        0x1a4ae0ffb  libSMC.dylib (21) <0899CD7F-B327-3929-9096-CBDDF9358E3D> /usr/lib/libSMC.dylib
       0x1a4ae1000 -        0x1a4b3eff3  libcups.2.dylib (499.3) <E02E2743-02FC-3FC8-8DFB-1F4B983F4768> /usr/lib/libcups.2.dylib
       0x1a4b3f000 -        0x1a4b4bffb  com.apple.NetAuth (6.2 - 6.2) <16BAE5D7-8F35-328F-BA10-54997B43462E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
       0x1a4b4c000 -        0x1a4b53fff  com.apple.ColorSyncLegacy (4.13.0 - 1) <1BEE6CFA-0DA4-3DCE-812B-7751F60A9234> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
       0x1a4b54000 -        0x1a4b5ffff  com.apple.QD (4.0 - 416) <DE7DA4A1-F75B-3EEF-A910-D36D94826195> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
       0x1a4b60000 -        0x1a4e9fffe  com.apple.audio.AudioResourceArbitration (1.0 - 1) <B1CF03AF-A8B6-3D8E-810E-A24B4FBD26FF> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
       0x1a4ea0000 -        0x1a4eacff0  com.apple.perfdata (1.0 - 82) <B4B9989F-F2DD-380A-BBB5-A53002CE97DE> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
       0x1a4ead000 -        0x1a4ebaffc  libperfcheck.dylib (42) <8E503FA2-58D8-3E8A-AB4B-53D9717961CA> /usr/lib/libperfcheck.dylib
       0x1a4ebb000 -        0x1a4ecbff7  com.apple.Kerberos (3.0 - 1) <809C1D96-1CF9-38CC-A30B-4BC1B3011C36> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
       0x1a4ecc000 -        0x1a4f1bffb  com.apple.GSS (4.0 - 2.0) <70389C65-8D21-3E79-8489-49CC6FD1D66D> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
       0x1a4f1c000 -        0x1a4f2cfff  com.apple.CommonAuth (4.0 - 2.0) <8CD2D938-39BE-3A4D-AA81-AAB261D794A5> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
       0x1a4f2d000 -        0x1a4f56ffa  com.apple.MobileAssets (1.0 - 698.100.13) <910E21BF-A2A5-3A09-B4AA-28B7247A7070> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
       0x1a4f92000 -        0x1a4fb2ffe  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <69A58A4D-1302-348A-92BB-96D2A8F86AB7> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
       0x1a4fb3000 -        0x1a4fbcff8  com.apple.CorePhoneNumbers (1.0 - 1) <CBC6A057-C2A4-3B89-8938-24E0E12AB6C6> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
       0x1a5737000 -        0x1a58b0ff6  com.apple.ids (10.0 - 1000) <54B1B8A4-3271-3362-AB2D-1E625396569A> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
       0x1a58b1000 -        0x1a5a5cff9  com.apple.idsfoundation (10.0 - 1000) <7CE96ADE-7E75-3445-BFF5-F0512D5A04D1> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
       0x1a5a5d000 -        0x1a5bccffa  com.apple.Sharing (1779 - 1779) <379524E0-60B8-38D2-B32F-9795929FA84A> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
       0x1a5bcd000 -        0x1a5c88ffd  com.apple.Bluetooth (1.0 - 1) <8A27DE40-E236-3F31-A25D-0ED1F08E809A> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
       0x1a5c89000 -        0x1a5c9dffd  com.apple.AppContainer (4.0 - 585.100.13) <7A0C1F59-E608-3339-B6E1-A7893E4DA65B> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
       0x1a5c9e000 -        0x1a5ca1ffa  com.apple.SecCodeWrapper (4.0 - 585.100.13) <90EC7E3F-D7D1-3458-BBAA-8A5C8AEBBE0D> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
       0x1a5ca2000 -        0x1a5d05fff  com.apple.ProtectedCloudStorage (1.0 - 1) <4D02B77F-C818-3DC0-AC13-3C014ACB1069> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
       0x1a5fcc000 -        0x1a7a26fe4  com.apple.GeoServices (1.0 - 1830.24.11.8.11) <9ED364A6-1EE2-30CD-AA10-38F646B38FE0> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
       0x1a7a27000 -        0x1a7a32ffb  com.apple.DirectoryService.Framework (12.3 - 233) <255F8FEF-C022-3353-A2E2-99F67CACF984> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
       0x1a7a33000 -        0x1a7a5effd  com.apple.RemoteViewServices (2.0 - 167) <5B97E0AB-45EA-3617-82ED-DEE61C15C939> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
       0x1a7a5f000 -        0x1a7a72fff  com.apple.SpeechRecognitionCore (6.2.26.9 - 6.2.26.9) <73EA71AA-79FC-3DA8-A324-E5DA686D85C2> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
       0x1a7a73000 -        0x1a7a7afff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <6F6D37AD-4A7E-3476-927C-939B3A98EA99> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
       0x1a7d39000 -        0x1a7d39fff  libsystem_product_info_filter.dylib (10) <21E3CB05-5B01-3BAA-8F17-84E8181778C0> /usr/lib/system/libsystem_product_info_filter.dylib
       0x1a7e39000 -        0x1a7e39fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <DB81CBF4-154D-30F9-9BB8-CB67097BF343> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
       0x1a7e62000 -        0x1a7e62fff  com.apple.CoreServices (1141.1 - 1141.1) <03B5BBDF-7D5E-374C-BA12-B868E8D68B9E> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
       0x1a80ff000 -        0x1a80fffff  com.apple.Accelerate (1.11 - Accelerate 1.11) <86AC0366-3B68-38A5-8F29-D62936655994> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
       0x1a814a000 -        0x1a8156ff3  com.apple.MediaAccessibility (1.0 - 136) <AEAE4874-613B-3F40-8513-6BCFD5F05BF3> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
       0x1a8157000 -        0x1a8176ff2  com.apple.networking.AlgosScoreFramework (1.0 - 1) <BA5D9756-74CC-3AA3-A194-68A8CA062357> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/Versions/A/AlgosScoreFramework
       0x1a8177000 -        0x1a817cffb  com.apple.AppleSRP (5.0 - 1) <0DC9CA43-3709-39C4-A0D3-66FEC020E8DD> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
       0x1a817d000 -        0x1a8187ffb  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <74CBD960-0BE6-33F3-B3FB-BD5FAD0519F0> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
       0x1a8188000 -        0x1a81c7ffd  com.apple.framework.SystemAdministration (1.0 - 1.0) <BA7D9587-C4D1-3C11-AC5B-BED99AF2AC95> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
       0x1a8c6f000 -        0x1a8d09ffa  com.apple.CoreBluetooth (1.0 - 1) <95DE155D-528F-39BA-8B03-E875A466413E> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
       0x1a8d0a000 -        0x1a8d15ffd  com.apple.SymptomDiagnosticReporter (1.0 - 174.100.13.0.1) <B07948FF-6245-3160-B946-50CBB8CB3FD8> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
       0x1a8d16000 -        0x1a8d3cff9  com.apple.PowerLog (1.0 - 1) <E2190157-ACB7-3E8B-91FF-5904E92AFEA0> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog
       0x1a8d3d000 -        0x1a8d49ffb  com.apple.AppleIDAuthSupport (1.0 - 1) <14A9FE8E-99E1-3193-89F9-97A24D306489> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
       0x1a8d4a000 -        0x1a8e05ffa  com.apple.DiscRecording (9.0.3 - 9030.4.5) <2A4420FD-B357-3F85-9A61-1B35B00D24A3> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
       0x1a8e06000 -        0x1a8e39ff3  com.apple.MediaKit (16 - 930) <F0EE7CA3-919E-335E-BDFC-31C7C505085F> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
       0x1a8e3a000 -        0x1a8f29ff6  com.apple.DiskManagement (15.0 - 1814.100.1) <E28B9803-5302-300A-A866-29F0AF794EB5> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
       0x1a8f2a000 -        0x1a8f35ffd  com.apple.CoreAUC (340.19 - 340.19) <7D21FA82-C9CA-35E7-87B7-3DC208D1F291> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
       0x1a8f36000 -        0x1a8f39fff  com.apple.Mangrove (1.0 - 25) <F2ED902F-7707-3986-82F8-0E19B2C8415E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
       0x1a8f3a000 -        0x1a8f6dff3  com.apple.CoreAVCHD (6.0.0 - 6100.4.3) <966D0666-EC7C-3907-A4DB-813AD8F7F2D3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
       0x1a8f6e000 -        0x1a90f1ffc  com.apple.FileProvider (399.101.4 - 399.101.4) <95A71FD8-98A8-3271-B3EE-52AEAE09D604> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
       0x1a90f2000 -        0x1a9118ffb  com.apple.GenerationalStorage (2.0 - 333.100.2) <3B9A2BE5-8DE8-357B-A79A-94CD9C00A534> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
       0x1a9119000 -        0x1a9140ffa  com.apple.security.octagontrust (1.0 - 1) <7EE32383-5314-3B5B-8E5E-113AE752D401> /System/Library/PrivateFrameworks/OctagonTrust.framework/Versions/A/OctagonTrust
       0x1a9852000 -        0x1a98e9fff  com.apple.FrontBoardServices (765.10 - 765.10) <11ABE2E0-B78A-3D10-B41A-9A50CA8CCF3A> /System/Library/PrivateFrameworks/FrontBoardServices.framework/Versions/A/FrontBoardServices
       0x1a98ea000 -        0x1a993dfff  com.apple.BoardServices (1.0 - 567.5) <21A8104C-7AA6-391B-9A1A-9160D35EB09C> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices
       0x1a9c72000 -        0x1a9cb4ffc  com.apple.DebugSymbols (195.1 - 195.1) <E67E9A02-FFEF-3CBC-815B-A5BE6E190595> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
       0x1a9cb5000 -        0x1a9d93fff  com.apple.CoreSymbolication (13.3 - 64552.31) <8E43DB32-A5FD-34FE-A22B-9B5F671ECDA5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
       0x1a9d94000 -        0x1a9d9effa  com.apple.CoreTime (305) <8550C236-CCBD-361B-A83E-E52D4E322F1B> /System/Library/PrivateFrameworks/CoreTime.framework/Versions/A/CoreTime
       0x1aaea7000 -        0x1aaf06ffe  com.apple.framework.Apple80211 (17.0 - 1728) <E249DDD7-80A5-3A83-97D2-7E7006DE1BD1> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
       0x1aaf07000 -        0x1ab083ff3  com.apple.CoreWiFi (3.0 - 341) <AB6749B5-B828-393D-B7FC-88484A5CC947> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
       0x1ab084000 -        0x1ab0a3ffa  com.apple.BackBoardServices (1.0 - 1.0) <4AC4AA94-6740-38F5-82FD-E2D7DEF1ECE1> /System/Library/PrivateFrameworks/BackBoardServices.framework/Versions/A/BackBoardServices
       0x1ab0a4000 -        0x1ab0dfff3  com.apple.LDAPFramework (2.4.28 - 194.5) <7B457F84-9A3B-35F8-BC18-6E62A2079B86> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
       0x1ab0e0000 -        0x1ab0e1ffb  com.apple.TrustEvaluationAgent (2.0 - 36) <346FF8CD-F687-34EB-B840-FC553E99E210> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
       0x1ab20e000 -        0x1ab2cdff2  com.apple.DiskImagesFramework (623.100.1 - 623.100.1) <1CF32CEF-C6C1-3D72-A150-4C57878C8D0C> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
       0x1ab305000 -        0x1ab314ffe  com.apple.RemoteServiceDiscovery (1.0 - 55.100.12) <899B69E1-D42E-3B33-9862-428B0B68BEA5> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
       0x1ab375000 -        0x1ab378fff  com.apple.help (1.3.8 - 73) <1F2195C6-A6A5-38B1-AA6C-81682FD01BA7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
       0x1ab379000 -        0x1ab380ff8  com.apple.EFILogin (2.0 - 2) <87E765BE-1613-3D97-B4E6-230B8812EE37> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
       0x1ab381000 -        0x1ab38cfff  libcsfde.dylib (559) <0C4E0638-A9B1-395D-B479-DAEA96BC746E> /usr/lib/libcsfde.dylib
       0x1ab38d000 -        0x1ab3f6ff7  libcurl.4.dylib (134) <6191B09E-D9C4-39A0-BC71-2F63D6F1BB40> /usr/lib/libcurl.4.dylib
       0x1ab3f7000 -        0x1ab3fefff  com.apple.LoginUICore (4.0 - 4.0) <E30E05FF-39DC-3FCE-A874-60AD2DD74841> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
       0x1ab3ff000 -        0x1ab440ff5  com.apple.AppSupport (1.0.0 - 29) <EBE9F62A-B573-3915-8CD9-D77E9C8A4FB2> /System/Library/PrivateFrameworks/AppSupport.framework/Versions/A/AppSupport
       0x1ab600000 -        0x1ab600fff  com.apple.ApplicationServices (48 - 50) <5135F624-1CF2-3795-9662-57B402C64FEF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
       0x1ab6b6000 -        0x1ab7ffffc  com.apple.AppleAccount (1.0 - 1.0) <DBC4346A-2DA6-3518-8D37-9BFAB9B9A433> /System/Library/PrivateFrameworks/AppleAccount.framework/Versions/A/AppleAccount
       0x1ab800000 -        0x1ab836ff3  com.apple.AppleIDSSOAuthentication (1.0 - 1) <A18F8818-0352-319B-8150-C7DD98CE969B> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/Versions/A/AppleIDSSOAuthentication
       0x1ab987000 -        0x1ab987fff  libHeimdalProxy.dylib (79) <AD9DF673-FCC0-3B6E-ADB0-14D0CDC31E74> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
       0x1aba0c000 -        0x1aba0cfff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <B877F077-62F3-31DD-A260-CF1A36F72A79> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
       0x1aba3a000 -        0x1aba64ff2  com.apple.StreamingZip (1.0 - 1) <9D976966-BAEB-3F94-946E-704834747EA8> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
       0x1ababd000 -        0x1abac5ffe  com.apple.PushKit (1.0 - 1) <CFE2A04B-27B0-3403-BD8C-68B42CEFE286> /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit
       0x1abac6000 -        0x1abb09fff  com.apple.C2 (1.3 - 1950.19) <2040C5E1-5F52-30FC-83E2-633F3E205BC7> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2
       0x1ac752000 -        0x1ac761ff8  com.apple.ASEProcessing (1.29.1 - 1.29.1) <FD78FDBA-9B86-3262-BBE6-CBEBE0BB8A9A> /System/Library/PrivateFrameworks/ASEProcessing.framework/Versions/A/ASEProcessing
       0x1ad4c3000 -        0x1ad4cfffc  com.apple.RTCReporting (12.22.2 - 12.22.2) <285093DE-8364-396E-B77B-4C0FBABC7A20> /System/Library/PrivateFrameworks/RTCReporting.framework/Versions/A/RTCReporting
       0x1ad734000 -        0x1ad7a5ff9  com.apple.audio.midi.CoreMIDI (2.0 - 88) <A5936E0A-282B-3D68-B374-E46F0E8D9516> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
       0x1adf25000 -        0x1adf28fff  com.apple.IOSurfaceAccelerator (1.0.0 - 1.0.0) <B08186D7-4B87-3A0A-AD5F-BE01CAEC8CED> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/Versions/A/IOSurfaceAccelerator
       0x1af2b5000 -        0x1af2e6ffb  libtidy.A.dylib (18.3) <2273B772-B057-3F54-9F55-0B5AB8861EBB> /usr/lib/libtidy.A.dylib
       0x1af313000 -        0x1af32aff9  com.apple.Engram (1.0 - 1) <4A316E77-CFE5-3515-8317-D0F637FA4929> /System/Library/PrivateFrameworks/Engram.framework/Versions/A/Engram
       0x1af32b000 -        0x1af352ff1  com.apple.openscripting (1.7 - 192) <F2EB59D8-2CFD-3F92-A972-6DA9C5EC7C0C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
       0x1af353000 -        0x1af356ffb  com.apple.securityhi (9.0 - 55008) <82D546BF-58CD-3CE7-9B67-2FD41D2EF00A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
       0x1af357000 -        0x1af35afff  com.apple.ink.framework (10.15 - 227) <0EDF8F30-A0EA-31AD-87B6-6AD68C7C2ED8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
       0x1af35b000 -        0x1af35efff  com.apple.CommonPanels (1.2.6 - 101) <019E3A1E-A2EA-3E39-BC41-BE70B5B2FB1D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
       0x1af35f000 -        0x1af366fff  com.apple.ImageCapture (1742.5.2 - 1742.5.2) <CD0A2047-0848-33C7-83A5-EB8B479EEB85> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
       0x1b1928000 -        0x1b1955fff  com.apple.IOGPU (35.29 - 35.29) <51396341-67FD-333D-A043-99BAADA3F29D> /System/Library/PrivateFrameworks/IOGPU.framework/Versions/A/IOGPU
       0x1b1fcb000 -        0x1b1fcbffd  com.apple.marco (10.0 - 1000) <4A746BDD-C4FF-3D36-87B1-BF6F65DEB26C> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
       0x1b27b7000 -        0x1b27c2ffe  com.apple.OSAServicesClient (1.0 - 1) <F4968670-DBC2-3722-B2B7-DE154AEE0188> /System/Library/PrivateFrameworks/OSAServicesClient.framework/Versions/A/OSAServicesClient
       0x1b27fb000 -        0x1b27fcffa  com.apple.PhoneNumbers (1.0 - 1) <A3A930B6-CD41-3EF4-876A-95516A56B674> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
       0x1b2806000 -        0x1b281dffb  com.apple.accessibility.AXCoreUtilities (1.0 - 1) <DE66CA77-E0EA-3973-91C6-86A581392CD7> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/Versions/A/AXCoreUtilities
       0x1b281e000 -        0x1b283dffe  libAccessibility.dylib (2933.32) <C9B11C7D-C944-3DE5-86A2-A564BCEBB74F> /usr/lib/libAccessibility.dylib
       0x1b4fca000 -        0x1b517cff7  libFosl_dynamic.dylib (300.2) <D8D59204-BD23-30F8-97F5-1DF5847DF00B> /usr/lib/libFosl_dynamic.dylib
       0x1b61e7000 -        0x1b61eafff  com.apple.print.framework.Print (15 - 271) <1C1C4EE5-2A4E-3908-9EBF-D75A04BA8839> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
       0x1b61eb000 -        0x1b61eefff  com.apple.Carbon (160 - 165) <81D48BD5-39EA-3D11-8ECC-9749891632B4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
       0x1b66ea000 -        0x1b6709ff8  com.apple.private.SystemPolicy (1.0 - 1) <0AEB90FE-7877-35A3-9D5B-457B3CFACCFE> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
       0x1b6860000 -        0x1b68c5ffb  com.apple.AccessibilitySharedSupport (1.0 - 1) <FD602279-48F4-3A26-BDF6-1A412D77BE21> /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/Versions/A/AccessibilitySharedSupport
       0x1b6dea000 -        0x1b6e86ffc  com.apple.facetimeservices (10.0 - 1000) <BEF09B11-727C-3474-9B3E-DADF696F2D61> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
       0x1b71df000 -        0x1b71eaffb  com.apple.MallocStackLogging (1.0 - 1) <2FF1ED3D-E003-3A16-92D1-2792AF2272B1> /System/Library/PrivateFrameworks/MallocStackLogging.framework/Versions/A/MallocStackLogging
       0x1b7202000 -        0x1b721dff8  libmis.dylib (336.100.5) <3E16713B-9397-3DD1-8A38-F888C33860B0> /usr/lib/libmis.dylib
       0x1b721e000 -        0x1b7221ffd  com.apple.gpusw.GPURawCounter (23 - 12.0) <86241F28-FE47-3FAD-A887-19D7185DDF51> /System/Library/PrivateFrameworks/GPURawCounter.framework/Versions/A/GPURawCounter
       0x1ba083000 -        0x1ba133fff  com.apple.TextInput (1.0 - 1.0) <632B9B3D-3CCA-3E7D-8CBE-85EC7F423BE4> /System/Library/PrivateFrameworks/TextInput.framework/Versions/A/TextInput
       0x1bafa2000 -        0x1bafd2ff3  libncurses.5.4.dylib (57) <1FBE3394-E1A7-3F10-AFF3-9E6B9608B483> /usr/lib/libncurses.5.4.dylib
       0x1bb6ca000 -        0x1bb6e3fff  libCGInterfaces.dylib (555.3) <C96D201B-FC16-343C-9862-1A8AEAB829EA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
       0x1bdee0000 -        0x1be11dff0  com.apple.RawCamera.bundle (9.12.2 - 1540.3) <B7756195-DF39-3C6D-954C-5C1D3235E548> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
       0x1c1089000 -        0x1c10a7ffd  com.apple.ftawd (8.0 - 900) <57A9B7A1-F1A0-35C2-9433-8BF150D1C722> /System/Library/PrivateFrameworks/FTAWD.framework/Versions/A/FTAWD
       0x1c3143000 -        0x1c318eff2  com.apple.osanalytics.OSAnalytics (1.0 - 1) <F87F7C23-9C38-3FAE-BEC7-D14733532B5C> /System/Library/PrivateFrameworks/OSAnalytics.framework/Versions/A/OSAnalytics
       0x1c7914000 -        0x1c7917ffb  com.apple.FinderSyncPriv (2.3 - 1440.3.1) <23D5C3E0-EDFD-341C-88DF-61759D99999A> /System/Library/PrivateFrameworks/FinderSyncPriv.framework/Versions/A/FinderSyncPriv
       0x1ce441000 -        0x1ce502fe7  com.apple.Symbolication (13.3 - 64552.29.1) <128A4979-2909-3922-AE7D-F41B07B40E77> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
       0x1dd65d000 -        0x1ddb9affe  com.apple.AGXMetalG13X (190.17.3 - 190.17.3) <1576073C-9B3D-3D2D-BFB2-DD718DD56A94> /System/Library/Extensions/AGXMetalG13X.bundle/Contents/MacOS/AGXMetalG13X
       0x1f835e000 -        0x1f8364ff3  libCoreFSCache.dylib (250.1) <BC3AB0C4-001D-3104-8F8F-2E147B78E580> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
       0x1f8365000 -        0x1f836afff  libCoreVMClient.dylib (250.1) <363D0EB2-0B19-3968-A619-D2DE307B7FD8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
       0x1f836b000 -        0x1f837bff7  com.apple.opengl (19.4.3 - 19.4.3) <2B24125C-0D8B-3F3D-8625-6C50DDF2F4CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
       0x1f837c000 -        0x1f837efff  libCVMSPluginSupport.dylib (19.4.4) <CA22C389-C73C-3322-BF28-723E610E82EE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
       0x1f837f000 -        0x1f8387ffb  libGFXShared.dylib (19.4.4) <252D940C-C4FB-33C3-92D9-BF6280414B76> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
       0x1f8388000 -        0x1f83bfff3  libGLImage.dylib (19.4.4) <F88EF401-56C6-3AA8-AA46-5812675DC6C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
       0x1f83c0000 -        0x1f83fdff7  libGLU.dylib (19.4.4) <273DBBA5-5C7E-3F01-8A5B-417BC5C67432> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
       0x1f856c000 -        0x1f8575fff  libGL.dylib (19.4.4) <E826F545-1CA8-3882-AEB7-4431BA92ED38> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
       0x1f870d000 -        0x1f877bff3  com.apple.opencl (4.7 - 4.7) <34453FB1-09D3-3ADC-9F9C-ADF9AE663493> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
       0x1fa4d7000 -        0x1fa4eaff2  com.apple.MPSFunctions (1.0 - 1) <CC5E9D49-A2DD-377F-87F3-5C762BFDD685> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSFunctions.framework/Versions/A/MPSFunctions
       0x1fccfe000 -        0x1fcd08ffe  com.apple.AAAFoundation (1.0 - 1) <DE2A36DF-97D4-3D1F-9F73-5D1F3E13FD0D> /System/Library/PrivateFrameworks/AAAFoundation.framework/Versions/A/AAAFoundation
       0x1fe9ba000 -        0x1fea65ff9  com.apple.CMPhoto (1.0 - 1) <9C6B742B-7197-363D-A299-F58D81172B33> /System/Library/PrivateFrameworks/CMPhoto.framework/Versions/A/CMPhoto
       0x1fec47000 -        0x1fed79ff5  com.apple.cloudkit.CloudKitDistributedSync (1.0 - 1950.31.1) <7FB59747-5CCF-3A25-ADFB-E2B575C1E67A> /System/Library/PrivateFrameworks/CloudKitDistributedSync.framework/Versions/A/CloudKitDistributedSync
       0x2018cf000 -        0x2018ecffb  com.apple.CoreUtilsExtras (6.9 - 690.41) <9644D1EC-3890-3E67-8C0D-9D78F4308FE2> /System/Library/PrivateFrameworks/CoreUtilsExtras.framework/Versions/A/CoreUtilsExtras
       0x202734000 -        0x202734ffb  com.apple.FontServices (1.0 - 1) <104859CB-8088-314B-BE77-434B8E2BF008> /System/Library/PrivateFrameworks/FontServices.framework/Versions/A/FontServices
       0x202735000 -        0x2027c0ff9  libXTFontStaticRegistryData.dylib (226.4.0.7) <3C2BB27C-C6EA-3457-B5F2-88085C54D96C> /System/Library/PrivateFrameworks/FontServices.framework/libXTFontStaticRegistryData.dylib
       0x20281d000 -        0x202820fff  libGPUCompilerUtils.dylib (31001.523.2) <93CEDB6F-63DA-34E8-B8D6-CBB3AB1CFC78> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/31001/Libraries/libGPUCompilerUtils.dylib
       0x202f62000 -        0x202f66fff  com.apple.GeoServices (1.0 - 1830.24.11.8.11) <63E3EE21-F503-3F3B-99F5-FADC96A0FEF6> /System/Library/PrivateFrameworks/GeoServicesCore.framework/Versions/A/GeoServicesCore
       0x215c97000 -        0x215c9effb  libCoreEntitlements.dylib (20.100.1) <6079244A-D20B-37E1-AD4F-510338FF0CAC> /usr/lib/libCoreEntitlements.dylib
       0x215e15000 -        0x215e1cffb  libRosetta.dylib (254.16) <41FFA258-B820-37DB-9D7B-2EE4AEFEBF2A> /usr/lib/libRosetta.dylib
       0x2161bd000 -        0x2162cdff3  libcrypto.46.dylib (76.101.2) <368815BE-BF95-331B-97C2-BE1A41AA1117> /usr/lib/libcrypto.46.dylib
       0x216662000 -        0x216699fff  libssl.48.dylib (76.101.2) <F9B8C65C-EC40-37EF-8761-79F411264FD4> /usr/lib/libssl.48.dylib
Sample analysis of process 90302 written to file /dev/stdout

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

* bug#54996: Emacs hangs when editing Python code with debug-on-error set to t
  2022-04-18 10:02       ` Eli Zaretskii
@ 2022-04-18 11:07         ` Lars Ingebrigtsen
  2022-04-18 11:18           ` Lars Ingebrigtsen
  0 siblings, 1 reply; 10+ messages in thread
From: Lars Ingebrigtsen @ 2022-04-18 11:07 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: rhstanton, 54996

Eli Zaretskii <eliz@gnu.org> writes:

> In Fsignal, I guess.  But it is strange that call_debugger doesn't
> trigger: do you see a *Backtrace* buffer popping up?

Nope, Emacs just hangs without popping up anything.

Breakpoing on Fsignal is called all the time, even without
debug-on-error, so it's too noisy to use.

#0  Fsignal (error_symbol=0x106b0, data=0x555556090af3) at eval.c:1649
#1  0x00005555555dcf9a in xsignal (data=<optimized out>, error_symbol=0x106b0)
    at /home/larsi/src/emacs/trunk/src/lisp.h:4514
#2  xsignal1 (error_symbol=error_symbol@entry=0x106b0, arg=arg@entry=0x2d1c30)
    at eval.c:1811
#3  0x00005555555dc6c8 in Fdefault_value (symbol=<optimized out>)
    at data.c:1952
#4  0x0000555555788478 in Fdefault_toplevel_value (symbol=0x2d1c30)
    at eval.c:709
#5  0x00005555557ced47 in exec_byte_code
    (fun=<optimized out>, args_template=<optimized out>, nargs=<optimized out>, args=<optimized out>) at bytecode.c:809
#6  0x00005555557d154b in Fbyte_code
    (bytestr=<optimized out>, vector=0x555555d537e5, maxdepth=0x2a)
    at bytecode.c:329
#7  0x000055555578a161 in eval_sub (form=<optimized out>) at eval.c:2388
#8  0x00005555557bbb15 in readevalloop

And that's because defcustom uses errors as control flow:

(defun custom-initialize-default (symbol exp)
  "Initialize SYMBOL with EXP.
This will do nothing if symbol already has a default binding.
Otherwise, if symbol has a `saved-value' property, it will evaluate
the car of that and use it as the default binding for symbol.
Otherwise, EXP will be evaluated and used as the default binding for
symbol."
  (condition-case nil
      (default-toplevel-value symbol)   ;Test presence of default value.
    (void-variable
     ;; The var is not initialized yet.
     (set-default-toplevel-value
      symbol (eval (let ((sv (get symbol 'saved-value)))
                     (if sv (car sv) exp))
                   t)))))

Which has bitten me before when trying to do debugging...  could we
rewrite that somehow to avoid this?

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





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

* bug#54996: Emacs hangs when editing Python code with debug-on-error set to t
  2022-04-18 11:07         ` Lars Ingebrigtsen
@ 2022-04-18 11:18           ` Lars Ingebrigtsen
  2022-04-18 14:17             ` Philipp Stephani
  0 siblings, 1 reply; 10+ messages in thread
From: Lars Ingebrigtsen @ 2022-04-18 11:18 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: rhstanton, 54996

But here we go -- I instrumented Fsignal after loading everything.

gdb) xbacktrace 
"signal" (0xeabde738)
"error" (0xffff8378)
"apply" (0xeabde6e0)
"cl--assertion-failed" (0xeabde668)
"python-nav-end-of-statement" (0xeabde620)
"python-info-end-of-statement-p" (0xeabde5f0)
"python-info-end-of-block-p" (0xeabde598)
"python-nav--forward-sexp" (0xeabde518)
"python-nav-forward-sexp" (0xeabde4c0)
"python-nav-backward-sexp" (0xeabde468)
"python-info-docstring-p" (0xeabde408)
"python-font-lock-syntactic-face-function" (0xeabde3a8)
"font-lock-fontify-syntactically-region" (0xeabde320)
"font-lock-default-fontify-region" (0xeabde2b0)
"font-lock-fontify-region" (0xeabde240)
0x566c35a8 PVEC_COMPILED
"run-hook-wrapped" (0xeabde1c8)

I've now fixed this by avoiding cl-assert (which probably should never
be used inside a function called from font-lock).

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no






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

* bug#54996: Emacs hangs when editing Python code with debug-on-error set to t
  2022-04-18 11:18           ` Lars Ingebrigtsen
@ 2022-04-18 14:17             ` Philipp Stephani
  2022-04-18 14:23               ` Lars Ingebrigtsen
  0 siblings, 1 reply; 10+ messages in thread
From: Philipp Stephani @ 2022-04-18 14:17 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: rhstanton, 54996

Am Mo., 18. Apr. 2022 um 13:19 Uhr schrieb Lars Ingebrigtsen <larsi@gnus.org>:
>
> But here we go -- I instrumented Fsignal after loading everything.
>
> gdb) xbacktrace
> "signal" (0xeabde738)
> "error" (0xffff8378)
> "apply" (0xeabde6e0)
> "cl--assertion-failed" (0xeabde668)
> "python-nav-end-of-statement" (0xeabde620)
> "python-info-end-of-statement-p" (0xeabde5f0)
> "python-info-end-of-block-p" (0xeabde598)
> "python-nav--forward-sexp" (0xeabde518)
> "python-nav-forward-sexp" (0xeabde4c0)
> "python-nav-backward-sexp" (0xeabde468)
> "python-info-docstring-p" (0xeabde408)
> "python-font-lock-syntactic-face-function" (0xeabde3a8)
> "font-lock-fontify-syntactically-region" (0xeabde320)
> "font-lock-default-fontify-region" (0xeabde2b0)
> "font-lock-fontify-region" (0xeabde240)
> 0x566c35a8 PVEC_COMPILED
> "run-hook-wrapped" (0xeabde1c8)
>
> I've now fixed this by avoiding cl-assert (which probably should never
> be used inside a function called from font-lock).
>

The assertion was added to protect against a subtle but nasty bug, see
commit 4fbd330fae54a9c45d4a717127aa86d75e9938d5. Please don't remove
the assertion without first ensuring that the bug won't reoccur.





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

* bug#54996: Emacs hangs when editing Python code with debug-on-error set to t
  2022-04-18 14:17             ` Philipp Stephani
@ 2022-04-18 14:23               ` Lars Ingebrigtsen
  0 siblings, 0 replies; 10+ messages in thread
From: Lars Ingebrigtsen @ 2022-04-18 14:23 UTC (permalink / raw)
  To: Philipp Stephani; +Cc: rhstanton, 54996

Philipp Stephani <p.stephani2@gmail.com> writes:

> The assertion was added to protect against a subtle but nasty bug, see
> commit 4fbd330fae54a9c45d4a717127aa86d75e9938d5. Please don't remove
> the assertion without first ensuring that the bug won't reoccur.

I changed it into a `when'.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





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

end of thread, other threads:[~2022-04-18 14:23 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-17 20:16 bug#54996: Emacs hangs when editing Python code with debug-on-error set to t Richard Stanton
2022-04-17 20:43 ` Lars Ingebrigtsen
2022-04-18  5:46   ` Eli Zaretskii
2022-04-18  9:45     ` Lars Ingebrigtsen
2022-04-18 10:02       ` Eli Zaretskii
2022-04-18 11:07         ` Lars Ingebrigtsen
2022-04-18 11:18           ` Lars Ingebrigtsen
2022-04-18 14:17             ` Philipp Stephani
2022-04-18 14:23               ` Lars Ingebrigtsen
2022-04-18 10:56     ` Daniel Martín via Bug reports for GNU Emacs, the Swiss army knife of text editors

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