~ This file is a commented hexadecimal representation of a compiled ~ program, the output of Evocation's hex transform. The comments are ~ intended to allow a human reader to audit it. You can convert it to a ~ runnable executable by piping it through the program named 'hex' and ~ chmodding the output 755. The difference between a source and a binary ~ is comments! Enjoy. :) ~ This particular program is 'evoke', the compiler. If you already have ~ a binary copy of 'hex', run this file through it and you'll have a ~ working compiler. Pretty sweet, right? ~ ~ If you're auditing this by hand, first off, thank you for doing that. ~ You may wish to pull up the source code side-by-side with the hex dump; ~ there's a lot of structural stuff in the actual source that aids in ~ readability but isn't easily reproduced in this form, though every ~ effort has been made. ~ ELF file header ~ * denotes mandatory fields according to breadbox 7f 45 4c 46 ~ *magic number 02 ~ 64-bit 01 ~ little-endian 01 ~ ELF header format v1 00 ~ System-V ABI 00 00 00 00 00 00 00 00 ~ (padding) 02 00 ~ *executable 3e 00 ~ *Intel x86-64 01 00 00 00 ~ ELF format version 78 00 00 08 00 00 00 00 ~ *entry point 40 00 00 00 00 00 00 00 ~ *program header offset 00 00 00 00 00 00 00 00 ~ section header offset 00 00 00 00 ~ processor flags 40 00 ~ ELF header size 38 00 ~ *program header entry size 01 00 ~ *number of program header entries 00 00 ~ section header entry size 00 00 ~ number of section header entries 00 00 ~ section name string table index ~ ELF program header ~ label elf-program-header at offset 0x0000000000000040 is here. 01 00 00 00 ~ *"loadable" segment type 05 00 00 00 ~ *read+execute permission 00 00 00 00 00 00 00 00 ~ *offset in file 00 00 00 08 00 00 00 00 ~ *virtual address 00 00 00 00 00 00 00 00 ~ physical address (ignored) d8 01 05 00 00 00 00 00 ~ *size in file d8 01 05 00 00 00 00 00 ~ *size in memory 00 00 00 00 00 00 00 00 ~ segment alignment ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ This is the start of the cold-start routine, which is the first code ~ of any kind the executable runs. It has the responsibility of creating ~ the Forth execution environment, then invoking the warm-start routine, ~ which is defined below. ~ label cold-start at offset 0x0000000000000078 is here. fc ~ cld 48 b8 09 00 00 00 00 00 00 00 ~ 0x9 :rax mov-reg64-imm64 ~ mmap() 48 bf 00 00 00 00 10 00 00 00 ~ 0x1000000000 :rdi mov-reg64-imm64 ~ address (very arbitrary) 48 be 00 00 00 01 00 00 00 00 ~ 0x1000000 :rsi mov-reg64-imm64 ~ size (one meg) 48 ba 07 00 00 00 00 00 00 00 ~ 0x7 :rdx mov-reg64-imm64 ~ protection (read+write+exec) 49 ba 22 00 00 00 00 00 00 00 ~ 0x22 :r10 mov-extrareg64-imm64 ~ flags (private+anonymous) 49 b8 00 00 00 00 00 00 00 00 ~ 0x0 :r8 mov-extrareg64-imm64 ~ file descriptor (ignored) 49 b9 00 00 00 00 00 00 00 00 ~ 0x0 :r9 mov-extrareg64-imm64 ~ offset (ignored) 0f 05 ~ syscall 48 89 c7 ~ :rax :rdi mov-reg64-reg64 48 8d af 00 00 01 00 ~ :rdi 0x00010000 :rbp lea-reg64-disp32-reg64 48 89 bf 00 00 01 00 ~ :rdi 0x00010000 :rdi mov-reg64-disp32-reg64 48 89 a7 08 00 01 00 ~ :rsp 0x00010008 :rdi mov-reg64-disp32-reg64 48 89 af 10 00 01 00 ~ :rbp 0x00010010 :rdi mov-reg64-disp32-reg64 48 b8 00 00 00 00 00 00 00 00 ~ 0x0 :rax mov-reg64-imm64 48 89 87 18 00 01 00 ~ :rax 0x00010018 :rdi mov-reg64-disp32-reg64 48 8d 87 28 00 01 00 ~ :rdi 0x00010028 :rax lea-reg64-disp32-reg64 48 89 87 20 00 01 00 ~ :rax 0x00010020 :rdi mov-reg64-disp32-reg64 57 ~ :rdi push-reg64 48 be 10 01 00 08 00 00 00 00 ~ 0x8000110 :rsi mov-reg64-imm64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ This is the start of the warm-start routine, which is the first Forth ~ code the executable runs, after the cold-start routine has created the ~ Forth execution environment. ~ ~ It does some initial setup here at the top; then the vast bulk of it ~ is actually the log-load routine, directly included; then finally there ~ is a small amount of finishing work done at the tail end of the ~ warm-start routine. ~ ~ The routine's body is interpreted Forth code, meaning that it is an ~ an array of pointers to the codewords of Forth words, occasionally ~ interspersed with literal values. ~ ~ The codeword pointers were located by using the label system, which ~ means the labels they reference must have been defined somewhere else, ~ normally by the label transform. The label-transformed code normally ~ occurs after the warm-start routine in the executable, which means these ~ are forward references to words defined far below. 00 00 ~ (alignment padding) ~ label warm-start at offset 0x0000000000000110 is here. 60 eb 04 08 00 00 00 00 ~ log-load-log (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log" (string literal with null) 6c 6f 67 00 00 00 00 00 ~ (alignment padding) a8 f2 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) a0 eb 04 08 00 00 00 00 ~ log-load-s0 (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) a8 f2 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) f8 eb 04 08 00 00 00 00 ~ log-load-r0 (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) a8 f2 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) 70 ec 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f2 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f2 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) ~ This is the start of the log-load routine, which is a long block of ~ code that has been processed by the log-load transform. It is part of ~ the warm-start routine, which does other things before and after it. ~ For clarity's sake, to avoid weird nesting, the section header above ~ calls this the warm-start section of the executable, but in a sense it ~ might be more accurate to call it the log-load section. ~ ~ The routine is interpreted Forth code, just as the warm-start routine ~ as a whole is; see above. ~ ~ The job of the log-load routine is to create runnable code in the ~ dynamic log, at runtime. The normal way to create a Forth executable ~ is to use label-transformed code to implement a minimal set of ~ functionality needed for the log-load routine to run, then invoke the ~ log-load routine to copy a more complete set of functionality into ~ memory. ~ ~ The log-load routine is super important, but also extremely verbose, ~ which necessarily makes it hard to read. If you're skimming this file ~ for the first time to get a sense of what it contains, you might want ~ to search for the words "label transform" to get to the stuff that makes ~ better introductory reading. ~ (alignment padding) ~ This is the actual docol routine, the interpreter which is pointed to by ~ the codeword of every interpreted word. It does not itself have an entry ~ in the dictionary; the word "docol" will return a pointer to this routine. ~ The word's entry follows immediately after the routine. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 ea 04 08 00 00 00 00 ~ pack-pushcontrol (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 80 da 04 08 00 00 00 00 ~ add-reg64-imm8 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 90 e9 04 08 00 00 00 00 ~ pack-next (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 08 6f 04 08 00 00 00 00 ~ packalign (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) ~ This is the dictionary entry for docol. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) ~ create e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) c0 f0 04 08 00 00 00 00 ~ log-load-self-codeword ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 bb 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 90 e9 04 08 00 00 00 00 ~ pack-next (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 08 6f 04 08 00 00 00 00 ~ packalign (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) ~ exit is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 ea 04 08 00 00 00 00 ~ pack-popcontrol (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ swap is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ drop is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 2drop is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ roll is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 08 df 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 c0 04 08 00 00 00 00 ~ mov-reg64-indexed-reg64 ~ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 98 b9 04 08 00 00 00 00 ~ lea-reg64-indexed-reg64 ~ (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 58 ba 04 08 00 00 00 00 ~ lea-reg64-disp8-indexed-reg64 ~ (codeword pointer) c0 b5 04 08 00 00 00 00 ~ std (codeword pointer) 30 cb 04 08 00 00 00 00 ~ rep-movs64 (codeword pointer) 88 b5 04 08 00 00 00 00 ~ cld (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 50 bd 04 08 00 00 00 00 ~ mov-indirect-reg64-reg64 ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ unroll is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 08 df 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 be 04 08 00 00 00 00 ~ mov-reg64-indirect-reg64 ~ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 58 b8 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 58 b8 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) 30 cb 04 08 00 00 00 00 ~ rep-movs64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 00 c1 04 08 00 00 00 00 ~ mov-indexed-reg64-reg64 ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 3roll is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 3unroll is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ dup is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 2dup is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ + is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 d8 04 08 00 00 00 00 ~ add-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ - is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 10 db 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ * is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 dd 04 08 00 00 00 00 ~ mul-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ /% is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) a0 dd 04 08 00 00 00 00 ~ divmod-reg64 (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 1+ is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 de 04 08 00 00 00 00 ~ inc-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 1- is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 08 df 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ = is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 e4 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) c8 8c 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 20 e6 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 00 e0 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ != is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 e4 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) f8 8c 04 08 00 00 00 00 ~ :cc-not-equal (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 20 e6 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 00 e0 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ > is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 e4 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) f0 8e 04 08 00 00 00 00 ~ :cc-greater (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 20 e6 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 00 e0 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ < is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 e4 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 50 8e 04 08 00 00 00 00 ~ :cc-less (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 20 e6 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 00 e0 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ >= is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 e4 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 88 8e 04 08 00 00 00 00 ~ :cc-greater-equal (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 20 e6 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 00 e0 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ <= is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 e4 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) c0 8e 04 08 00 00 00 00 ~ :cc-less-equal (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 20 e6 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 00 e0 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ >unsigned is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">unsigned" (string literal with null) 3e 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 e4 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 60 8d 04 08 00 00 00 00 ~ :cc-above (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 20 e6 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 00 e0 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ =unsigned is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=unsigned" (string literal with null) 3e 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 e4 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 98 8c 04 08 00 00 00 00 ~ :cc-above-equal (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 20 e6 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 00 e0 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ <=unsigned is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=unsigned" (string literal with null) 3c 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 e4 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 30 8d 04 08 00 00 00 00 ~ :cc-below-equal (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 20 e6 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 00 e0 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ & is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 df 04 08 00 00 00 00 ~ and-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ | is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 e0 04 08 00 00 00 00 ~ or-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ xor is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "xor" (string literal with null) 78 6f 72 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ invert is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 00 e2 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ lit is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 60 cc 04 08 00 00 00 00 ~ lods64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ litstring is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 00 e2 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) 70 d7 04 08 00 00 00 00 ~ repnz-scas8 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 da 04 08 00 00 00 00 ~ add-reg64-imm8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) d8 64 04 08 00 00 00 00 ~ invert (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 00 e0 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ ! is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 50 bd 04 08 00 00 00 00 ~ mov-indirect-reg64-reg64 ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ @ is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 be 04 08 00 00 00 00 ~ mov-reg64-indirect-reg64 ~ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ +! is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+!" (string literal with null) 2b 21 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 d9 04 08 00 00 00 00 ~ add-indirect-reg64-reg64 ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ -! is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-!" (string literal with null) 2d 21 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 db 04 08 00 00 00 00 ~ sub-indirect-reg64-reg64 ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 8! is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8!" (string literal with null) 38 21 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 c6 04 08 00 00 00 00 ~ mov-indirect-reg64-reg8 ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 8@ is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 90 c7 04 08 00 00 00 00 ~ mov-reg8-indirect-reg64 ~ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 16! is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16!" (string literal with null) 31 36 21 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 70 89 04 08 00 00 00 00 ~ :ax (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 c3 04 08 00 00 00 00 ~ mov-indirect-reg64-reg16 ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 16@ is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16@" (string literal with null) 31 36 40 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 70 89 04 08 00 00 00 00 ~ :ax (codeword pointer) 40 c5 04 08 00 00 00 00 ~ mov-reg16-indirect-reg64 ~ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 32! is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32!" (string literal with null) 33 32 21 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 30 88 04 08 00 00 00 00 ~ :eax (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) d8 c1 04 08 00 00 00 00 ~ mov-indirect-reg64-reg32 ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 32@ is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32@" (string literal with null) 33 32 40 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 30 88 04 08 00 00 00 00 ~ :eax (codeword pointer) f0 c2 04 08 00 00 00 00 ~ mov-reg32-indirect-reg64 ~ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ control! is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control!" (string literal with null) 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ control@ is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ value! is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value!" (string literal with null) 76 61 6c 75 65 21 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ value@ is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ memcopy is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memcopy" (string literal with null) 6d 65 6d 63 6f 70 79 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 ca 04 08 00 00 00 00 ~ rep-movs8 (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ memmove is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a0 e4 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 60 8c 04 08 00 00 00 00 ~ :cc-below (codeword pointer) d8 e6 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) 10 ca 04 08 00 00 00 00 ~ rep-movs8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 48 e8 04 08 00 00 00 00 ~ jmp-rel-imm8 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 d8 04 08 00 00 00 00 ~ add-reg64-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 08 df 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 d8 04 08 00 00 00 00 ~ add-reg64-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 08 df 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) c0 b5 04 08 00 00 00 00 ~ std (codeword pointer) 10 ca 04 08 00 00 00 00 ~ rep-movs8 (codeword pointer) 88 b5 04 08 00 00 00 00 ~ cld (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ stringlen is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 00 e2 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) 70 d7 04 08 00 00 00 00 ~ repnz-scas8 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 10 db 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 10 dc 04 08 00 00 00 00 ~ sub-reg64-imm8 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ reverse-stringlen is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-stringlen" (string literal with null) 72 65 76 65 72 73 65 2d 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 00 e2 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) c0 b5 04 08 00 00 00 00 ~ std (codeword pointer) 70 d7 04 08 00 00 00 00 ~ repnz-scas8 (codeword pointer) 88 b5 04 08 00 00 00 00 ~ cld (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 10 db 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 10 dc 04 08 00 00 00 00 ~ sub-reg64-imm8 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ reverse-padding-len is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-padding-len" (string literal with null) 72 65 76 65 72 73 65 2d 70 61 64 64 69 6e 67 2d 6c 65 6e 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 48 bb 04 08 00 00 00 00 ~ mov-reg64-imm32 (codeword pointer) c0 b5 04 08 00 00 00 00 ~ std (codeword pointer) f0 d5 04 08 00 00 00 00 ~ repz-scas8 (codeword pointer) 88 b5 04 08 00 00 00 00 ~ cld (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 10 db 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 10 dc 04 08 00 00 00 00 ~ sub-reg64-imm8 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ stringcmp is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringcmp" (string literal with null) 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 e1 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 78 be 04 08 00 00 00 00 ~ mov-reg64-indirect-reg64 ~ (codeword pointer) d8 8a 04 08 00 00 00 00 ~ :cl (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 88 c8 04 08 00 00 00 00 ~ mov-reg8-reg8 (codeword pointer) b8 d0 04 08 00 00 00 00 ~ cmps8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) c8 8c 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) d8 e6 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) 60 8d 04 08 00 00 00 00 ~ :cc-above (codeword pointer) 28 8b 04 08 00 00 00 00 ~ :bl (codeword pointer) 20 e6 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) a0 dc 04 08 00 00 00 00 ~ sbb-reg64-imm8 (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 90 e9 04 08 00 00 00 00 ~ pack-next (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a8 e5 04 08 00 00 00 00 ~ test-reg64-reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) e4 ff ff ff ff ff ff ff ~ 0xffffffffffffffe4 (integer literal) f8 8c 04 08 00 00 00 00 ~ :cc-not-equal (codeword pointer) d8 e6 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 b7 04 08 00 00 00 00 ~ push-imm32-extended64 ~ (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ branch is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 08 da 04 08 00 00 00 00 ~ add-reg64-indirect-reg64 ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ 0branch is defined here via the log-load transform. e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) a8 e5 04 08 00 00 00 00 ~ test-reg64-reg64 (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) c8 8c 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) d8 e6 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) 60 cc 04 08 00 00 00 00 ~ lods64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ execute is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 e7 04 08 00 00 00 00 ~ jmp-abs-indirect-reg64 ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ entry-to-execution-token is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ execution-token-to-entry is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execution-token-to-entry" (string literal with null) 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 2d 74 6f 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-padding-len" (string literal with null) 72 65 76 65 72 73 65 2d 70 61 64 64 69 6e 67 2d 6c 65 6e 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-stringlen" (string literal with null) 72 65 76 65 72 73 65 2d 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ entry-flags@ is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ entry-flags! is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ff ff ff ff ff ff ff ~ 0xffffffffffffff00 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ entry-to-name is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32!" (string literal with null) 33 32 21 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack16" (string literal with null) 70 61 63 6b 31 36 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16!" (string literal with null) 31 36 21 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8!" (string literal with null) 38 21 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ packstring is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packstring" (string literal with null) 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memcopy" (string literal with null) 6d 65 6d 63 6f 70 79 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-raw-string is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-raw-string" (string literal with null) 70 61 63 6b 2d 72 61 77 2d 73 74 72 69 6e 67 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memcopy" (string literal with null) 6d 65 6d 63 6f 70 79 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ packalign is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fe 04 08 00 00 00 00 ~ log-load-forever (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack64" (string literal with null) 75 6e 70 61 63 6b 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack32" (string literal with null) 75 6e 70 61 63 6b 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32@" (string literal with null) 33 32 40 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack16" (string literal with null) 75 6e 70 61 63 6b 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16@" (string literal with null) 31 36 40 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ align-size is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpackalign is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpackalign" (string literal with null) 75 6e 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ crash is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "crash" (string literal with null) 63 72 61 73 68 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 50 b6 04 08 00 00 00 00 ~ hlt (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ max is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "max" (string literal with null) 6d 61 78 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ min is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "min" (string literal with null) 6d 69 6e 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ over is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pick is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ndrop is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndrop" (string literal with null) 6e 64 72 6f 70 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ndup is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndup" (string literal with null) 6e 64 75 70 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ 3drop is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3drop" (string literal with null) 33 64 72 6f 70 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ 3dup is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3dup" (string literal with null) 33 64 75 70 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ && is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ || is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "||" (string literal with null) 7c 7c 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ not is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "not" (string literal with null) 6e 6f 74 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ negate is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "negate" (string literal with null) 6e 65 67 61 74 65 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ align-floor is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-floor" (string literal with null) 61 6c 69 67 6e 2d 66 6c 6f 6f 72 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ find-in is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find-in" (string literal with null) 66 69 6e 64 2d 69 6e 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringcmp" (string literal with null) 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fe 04 08 00 00 00 00 ~ log-load-forever (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ syscall-0 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-0" (string literal with null) 73 79 73 63 61 6c 6c 2d 30 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-1 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-1" (string literal with null) 73 79 73 63 61 6c 6c 2d 31 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-2 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-2" (string literal with null) 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-3 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-3" (string literal with null) 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-4 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-4" (string literal with null) 73 79 73 63 61 6c 6c 2d 34 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 40 87 04 08 00 00 00 00 ~ :r10 (codeword pointer) 90 b7 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-5 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-5" (string literal with null) 73 79 73 63 61 6c 6c 2d 35 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) f0 86 04 08 00 00 00 00 ~ :r8 (codeword pointer) 90 b7 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) 40 87 04 08 00 00 00 00 ~ :r10 (codeword pointer) 90 b7 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-6 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-6" (string literal with null) 73 79 73 63 61 6c 6c 2d 36 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 18 87 04 08 00 00 00 00 ~ :r9 (codeword pointer) 90 b7 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) f0 86 04 08 00 00 00 00 ~ :r8 (codeword pointer) 90 b7 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) 40 87 04 08 00 00 00 00 ~ :r10 (codeword pointer) 90 b7 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ sys-exit is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 3c 00 00 00 00 00 00 00 ~ 0x3c (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 bb 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) 50 b6 04 08 00 00 00 00 ~ hlt (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ sys-write is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-write" (string literal with null) 73 79 73 2d 77 72 69 74 65 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 bb 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ sys-read is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-read" (string literal with null) 73 79 73 2d 72 65 61 64 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 bb 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) c8 bc 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 b7 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ emitstring is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-write" (string literal with null) 73 79 73 2d 77 72 69 74 65 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ space is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ newline is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pow is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pow" (string literal with null) 70 6f 77 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fe 04 08 00 00 00 00 ~ log-load-forever (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ logfloor is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "logfloor" (string literal with null) 6c 6f 67 66 6c 6f 6f 72 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">unsigned" (string literal with null) 3e 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fe 04 08 00 00 00 00 ~ log-load-forever (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ logceil is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "logceil" (string literal with null) 6c 6f 67 63 65 69 6c 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=unsigned" (string literal with null) 3e 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fe 04 08 00 00 00 00 ~ log-load-forever (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .base-unsigned is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "logfloor" (string literal with null) 6c 6f 67 66 6c 6f 6f 72 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pow" (string literal with null) 70 6f 77 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fe 04 08 00 00 00 00 ~ log-load-forever (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .base is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base" (string literal with null) 2e 62 61 73 65 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ . is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base" (string literal with null) 2e 62 61 73 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex" (string literal with null) 2e 68 65 78 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex8" (string literal with null) 2e 68 65 78 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex16" (string literal with null) 2e 68 65 78 31 36 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex32" (string literal with null) 2e 68 65 78 33 32 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hexn is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hexn" (string literal with null) 2e 68 65 78 6e 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rcx" (string literal with null) 3a 72 63 78 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdx" (string literal with null) 3a 72 64 78 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbx" (string literal with null) 3a 72 62 78 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdi" (string literal with null) 3a 72 64 69 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r8" (string literal with null) 3a 72 38 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r9" (string literal with null) 3a 72 39 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r10" (string literal with null) 3a 72 31 30 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r11" (string literal with null) 3a 72 31 31 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r12" (string literal with null) 3a 72 31 32 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r13" (string literal with null) 3a 72 31 33 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r14" (string literal with null) 3a 72 31 34 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r15" (string literal with null) 3a 72 31 35 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":eax" (string literal with null) 3a 65 61 78 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ecx" (string literal with null) 3a 65 63 78 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edx" (string literal with null) 3a 65 64 78 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebx" (string literal with null) 3a 65 62 78 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esp" (string literal with null) 3a 65 73 70 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebp" (string literal with null) 3a 65 62 70 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esi" (string literal with null) 3a 65 73 69 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edi" (string literal with null) 3a 65 64 69 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ax" (string literal with null) 3a 61 78 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cx" (string literal with null) 3a 63 78 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dx" (string literal with null) 3a 64 78 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bx" (string literal with null) 3a 62 78 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":sp" (string literal with null) 3a 73 70 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bp" (string literal with null) 3a 62 70 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":si" (string literal with null) 3a 73 69 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":di" (string literal with null) 3a 64 69 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":al" (string literal with null) 3a 61 6c 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cl" (string literal with null) 3a 63 6c 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dl" (string literal with null) 3a 64 6c 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bl" (string literal with null) 3a 62 6c 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ah" (string literal with null) 3a 61 68 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ch" (string literal with null) 3a 63 68 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dh" (string literal with null) 3a 64 68 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bh" (string literal with null) 3a 62 68 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-overflow" (string literal with null) 3a 63 63 2d 6f 76 65 72 66 6c 6f 77 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-no-overflow" (string literal with null) 3a 63 63 2d 6e 6f 2d 6f 76 65 72 66 6c 6f 77 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above-equal" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 2d 65 71 75 61 6c 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-equal" (string literal with null) 3a 63 63 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-equal" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 65 71 75 61 6c 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below-equal" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 2d 65 71 75 61 6c 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-sign" (string literal with null) 3a 63 63 2d 73 69 67 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-sign" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 73 69 67 6e 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-even" (string literal with null) 3a 63 63 2d 65 76 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-odd" (string literal with null) 3a 63 63 2d 6f 64 64 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less" (string literal with null) 3a 63 63 2d 6c 65 73 73 00 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater-equal" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less-equal" (string literal with null) 3a 63 63 2d 6c 65 73 73 2d 65 71 75 61 6c 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f3 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) ~ reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rcx" (string literal with null) 3a 72 63 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdx" (string literal with null) 3a 72 64 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbx" (string literal with null) 3a 72 62 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdi" (string literal with null) 3a 72 64 69 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg64 is not a reg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 20 72 65 67 36 34 2e 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ extrareg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r8" (string literal with null) 3a 72 38 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r9" (string literal with null) 3a 72 39 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r10" (string literal with null) 3a 72 31 30 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r11" (string literal with null) 3a 72 31 31 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r12" (string literal with null) 3a 72 31 32 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r13" (string literal with null) 3a 72 31 33 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r14" (string literal with null) 3a 72 31 34 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r15" (string literal with null) 3a 72 31 35 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to extrareg64 is not an extrareg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 65 78 74 72 61 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 6e 20 65 78 74 72 61 72 65 67 36 34 2e 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ reg32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":eax" (string literal with null) 3a 65 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ecx" (string literal with null) 3a 65 63 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edx" (string literal with null) 3a 65 64 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebx" (string literal with null) 3a 65 62 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esp" (string literal with null) 3a 65 73 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebp" (string literal with null) 3a 65 62 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esi" (string literal with null) 3a 65 73 69 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edi" (string literal with null) 3a 65 64 69 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg32 is not a reg32." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 33 32 20 69 73 20 6e 6f 74 20 61 20 72 65 67 33 32 2e 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ reg16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ax" (string literal with null) 3a 61 78 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cx" (string literal with null) 3a 63 78 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dx" (string literal with null) 3a 64 78 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bx" (string literal with null) 3a 62 78 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":sp" (string literal with null) 3a 73 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bp" (string literal with null) 3a 62 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":si" (string literal with null) 3a 73 69 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":di" (string literal with null) 3a 64 69 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg16 is not a reg16." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 31 36 20 69 73 20 6e 6f 74 20 61 20 72 65 67 31 36 2e 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ reg8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":al" (string literal with null) 3a 61 6c 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cl" (string literal with null) 3a 63 6c 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dl" (string literal with null) 3a 64 6c 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bl" (string literal with null) 3a 62 6c 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ah" (string literal with null) 3a 61 68 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ch" (string literal with null) 3a 63 68 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dh" (string literal with null) 3a 64 68 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bh" (string literal with null) 3a 62 68 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg8 is not a reg8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 38 20 69 73 20 6e 6f 74 20 61 20 72 65 67 38 2e 00 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scalefield is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scalefield" (string literal with null) 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to scalefield is not 1, 2, 4, or 8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 73 63 61 6c 65 66 69 65 6c 64 20 69 73 20 6e 6f 74 20 31 2c 20 32 2c 20 34 2c 20 6f 72 20 38 2e 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ condition-code is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-overflow" (string literal with null) 3a 63 63 2d 6f 76 65 72 66 6c 6f 77 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-no-overflow" (string literal with null) 3a 63 63 2d 6e 6f 2d 6f 76 65 72 66 6c 6f 77 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above-equal" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 2d 65 71 75 61 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-equal" (string literal with null) 3a 63 63 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-equal" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 65 71 75 61 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below-equal" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 2d 65 71 75 61 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-sign" (string literal with null) 3a 63 63 2d 73 69 67 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-sign" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 73 69 67 6e 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-even" (string literal with null) 3a 63 63 2d 65 76 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-odd" (string literal with null) 3a 63 63 2d 6f 64 64 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less" (string literal with null) 3a 63 63 2d 6c 65 73 73 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0c 00 00 00 00 00 00 00 ~ 0xc (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater-equal" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less-equal" (string literal with null) 3a 63 63 2d 6c 65 73 73 2d 65 71 75 61 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0e 00 00 00 00 00 00 00 ~ 0xe (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to condition-code is not a condition code." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 20 69 73 20 6e 6f 74 20 61 20 63 6f 6e 64 69 74 69 6f 6e 20 63 6f 64 65 2e 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-0 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-0" (string literal with null) 72 65 78 2d 30 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-w is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 48 00 00 00 00 00 00 00 ~ 0x48 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-r is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-r" (string literal with null) 72 65 78 2d 72 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 44 00 00 00 00 00 00 00 ~ 0x44 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-x is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-x" (string literal with null) 72 65 78 2d 78 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 42 00 00 00 00 00 00 00 ~ 0x42 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-b is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-b" (string literal with null) 72 65 78 2d 62 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wr is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wr" (string literal with null) 72 65 78 2d 77 72 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4c 00 00 00 00 00 00 00 ~ 0x4c (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wx is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wx" (string literal with null) 72 65 78 2d 77 78 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4a 00 00 00 00 00 00 00 ~ 0x4a (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wb is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wb" (string literal with null) 72 65 78 2d 77 62 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 49 00 00 00 00 00 00 00 ~ 0x49 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-rx is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-rx" (string literal with null) 72 65 78 2d 72 78 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 46 00 00 00 00 00 00 00 ~ 0x46 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-rb is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-rb" (string literal with null) 72 65 78 2d 72 62 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 45 00 00 00 00 00 00 00 ~ 0x45 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-xb is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-xb" (string literal with null) 72 65 78 2d 78 62 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 43 00 00 00 00 00 00 00 ~ 0x43 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wrx is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wrx" (string literal with null) 72 65 78 2d 77 72 78 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4e 00 00 00 00 00 00 00 ~ 0x4e (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wrb is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wrb" (string literal with null) 72 65 78 2d 77 72 62 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4d 00 00 00 00 00 00 00 ~ 0x4d (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wxb is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wxb" (string literal with null) 72 65 78 2d 77 78 62 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4b 00 00 00 00 00 00 00 ~ 0x4b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-rxb is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-rxb" (string literal with null) 72 65 78 2d 72 78 62 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 47 00 00 00 00 00 00 00 ~ 0x47 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wrxb is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wrxb" (string literal with null) 72 65 78 2d 77 72 78 62 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4f 00 00 00 00 00 00 00 ~ 0x4f (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ opcodereg is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ opcodecc is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ modrm is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sib is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-reg8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg8" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-indirect-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "R/M parameter to addressing-indirect-reg64 is :rbp." (string literal with null) 52 2f 4d 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-disp8-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-disp32-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp32-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-indexed-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scalefield" (string literal with null) 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Base parameter to addressing-indexed-reg64 is :rbp." (string literal with null) 42 61 73 65 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-disp8-indexed-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scalefield" (string literal with null) 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cld is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cld" (string literal with null) 63 6c 64 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) fc 00 00 00 00 00 00 00 ~ 0xfc (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ std is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "std" (string literal with null) 73 74 64 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) fd 00 00 00 00 00 00 00 ~ 0xfd (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ syscall is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall" (string literal with null) 73 79 73 63 61 6c 6c 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hlt is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hlt" (string literal with null) 68 6c 74 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f4 00 00 00 00 00 00 00 ~ 0xf4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ push-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ push-extrareg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-extrareg64" (string literal with null) 70 75 73 68 2d 65 78 74 72 61 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-b" (string literal with null) 72 65 78 2d 62 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pop-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pop-reg64" (string literal with null) 70 6f 70 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pop-extrareg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pop-extrareg64" (string literal with null) 70 6f 70 2d 65 78 74 72 61 72 65 67 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-b" (string literal with null) 72 65 78 2d 62 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ push-imm32-extended64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-imm32-extended64" (string literal with null) 70 75 73 68 2d 69 6d 6d 33 32 2d 65 78 74 65 6e 64 65 64 36 34 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 68 00 00 00 00 00 00 00 ~ 0x68 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-disp8-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-disp32-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp32-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp32-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-indexed-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-indexed-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-disp8-indexed-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-indexed-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-imm32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm32" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 33 32 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c7 00 00 00 00 00 00 00 ~ 0xc7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-imm64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-extrareg64-imm64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-extrareg64-imm64" (string literal with null) 6d 6f 76 2d 65 78 74 72 61 72 65 67 36 34 2d 69 6d 6d 36 34 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wb" (string literal with null) 72 65 78 2d 77 62 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg64" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg64" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-indirect-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-disp8-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-disp32-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-disp32-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp32-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-indexed-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-indexed-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indexed-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indexed-reg64-reg64" (string literal with null) 6d 6f 76 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg32" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg32" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 33 32 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg32-indirect-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg32-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 33 32 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg32-disp8-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg32-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 33 32 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg16" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg16" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 31 36 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg16-indirect-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg16-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 31 36 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg16-disp8-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg16-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 31 36 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg8" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 38 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg8" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 38 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg8-indirect-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg8-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 38 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg8-disp8-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg8-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 38 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg8-reg8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg8-reg8" (string literal with null) 6d 6f 76 2d 72 65 67 38 2d 72 65 67 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg8" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs8" (string literal with null) 6d 6f 76 73 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs16" (string literal with null) 6d 6f 76 73 31 36 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs32" (string literal with null) 6d 6f 76 73 33 32 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs64" (string literal with null) 6d 6f 76 73 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs8" (string literal with null) 72 65 70 2d 6d 6f 76 73 38 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs16" (string literal with null) 72 65 70 2d 6d 6f 76 73 31 36 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs32" (string literal with null) 72 65 70 2d 6d 6f 76 73 33 32 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs64" (string literal with null) 72 65 70 2d 6d 6f 76 73 36 34 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods8" (string literal with null) 6c 6f 64 73 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods16" (string literal with null) 6c 6f 64 73 31 36 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods32" (string literal with null) 6c 6f 64 73 33 32 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods64" (string literal with null) 6c 6f 64 73 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods8" (string literal with null) 72 65 70 2d 6c 6f 64 73 38 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods16" (string literal with null) 72 65 70 2d 6c 6f 64 73 31 36 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods32" (string literal with null) 72 65 70 2d 6c 6f 64 73 33 32 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods64" (string literal with null) 72 65 70 2d 6c 6f 64 73 36 34 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos8" (string literal with null) 73 74 6f 73 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos16" (string literal with null) 73 74 6f 73 31 36 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos32" (string literal with null) 73 74 6f 73 33 32 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos64" (string literal with null) 73 74 6f 73 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos8" (string literal with null) 72 65 70 2d 73 74 6f 73 38 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos16" (string literal with null) 72 65 70 2d 73 74 6f 73 31 36 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos32" (string literal with null) 72 65 70 2d 73 74 6f 73 33 32 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos64" (string literal with null) 72 65 70 2d 73 74 6f 73 36 34 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps8" (string literal with null) 63 6d 70 73 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps16" (string literal with null) 63 6d 70 73 31 36 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps32" (string literal with null) 63 6d 70 73 33 32 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps64" (string literal with null) 63 6d 70 73 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps8" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 38 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps16" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 31 36 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps32" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 33 32 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps64" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 36 34 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps8" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 38 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps16" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 31 36 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps32" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 33 32 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps64" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 36 34 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas8" (string literal with null) 73 63 61 73 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a8 00 00 00 00 00 00 00 ~ 0xa8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas16" (string literal with null) 73 63 61 73 31 36 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas32" (string literal with null) 73 63 61 73 33 32 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas64" (string literal with null) 73 63 61 73 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas8" (string literal with null) 72 65 70 7a 2d 73 63 61 73 38 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas16" (string literal with null) 72 65 70 7a 2d 73 63 61 73 31 36 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas32" (string literal with null) 72 65 70 7a 2d 73 63 61 73 33 32 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas64" (string literal with null) 72 65 70 7a 2d 73 63 61 73 36 34 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas8" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 38 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas16 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas16" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 31 36 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas32" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 33 32 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas64" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 36 34 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-reg64-reg64" (string literal with null) 61 64 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-indirect-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-indirect-reg64-reg64" (string literal with null) 61 64 64 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-reg64-indirect-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-reg64-indirect-reg64" (string literal with null) 61 64 64 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-reg64-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-reg64-imm8" (string literal with null) 61 64 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sub-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sub-reg64-reg64" (string literal with null) 73 75 62 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sub-indirect-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sub-indirect-reg64-reg64" (string literal with null) 73 75 62 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sub-reg64-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sub-reg64-imm8" (string literal with null) 73 75 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sbb-reg64-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sbb-reg64-imm8" (string literal with null) 73 62 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mul-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mul-reg64" (string literal with null) 6d 75 6c 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ divmod-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "divmod-reg64" (string literal with null) 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ idivmod-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "idivmod-reg64" (string literal with null) 69 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ inc-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "inc-reg64" (string literal with null) 69 6e 63 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ dec-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dec-reg64" (string literal with null) 64 65 63 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ and-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "and-reg64-reg64" (string literal with null) 61 6e 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 23 00 00 00 00 00 00 00 ~ 0x23 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ and-reg64-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "and-reg64-imm8" (string literal with null) 61 6e 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ or-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "or-reg64-reg64" (string literal with null) 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ or-reg64-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "or-reg64-imm8" (string literal with null) 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ xor-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "xor-reg64-reg64" (string literal with null) 78 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 33 00 00 00 00 00 00 00 ~ 0x33 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ not-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "not-reg64" (string literal with null) 6e 6f 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rol-reg64-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rol-reg64-imm8" (string literal with null) 72 6f 6c 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rol-reg8-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rol-reg8-imm8" (string literal with null) 72 6f 6c 2d 72 65 67 38 2d 69 6d 6d 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg8" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ror-reg64-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ror-reg64-imm8" (string literal with null) 72 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ror-reg8-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ror-reg8-imm8" (string literal with null) 72 6f 72 2d 72 65 67 38 2d 69 6d 6d 38 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmp-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmp-reg64-reg64" (string literal with null) 63 6d 70 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 3b 00 00 00 00 00 00 00 ~ 0x3b (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmp-reg64-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmp-reg64-imm8" (string literal with null) 63 6d 70 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ test-reg64-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "test-reg64-reg64" (string literal with null) 74 65 73 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 85 00 00 00 00 00 00 00 ~ 0x85 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ set-reg8-cc is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "set-reg8-cc" (string literal with null) 73 65 74 2d 72 65 67 38 2d 63 63 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 90 00 00 00 00 00 00 00 ~ 0x90 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-cc-rel-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-cc-rel-imm8" (string literal with null) 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 38 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-cc-rel-imm32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-cc-rel-imm32" (string literal with null) 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-abs-indirect-reg64 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-rel-imm8 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-rel-imm8" (string literal with null) 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 38 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) eb 00 00 00 00 00 00 00 ~ 0xeb (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-rel-imm32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-rel-imm32" (string literal with null) 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) e9 00 00 00 00 00 00 00 ~ 0xe9 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ call-rel-imm32 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "call-rel-imm32" (string literal with null) 63 61 6c 6c 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) e8 00 00 00 00 00 00 00 ~ 0xe8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ret is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ret" (string literal with null) 72 65 74 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c3 00 00 00 00 00 00 00 ~ 0xc3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-next is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods64" (string literal with null) 6c 6f 64 73 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-beforenext is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-beforenext" (string literal with null) 70 61 63 6b 2d 62 65 66 6f 72 65 6e 65 78 74 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-pushcontrol is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-pushcontrol" (string literal with null) 70 61 63 6b 2d 70 75 73 68 63 6f 6e 74 72 6f 6c 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f8 ff ff ff ff ff ff ff ~ 0xfffffffffffffff8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg64" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-popcontrol is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-popcontrol" (string literal with null) 70 61 63 6b 2d 70 6f 70 63 6f 6e 74 72 6f 6c 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-offset is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 01 00 00 00 00 00 ~ 0x10000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-log is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-log" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 6f 67 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-s0 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-s0" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 73 30 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-r0 is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-r0" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 72 30 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-latest is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-here is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-find is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find-in" (string literal with null) 66 69 6e 64 2d 69 6e 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-find-execution-token is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find-execution-token" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "No such word: " (string literal with null) 4e 6f 20 73 75 63 68 20 77 6f 72 64 3a 20 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-create is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-create" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-self-codeword is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-self-codeword" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-comma is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-semicolon-assembly is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-semicolon-assembly" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6d 69 63 6f 6c 6f 6e 2d 61 73 73 65 6d 62 6c 79 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-variable is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-variable" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 76 61 72 69 61 62 6c 65 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-create" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-keyword is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-keyword" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6b 65 79 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-create" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-comma-string is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma-string" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 2d 73 74 72 69 6e 67 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packstring" (string literal with null) 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-left-curly-brace is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-left-curly-brace" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 65 66 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-right-curly-brace is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-right-curly-brace" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 72 69 67 68 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-if is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-if" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 69 66 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-unless is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-unless" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 75 6e 6c 65 73 73 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-if-else is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-if-else" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 69 66 2d 65 6c 73 65 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-forever is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-forever" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 6f 72 65 76 65 72 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-while is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-while" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 77 68 69 6c 65 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stack is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stack" (string literal with null) 73 74 61 63 6b 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stackhex is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stackhex" (string literal with null) 73 74 61 63 6b 68 65 78 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-in-log is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log" (string literal with null) 6c 6f 67 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ oldest-entry is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ oldest-entry-in is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry-in" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 2d 69 6e 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ next-newer-entry is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ next-newer-entry-in is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry-in" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 2d 69 6e 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ guess-entry-end is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "guess-entry-end" (string literal with null) 67 75 65 73 73 2d 65 6e 74 72 79 2d 65 6e 64 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ containing-entry is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-assembly-word is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-assembly-word" (string literal with null) 69 73 2d 61 73 73 65 6d 62 6c 79 2d 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-docol-itself is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-itself" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 74 73 65 6c 66 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringcmp" (string literal with null) 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-docol-codeword is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-codeword" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 63 6f 64 65 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-itself" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 74 73 65 6c 66 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-itself" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 74 73 65 6c 66 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-docol-interpreted-word is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-interpreted-word" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 6e 74 65 72 70 72 65 74 65 64 2d 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-assembly-word" (string literal with null) 69 73 2d 61 73 73 65 6d 62 6c 79 2d 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-codeword" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 63 6f 64 65 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-codeword-pointer is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-codeword-pointer" (string literal with null) 69 73 2d 63 6f 64 65 77 6f 72 64 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ indent is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ word-heading is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 36 00 00 00 00 00 00 00 ~ 0x36 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "max" (string literal with null) 6d 61 78 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "H" (string literal with null) 48 00 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "M" (string literal with null) 4d 00 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "I" (string literal with null) 49 00 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-assembly-word" (string literal with null) 69 73 2d 61 73 73 65 6d 62 6c 79 2d 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " asm" (string literal with null) 20 61 73 6d 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-interpreted-word" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 6e 74 65 72 70 72 65 74 65 64 2d 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " raw" (string literal with null) 20 72 61 77 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ list-dictionary is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "list-dictionary" (string literal with null) 6c 69 73 74 2d 64 69 63 74 69 6f 6e 61 72 79 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-printable is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-printable" (string literal with null) 69 73 2d 70 72 69 6e 74 61 62 6c 65 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 7f 00 00 00 00 00 00 00 ~ 0x7f (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump-row is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-row" (string literal with null) 68 65 78 64 75 6d 70 2d 72 6f 77 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex32" (string literal with null) 2e 68 65 78 33 32 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex8" (string literal with null) 2e 68 65 78 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-printable" (string literal with null) 69 73 2d 70 72 69 6e 74 61 62 6c 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndrop" (string literal with null) 6e 64 72 6f 70 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump-between is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-between" (string literal with null) 68 65 78 64 75 6d 70 2d 62 65 74 77 65 65 6e 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3dup" (string literal with null) 33 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-row" (string literal with null) 68 65 78 64 75 6d 70 2d 72 6f 77 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndrop" (string literal with null) 6e 64 72 6f 70 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump-from is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-from" (string literal with null) 68 65 78 64 75 6d 70 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-between" (string literal with null) 68 65 78 64 75 6d 70 2d 62 65 74 77 65 65 6e 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump" (string literal with null) 68 65 78 64 75 6d 70 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-from" (string literal with null) 68 65 78 64 75 6d 70 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-hex is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-hex" (string literal with null) 64 65 73 63 72 69 62 65 2d 68 65 78 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "guess-entry-end" (string literal with null) 67 75 65 73 73 2d 65 6e 74 72 79 2d 65 6e 64 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-between" (string literal with null) 68 65 78 64 75 6d 70 2d 62 65 74 77 65 65 6e 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-docol is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-docol" (string literal with null) 64 65 73 63 72 69 62 65 2d 64 6f 63 6f 6c 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "guess-entry-end" (string literal with null) 67 75 65 73 73 2d 65 6e 74 72 79 2d 65 6e 64 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-codeword-pointer" (string literal with null) 69 73 2d 63 6f 64 65 77 6f 72 64 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execution-token-to-entry" (string literal with null) 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 2d 74 6f 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe" (string literal with null) 64 65 73 63 72 69 62 65 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-interpreted-word" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 6e 74 65 72 70 72 65 74 65 64 2d 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-docol" (string literal with null) 64 65 73 63 72 69 62 65 2d 64 6f 63 6f 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-hex" (string literal with null) 64 65 73 63 72 69 62 65 2d 68 65 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-all is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-all" (string literal with null) 64 65 73 63 72 69 62 65 2d 61 6c 6c 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe" (string literal with null) 64 65 73 63 72 69 62 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-compilation is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-compilation" (string literal with null) 64 65 73 63 72 69 62 65 2d 63 6f 6d 70 69 6c 61 74 69 6f 6e 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "compilation in progress" (string literal with null) 63 6f 6d 70 69 6c 61 74 69 6f 6e 20 69 6e 20 70 72 6f 67 72 65 73 73 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump" (string literal with null) 68 65 78 64 75 6d 70 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " here " (string literal with null) 20 20 68 65 72 65 20 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " latest " (string literal with null) 20 20 6c 61 74 65 73 74 20 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " name of latest: " (string literal with null) 20 20 6e 61 6d 65 20 6f 66 20 6c 61 74 65 73 74 3a 20 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ symbolize-pointer is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "symbolize-pointer" (string literal with null) 73 79 6d 62 6f 6c 69 7a 65 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":" (string literal with null) 3a 00 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0x" (string literal with null) 30 78 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ list-callers is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "list-callers" (string literal with null) 6c 69 73 74 2d 63 61 6c 6c 65 72 73 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log" (string literal with null) 6c 6f 67 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "||" (string literal with null) 7c 7c 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control stack pointer out of range: " (string literal with null) 63 6f 6e 74 72 6f 6c 20 73 74 61 63 6b 20 70 6f 69 6e 74 65 72 20 6f 75 74 20 6f 66 20 72 61 6e 67 65 3a 20 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "symbolize-pointer" (string literal with null) 73 79 6d 62 6f 6c 69 7a 65 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ bye is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "bye" (string literal with null) 62 79 65 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ forget is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "forget" (string literal with null) 66 6f 72 67 65 74 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ , is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-immediate is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-hidden is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-visible is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-visible" (string literal with null) 6d 61 6b 65 2d 76 69 73 69 62 6c 65 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-metadata is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-metadata" (string literal with null) 6d 61 6b 65 2d 6d 65 74 61 64 61 74 61 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ recurse is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "recurse" (string literal with null) 72 65 63 75 72 73 65 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ find is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find-in" (string literal with null) 66 69 6e 64 2d 69 6e 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-string is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-string" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 74 72 69 6e 67 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ create is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ create-in is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create-in" (string literal with null) 63 72 65 61 74 65 2d 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packstring" (string literal with null) 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ self-codeword is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ variable is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "variable" (string literal with null) 76 61 72 69 61 62 6c 65 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ keyword is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "keyword" (string literal with null) 6b 65 79 77 6f 72 64 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ literal is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-physical-start is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-physical-length is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-logical-start is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-logical-length is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ input-buffer-refill is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ input-buffer-next-source is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-next-source" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6e 65 78 74 2d 73 6f 75 72 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ clear-buffer is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "clear-buffer" (string literal with null) 63 6c 65 61 72 2d 62 75 66 66 65 72 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ zero-input-buffer-metadata is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "zero-input-buffer-metadata" (string literal with null) 7a 65 72 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-next-source" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6e 65 78 74 2d 73 6f 75 72 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-input-buffer-metadata is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-input-buffer-metadata" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "zero-input-buffer-metadata" (string literal with null) 7a 65 72 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-input-buffer is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-input-buffer" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "zero-input-buffer-metadata" (string literal with null) 7a 65 72 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "clear-buffer" (string literal with null) 63 6c 65 61 72 2d 62 75 66 66 65 72 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ attach-string-to-input-buffer is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "attach-string-to-input-buffer" (string literal with null) 61 74 74 61 63 68 2d 73 74 72 69 6e 67 2d 74 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ consume-from is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume-from" (string literal with null) 63 6f 6e 73 75 6d 65 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ peek-from is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek-from" (string literal with null) 70 65 65 6b 2d 66 72 6f 6d 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ key-from is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key-from" (string literal with null) 6b 65 79 2d 66 72 6f 6d 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek-from" (string literal with null) 70 65 65 6b 2d 66 72 6f 6d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume-from" (string literal with null) 63 6f 6e 73 75 6d 65 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ normalize-buffer is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "normalize-buffer" (string literal with null) 6e 6f 72 6d 61 6c 69 7a 65 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ compute-next-buffer-free-block is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "compute-next-buffer-free-block" (string literal with null) 63 6f 6d 70 75 74 65 2d 6e 65 78 74 2d 62 75 66 66 65 72 2d 66 72 65 65 2d 62 6c 6f 63 6b 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ refill-input-buffer-from-stdin is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "refill-input-buffer-from-stdin" (string literal with null) 72 65 66 69 6c 6c 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 66 72 6f 6d 2d 73 74 64 69 6e 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "normalize-buffer" (string literal with null) 6e 6f 72 6d 61 6c 69 7a 65 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "compute-next-buffer-free-block" (string literal with null) 63 6f 6d 70 75 74 65 2d 6e 65 78 74 2d 62 75 66 66 65 72 2d 66 72 65 65 2d 62 6c 6f 63 6b 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-read" (string literal with null) 73 79 73 2d 72 65 61 64 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) fc ff ff ff ff ff ff ff ~ 0xfffffffffffffffc (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Read error." (string literal with null) 52 65 61 64 20 65 72 72 6f 72 2e 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fe 04 08 00 00 00 00 ~ log-load-forever (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer-metadata" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) ~ create e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer-metadata" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6b 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-input-buffer-metadata" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 f2 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) ~ peek is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek" (string literal with null) 70 65 65 6b 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek-from" (string literal with null) 70 65 65 6b 2d 66 72 6f 6d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ consume is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume" (string literal with null) 63 6f 6e 73 75 6d 65 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume-from" (string literal with null) 63 6f 6e 73 75 6d 65 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ key is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key-from" (string literal with null) 6b 65 79 2d 66 72 6f 6d 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unroll-past-string is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll-past-string" (string literal with null) 75 6e 72 6f 6c 6c 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ swap-past-string is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap-past-string" (string literal with null) 73 77 61 70 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll-past-string" (string literal with null) 75 6e 72 6f 6c 6c 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ dropstring is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value!" (string literal with null) 76 61 6c 75 65 21 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ dropstring-with-result is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap-past-string" (string literal with null) 73 77 61 70 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ accumulate-string is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "accumulate-string" (string literal with null) 61 63 63 75 6d 75 6c 61 74 65 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ff 00 00 00 00 00 00 ~ 0xff00 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 01 00 00 00 00 00 00 ~ 0x100 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 ff 00 00 00 00 00 ~ 0xff0000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 01 00 00 00 00 00 ~ 0x10000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 ff 00 00 00 00 ~ 0xff000000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 01 00 00 00 00 ~ 0x1000000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 ff 00 00 00 ~ 0xff00000000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 01 00 00 00 ~ 0x100000000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 ff 00 00 ~ 0xff0000000000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 01 00 00 ~ 0x10000000000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 ff 00 ~ 0xff000000000000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 01 00 ~ 0x1000000000000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 01 ~ 0x100000000000000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll-past-string" (string literal with null) 75 6e 72 6f 6c 6c 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-space is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-space" (string literal with null) 69 73 2d 73 70 61 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0c 00 00 00 00 00 00 00 ~ 0xc (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-alphanumeric is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-alphanumeric" (string literal with null) 69 73 2d 61 6c 70 68 61 6e 75 6d 65 72 69 63 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 39 00 00 00 00 00 00 00 ~ 0x39 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 5a 00 00 00 00 00 00 00 ~ 0x5a (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 7a 00 00 00 00 00 00 00 ~ 0x7a (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ word is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-space" (string literal with null) 69 73 2d 73 70 61 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "accumulate-string" (string literal with null) 61 63 63 75 6d 75 6c 61 74 65 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek" (string literal with null) 70 65 65 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-space" (string literal with null) 69 73 2d 73 70 61 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 08 f8 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume" (string literal with null) 63 6f 6e 73 75 6d 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "accumulate-string" (string literal with null) 61 63 63 75 6d 75 6c 61 74 65 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fe 04 08 00 00 00 00 ~ log-load-forever (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ generalized-digit-value is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "generalized-digit-value" (string literal with null) 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 2d 76 61 6c 75 65 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ decode-generalized-digit is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "decode-generalized-digit" (string literal with null) 64 65 63 6f 64 65 2d 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-alphanumeric" (string literal with null) 69 73 2d 61 6c 70 68 61 6e 75 6d 65 72 69 63 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "generalized-digit-value" (string literal with null) 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 2d 76 61 6c 75 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-base-unsigned is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "decode-generalized-digit" (string literal with null) 64 65 63 6f 64 65 2d 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "decode-generalized-digit" (string literal with null) 64 65 63 6f 64 65 2d 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fe 04 08 00 00 00 00 ~ log-load-forever (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-integer-unsigned is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer-unsigned" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 2d 75 6e 73 69 67 6e 65 64 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 78 00 00 00 00 00 00 00 ~ 0x78 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 6f 00 00 00 00 00 00 00 ~ 0x6f (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 62 00 00 00 00 00 00 00 ~ 0x62 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-integer is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 2d 00 00 00 00 00 00 00 ~ 0x2d (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer-unsigned" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 2d 75 6e 73 69 67 6e 65 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer-unsigned" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 2d 75 6e 73 69 67 6e 65 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-decimal is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-decimal" (string literal with null) 72 65 61 64 2d 64 65 63 69 6d 61 6c 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 2d 00 00 00 00 00 00 00 ~ 0x2d (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags-storage" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 2d 73 74 6f 72 61 67 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ create e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 f2 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) ~ [ is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "[" (string literal with null) 5b 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) ~ ] is defined here via the log-load transform. e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "]" (string literal with null) 5d 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) ~ : is defined here via the log-load transform. 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":" (string literal with null) 3a 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ ; is defined here via the log-load transform. 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ";" (string literal with null) 3b 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-visible" (string literal with null) 6d 61 6b 65 2d 76 69 73 69 62 6c 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 72 04 08 00 00 00 00 ~ over (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) ~ ;asm is defined here via the log-load transform. 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ";asm" (string literal with null) 3b 61 73 6d 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-visible" (string literal with null) 6d 61 6b 65 2d 76 69 73 69 62 6c 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 73 04 08 00 00 00 00 ~ pick (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) ~ ' is defined here via the log-load transform. 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "'" (string literal with null) 27 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ s" is defined here via the log-load transform. 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s"" (string literal with null) 73 22 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume" (string literal with null) 63 6f 6e 73 75 6d 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 22 00 00 00 00 00 00 00 ~ 0x22 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ ." is defined here via the log-load transform. 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "."" (string literal with null) 2e 22 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s"" (string literal with null) 73 22 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fa 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ ~ is defined here via the log-load transform. 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "~" (string literal with null) 7e 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fe 04 08 00 00 00 00 ~ log-load-while (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ interpret is defined here via the log-load transform. 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpret" (string literal with null) 69 6e 74 65 72 70 72 65 74 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 f5 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "No such word: " (string literal with null) 4e 6f 20 73 75 63 68 20 77 6f 72 64 3a 20 00 00 ~ (alignment padding) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ quit is defined here via the log-load transform. 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "quit" (string literal with null) 71 75 69 74 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control!" (string literal with null) 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 f5 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpret" (string literal with null) 69 6e 74 65 72 70 72 65 74 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 70 f5 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fe 04 08 00 00 00 00 ~ log-load-forever (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) e8 6a 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) d8 64 04 08 00 00 00 00 ~ invert (codeword pointer) 58 64 04 08 00 00 00 00 ~ & (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6b 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) e8 6a 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) d8 64 04 08 00 00 00 00 ~ invert (codeword pointer) 58 64 04 08 00 00 00 00 ~ & (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6b 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) e8 6a 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) d8 64 04 08 00 00 00 00 ~ invert (codeword pointer) 58 64 04 08 00 00 00 00 ~ & (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6b 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) e8 6a 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) d8 64 04 08 00 00 00 00 ~ invert (codeword pointer) 58 64 04 08 00 00 00 00 ~ & (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6b 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) ~ relink-main-input-buffer-to-stdin is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "relink-main-input-buffer-to-stdin" (string literal with null) 72 65 6c 69 6e 6b 2d 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 74 6f 2d 73 74 64 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "refill-input-buffer-from-stdin" (string literal with null) 72 65 66 69 6c 6c 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 66 72 6f 6d 2d 73 74 64 69 6e 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "relink-main-input-buffer-to-stdin" (string literal with null) 72 65 6c 69 6e 6b 2d 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 74 6f 2d 73 74 64 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ { is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "{" (string literal with null) 7b 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ } is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "}" (string literal with null) 7d 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ if is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "if" (string literal with null) 69 66 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ unless is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unless" (string literal with null) 75 6e 6c 65 73 73 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ if-else is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "if-else" (string literal with null) 69 66 2d 65 6c 73 65 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ forever is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "forever" (string literal with null) 66 6f 72 65 76 65 72 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ while is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "while" (string literal with null) 77 68 69 6c 65 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ nexit is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "nexit" (string literal with null) 6e 65 78 69 74 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "min" (string literal with null) 6d 69 6e 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control!" (string literal with null) 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-timespec is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-timespec" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 74 69 6d 65 73 70 65 63 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ timespec-seconds is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-seconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 73 65 63 6f 6e 64 73 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ timespec-nanoseconds is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-nanoseconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 6e 61 6e 6f 73 65 63 6f 6e 64 73 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ nanosleep is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "nanosleep" (string literal with null) 6e 61 6e 6f 73 6c 65 65 70 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ca 9a 3b 00 00 00 00 ~ 0x3b9aca00 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-timespec" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 74 69 6d 65 73 70 65 63 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-seconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 73 65 63 6f 6e 64 73 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-nanoseconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 6e 61 6e 6f 73 65 63 6f 6e 64 73 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-timespec" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 74 69 6d 65 73 70 65 63 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-seconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 73 65 63 6f 6e 64 73 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-nanoseconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 6e 61 6e 6f 73 65 63 6f 6e 64 73 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 23 00 00 00 00 00 00 00 ~ 0x23 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-2" (string literal with null) 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-sigaction is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaction" (string literal with null) 73 79 73 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-4" (string literal with null) 73 79 73 63 61 6c 6c 2d 34 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-sigaltstack is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaltstack" (string literal with null) 73 79 73 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-2" (string literal with null) 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-sigaction is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaction" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-action is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-action" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 61 63 74 69 6f 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-flags is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-flags" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 66 6c 61 67 73 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-restorer is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-restorer" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 72 65 73 74 6f 72 65 72 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-mask is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-mask" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 6d 61 73 6b 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-sigaltstack is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaltstack" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaltstack-pointer is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-pointer" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaltstack-flags is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-flags" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaltstack-size is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-size" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 73 69 7a 65 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ prepare-signal-stack is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "prepare-signal-stack" (string literal with null) 70 72 65 70 61 72 65 2d 73 69 67 6e 61 6c 2d 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 08 00 00 00 00 00 00 ~ 0x800 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaltstack" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-pointer" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-flags" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-size" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 73 69 7a 65 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaltstack" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaltstack" (string literal with null) 73 79 73 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ signal-return-trampoline is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "signal-return-trampoline" (string literal with null) 73 69 67 6e 61 6c 2d 72 65 74 75 72 6e 2d 74 72 61 6d 70 6f 6c 69 6e 65 00 00 00 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 bb 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) 00 b6 04 08 00 00 00 00 ~ syscall (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) d8 f1 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ wrap-signal-handler is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "wrap-signal-handler" (string literal with null) 77 72 61 70 2d 73 69 67 6e 61 6c 2d 68 61 6e 64 6c 65 72 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "signal-handler-wrapper" (string literal with null) 73 69 67 6e 61 6c 2d 68 61 6e 64 6c 65 72 2d 77 72 61 70 70 65 72 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cld" (string literal with null) 63 6c 64 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ret" (string literal with null) 72 65 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ bind-signal is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "bind-signal" (string literal with null) 62 69 6e 64 2d 73 69 67 6e 61 6c 00 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaction" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-action" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 61 63 74 69 6f 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-mask" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 6d 61 73 6b 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-flags" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 66 6c 61 67 73 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 04 00 00 00 00 ~ 0x4000000 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-restorer" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 72 65 73 74 6f 72 65 72 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "signal-return-trampoline" (string literal with null) 73 69 67 6e 61 6c 2d 72 65 74 75 72 6e 2d 74 72 61 6d 70 6f 6c 69 6e 65 00 00 00 00 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaction" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaction" (string literal with null) 73 79 73 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ handle-crash is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "handle-crash" (string literal with null) 68 61 6e 64 6c 65 2d 63 72 61 73 68 00 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "CRASH" (string literal with null) 43 52 41 53 48 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "list-callers" (string literal with null) 6c 69 73 74 2d 63 61 6c 6c 65 72 73 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ install-crash-handler is defined here via the log-load transform. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "install-crash-handler" (string literal with null) 69 6e 73 74 61 6c 6c 2d 63 72 61 73 68 2d 68 61 6e 64 6c 65 72 00 00 00 ~ (alignment padding) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "handle-crash" (string literal with null) 68 61 6e 64 6c 65 2d 63 72 61 73 68 00 00 00 00 ~ (alignment padding) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f4 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "wrap-signal-handler" (string literal with null) 77 72 61 70 2d 73 69 67 6e 61 6c 2d 68 61 6e 64 6c 65 72 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "bind-signal" (string literal with null) 62 69 6e 64 2d 73 69 67 6e 61 6c 00 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "install-crash-handler" (string literal with null) 69 6e 73 74 61 6c 6c 2d 63 72 61 73 68 2d 68 61 6e 64 6c 65 72 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ We're now done with the log-load routine; the next little bit of code ~ here is the final bit of the warm-start routine. 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "quit" (string literal with null) 71 75 69 74 00 00 00 00 ~ (alignment padding) c0 ed 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) ~ Get rid of that heap pointer on the stack, we're finally done with it! 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 88 69 04 08 00 00 00 00 ~ execute (codeword pointer) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ This is the start of a long block of code which has been processed by ~ the label transform, meaning it consists of ready-to-run Forth word ~ definitions that reference each other by address, suitable for direct ~ execution as soon as the cold-start routine has set up the basic ~ registers, flags, and memory areas that form Evocation's internal ABI. ~ ~ Each word definition consists of a dictionary entry header, a ~ codeword, and a word body. For words implemented as Forth code, the ~ codeword points to the "docol" routine, and the word body is an array of ~ pointers to the codewords of other words, occasionally interspersed with ~ literal values. For words implemented as machine code, the codeword ~ points to the start of the body, and the body is the machine code. ~ ~ All the word entry headers in this code link to each other, from last ~ backwards to first, forming an Evocation dictionary. ~ ~ The warm-start routine relies on words defined by the label transform, ~ as does the log-load routine. ~ (alignment padding) ~ This is the actual docol routine, the interpreter which is pointed to by ~ the codeword of every interpreted word. It does not itself have an entry ~ in the dictionary; the word "docol" will return a pointer to this routine. ~ The word's entry follows immediately after the routine. ~ label docol-codeword-value at offset 0x0000000000045f70 is here. ~ "pushcontrol" macro 48 8d 6d f8 ~ :rbp 0xfffffffffffffff8 :rbp lea-reg64-disp8-reg64 48 89 75 00 ~ :rsi :rbp 0x00 mov-disp8-reg64-reg64 48 83 c0 08 ~ 0x8 :rax add-reg64-imm8 48 89 c6 ~ :rax :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ This is the dictionary entry for docol. 00 00 00 00 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 6f 63 6f 6c 00 ~ (alignment padding) ~ label docol at offset 0x0000000000045f98 is here. a0 5f 04 08 00 00 00 00 48 b8 70 5f 04 08 00 00 00 00 ~ 0x8045f70 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ exit is defined here via the label transform; this is its entry header. 88 5f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 69 74 00 00 ~ (alignment padding) ~ label exit at offset 0x0000000000045fc0 is here. c8 5f 04 08 00 00 00 00 ~ (self codeword) ~ "popcontrol" macro 48 8b 75 00 ~ :rbp 0x00 :rsi mov-reg64-disp8-reg64 48 8d 6d 08 ~ :rbp 0x08 :rbp lea-reg64-disp8-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 ~ (alignment padding) ~ swap is defined here via the label transform; this is its entry header. b0 5f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 77 61 70 00 00 ~ (alignment padding) ~ label swap at offset 0x0000000000045fe8 is here. f0 5f 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 50 ~ :rax push-reg64 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ drop is defined here via the label transform; this is its entry header. d8 5f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 72 6f 70 00 00 ~ (alignment padding) ~ label drop at offset 0x0000000000046008 is here. 10 60 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ 2drop is defined here via the label transform; this is its entry header. f8 5f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 32 64 72 6f 70 00 ~ (alignment padding) ~ label 2drop at offset 0x0000000000046028 is here. 30 60 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 58 ~ :rax pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ roll is defined here via the label transform; this is its entry header. 18 60 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 6c 6c 00 00 ~ (alignment padding) ~ label roll at offset 0x0000000000046048 is here. 50 60 04 08 00 00 00 00 ~ (self codeword) 59 ~ :rcx pop-reg64 48 ff c9 ~ :rcx dec-reg64 48 8b 1c cc ~ :rsp :rcx 8 :rbx mov-reg64-indexed-reg64 56 ~ :rsi push-reg64 48 8d 34 cc ~ :rsp :rcx 8 :rsi lea-reg64-indexed-reg64 48 8d 7c cc 08 ~ :rsp :rcx 8 0x08 :rdi lea-reg64-disp8-indexed-reg64 fd ~ std f3 48 a5 ~ rep-movs64 fc ~ cld 5e ~ :rsi pop-reg64 48 89 1c 24 ~ :rbx :rsp mov-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ unroll is defined here via the label transform; this is its entry header. 38 60 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 72 6f 6c 6c 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label unroll at offset 0x0000000000046088 is here. 90 60 04 08 00 00 00 00 ~ (self codeword) 59 ~ :rcx pop-reg64 48 ff c9 ~ :rcx dec-reg64 48 89 ca ~ :rcx :rdx mov-reg64-reg64 48 8b 1c 24 ~ :rsp :rbx mov-reg64-indirect-reg64 56 ~ :rsi push-reg64 48 8d 74 24 10 ~ :rsp 0x10 :rsi lea-reg64-disp8-reg64 48 8d 7c 24 08 ~ :rsp 0x08 :rdi lea-reg64-disp8-reg64 f3 48 a5 ~ rep-movs64 5e ~ :rsi pop-reg64 48 89 1c d4 ~ :rbx :rsp :rdx 8 mov-indexed-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ 3roll is defined here via the label transform; this is its entry header. 70 60 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 72 6f 6c 6c 00 ~ (alignment padding) ~ label 3roll at offset 0x00000000000460c8 is here. d0 60 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 59 ~ :rcx pop-reg64 53 ~ :rbx push-reg64 50 ~ :rax push-reg64 51 ~ :rcx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ 3unroll is defined here via the label transform; this is its entry header. b8 60 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 75 6e 72 6f 6c 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label 3unroll at offset 0x00000000000460f8 is here. 00 61 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 59 ~ :rcx pop-reg64 50 ~ :rax push-reg64 51 ~ :rcx push-reg64 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ dup is defined here via the label transform; this is its entry header. e0 60 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 75 70 00 00 00 ~ (alignment padding) ~ label dup at offset 0x0000000000046120 is here. 28 61 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 50 ~ :rax push-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ 2dup is defined here via the label transform; this is its entry header. 10 61 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 32 64 75 70 00 00 ~ (alignment padding) ~ label 2dup at offset 0x0000000000046140 is here. 48 61 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 53 ~ :rbx push-reg64 50 ~ :rax push-reg64 53 ~ :rbx push-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ + is defined here via the label transform; this is its entry header. 30 61 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2b 00 00 00 00 00 ~ (alignment padding) ~ label + at offset 0x0000000000046168 is here. 70 61 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 01 d8 ~ :rbx :rax add-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ - is defined here via the label transform; this is its entry header. 58 61 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2d 00 00 00 00 00 ~ (alignment padding) ~ label - at offset 0x0000000000046190 is here. 98 61 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 2b c3 ~ :rbx :rax sub-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ * is defined here via the label transform; this is its entry header. 80 61 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2a 00 00 00 00 00 ~ (alignment padding) ~ label * at offset 0x00000000000461b8 is here. c0 61 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 f7 e3 ~ :rbx mul-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ /% is defined here via the label transform; this is its entry header. a8 61 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2f 25 00 00 00 00 ~ (alignment padding) ~ label /% at offset 0x00000000000461e0 is here. e8 61 04 08 00 00 00 00 ~ (self codeword) 48 33 d2 ~ :rdx :rdx xor-reg64-reg64 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 f7 f3 ~ :rbx divmod-reg64 52 ~ :rdx push-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ 1+ is defined here via the label transform; this is its entry header. d0 61 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 2b 00 00 00 00 ~ (alignment padding) ~ label 1+ at offset 0x0000000000046208 is here. 10 62 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 ff c0 ~ :rax inc-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ 1- is defined here via the label transform; this is its entry header. f8 61 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 2d 00 00 00 00 ~ (alignment padding) ~ label 1- at offset 0x0000000000046230 is here. 38 62 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 ff c8 ~ :rax dec-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ = is defined here via the label transform; this is its entry header. 20 62 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3d 00 00 00 00 00 ~ (alignment padding) ~ label = at offset 0x0000000000046258 is here. 60 62 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 94 c0 ~ :cc-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ != is defined here via the label transform; this is its entry header. 48 62 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 21 3d 00 00 00 00 ~ (alignment padding) ~ label != at offset 0x0000000000046288 is here. 90 62 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 95 c0 ~ :cc-not-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ > is defined here via the label transform; this is its entry header. 78 62 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 00 00 00 00 00 ~ (alignment padding) ~ label > at offset 0x00000000000462b8 is here. c0 62 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9f c0 ~ :cc-greater :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ < is defined here via the label transform; this is its entry header. a8 62 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3c 00 00 00 00 00 ~ (alignment padding) ~ label < at offset 0x00000000000462e8 is here. f0 62 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9c c0 ~ :cc-less :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ >= is defined here via the label transform; this is its entry header. d8 62 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 3d 00 00 00 00 ~ (alignment padding) ~ label >= at offset 0x0000000000046318 is here. 20 63 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9d c0 ~ :cc-greater-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ <= is defined here via the label transform; this is its entry header. 08 63 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3c 3d 00 00 00 00 ~ (alignment padding) ~ label <= at offset 0x0000000000046348 is here. 50 63 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9e c0 ~ :cc-less-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ >unsigned is defined here via the label transform; this is its entry header. 38 63 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 75 6e 73 69 67 6e 65 64 00 00 00 00 00 ~ (alignment padding) ~ label >unsigned at offset 0x0000000000046380 is here. 88 63 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 97 c0 ~ :cc-above :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ =unsigned is defined here via the label transform; this is its entry header. a0 63 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 ~ (alignment padding) ~ label >=unsigned at offset 0x00000000000463f0 is here. f8 63 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 93 c0 ~ :cc-above-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ <=unsigned is defined here via the label transform; this is its entry header. d8 63 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3c 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 ~ (alignment padding) ~ label <=unsigned at offset 0x0000000000046428 is here. 30 64 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 96 c0 ~ :cc-below-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ & is defined here via the label transform; this is its entry header. 10 64 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 26 00 00 00 00 00 ~ (alignment padding) ~ label & at offset 0x0000000000046458 is here. 60 64 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 23 c3 ~ :rbx :rax and-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ | is defined here via the label transform; this is its entry header. 48 64 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 7c 00 00 00 00 00 ~ (alignment padding) ~ label | at offset 0x0000000000046480 is here. 88 64 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 0b c3 ~ :rbx :rax or-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ xor is defined here via the label transform; this is its entry header. 70 64 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 78 6f 72 00 00 00 ~ (alignment padding) ~ label xor at offset 0x00000000000464a8 is here. b0 64 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 33 c3 ~ :rbx :rax xor-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ invert is defined here via the label transform; this is its entry header. 98 64 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 69 6e 76 65 72 74 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label invert at offset 0x00000000000464d8 is here. e0 64 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 f7 d0 ~ :rax not-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ lit is defined here via the label transform; this is its entry header. c0 64 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 69 74 00 00 00 ~ (alignment padding) ~ label lit at offset 0x0000000000046500 is here. 08 65 04 08 00 00 00 00 ~ (self codeword) 48 ad ~ lods64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ litstring is defined here via the label transform; this is its entry header. f0 64 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 ~ (alignment padding) ~ label litstring at offset 0x0000000000046528 is here. 30 65 04 08 00 00 00 00 ~ (self codeword) 56 ~ :rsi push-reg64 48 89 f7 ~ :rsi :rdi mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 33 c9 ~ :rcx :rcx xor-reg64-reg64 48 f7 d1 ~ :rcx not-reg64 f2 ae ~ repnz-scas8 48 89 fe ~ :rdi :rsi mov-reg64-reg64 48 83 c6 07 ~ 0x7 :rsi add-reg64-imm8 48 83 e6 f8 ~ 0xfffffffffffffff8 :rsi and-reg64-imm8 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ ! is defined here via the label transform; this is its entry header. 10 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 21 00 00 00 00 00 ~ (alignment padding) ~ label ! at offset 0x0000000000046560 is here. 68 65 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 89 03 ~ :rax :rbx mov-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ @ is defined here via the label transform; this is its entry header. 50 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 40 00 00 00 00 00 ~ (alignment padding) ~ label @ at offset 0x0000000000046588 is here. 90 65 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 8b 00 ~ :rax :rax mov-reg64-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ +! is defined here via the label transform; this is its entry header. 78 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2b 21 00 00 00 00 ~ (alignment padding) ~ label +! at offset 0x00000000000465b0 is here. b8 65 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 01 03 ~ :rax :rbx add-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ -! is defined here via the label transform; this is its entry header. a0 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2d 21 00 00 00 00 ~ (alignment padding) ~ label -! at offset 0x00000000000465d8 is here. e0 65 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 2b 03 ~ :rax :rbx sub-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ 8! is defined here via the label transform; this is its entry header. c8 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 38 21 00 00 00 00 ~ (alignment padding) ~ label 8! at offset 0x0000000000046600 is here. 08 66 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 88 03 ~ :al :rbx mov-indirect-reg64-reg8 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ 8@ is defined here via the label transform; this is its entry header. f0 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 38 40 00 00 00 00 ~ (alignment padding) ~ label 8@ at offset 0x0000000000046620 is here. 28 66 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 8a 03 ~ :rbx :al mov-reg8-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ 16! is defined here via the label transform; this is its entry header. 10 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 36 21 00 00 00 ~ (alignment padding) ~ label 16! at offset 0x0000000000046648 is here. 50 66 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 66 89 03 ~ :ax :rbx mov-indirect-reg64-reg16 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ 16@ is defined here via the label transform; this is its entry header. 38 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 36 40 00 00 00 ~ (alignment padding) ~ label 16@ at offset 0x0000000000046670 is here. 78 66 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 66 8b 03 ~ :rbx :ax mov-reg16-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 ~ (alignment padding) ~ 32! is defined here via the label transform; this is its entry header. 60 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 32 21 00 00 00 ~ (alignment padding) ~ label 32! at offset 0x0000000000046698 is here. a0 66 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 89 03 ~ :eax :rbx mov-indirect-reg64-reg32 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ 32@ is defined here via the label transform; this is its entry header. 88 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 32 40 00 00 00 ~ (alignment padding) ~ label 32@ at offset 0x00000000000466b8 is here. c0 66 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 8b 03 ~ :rbx :eax mov-reg32-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ control! is defined here via the label transform; this is its entry header. a8 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 ~ (alignment padding) ~ label control! at offset 0x00000000000466e8 is here. f0 66 04 08 00 00 00 00 ~ (self codeword) 5d ~ :rbp pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ control@ is defined here via the label transform; this is its entry header. d0 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 ~ (alignment padding) ~ label control@ at offset 0x0000000000046710 is here. 18 67 04 08 00 00 00 00 ~ (self codeword) 55 ~ :rbp push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ value! is defined here via the label transform; this is its entry header. f8 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 76 61 6c 75 65 21 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label value! at offset 0x0000000000046738 is here. 40 67 04 08 00 00 00 00 ~ (self codeword) 5c ~ :rsp pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ value@ is defined here via the label transform; this is its entry header. 20 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 76 61 6c 75 65 40 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label value@ at offset 0x0000000000046760 is here. 68 67 04 08 00 00 00 00 ~ (self codeword) 54 ~ :rsp push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ memcopy is defined here via the label transform; this is its entry header. 48 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 65 6d 63 6f 70 79 00 00 00 00 00 00 00 ~ (alignment padding) ~ label memcopy at offset 0x0000000000046788 is here. 90 67 04 08 00 00 00 00 ~ (self codeword) 48 89 f2 ~ :rsi :rdx mov-reg64-reg64 59 ~ :rcx pop-reg64 5f ~ :rdi pop-reg64 5e ~ :rsi pop-reg64 f3 a4 ~ rep-movs8 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ memmove is defined here via the label transform; this is its entry header. 70 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 65 6d 6d 6f 76 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label memmove at offset 0x00000000000467b8 is here. c0 67 04 08 00 00 00 00 ~ (self codeword) 48 89 f2 ~ :rsi :rdx mov-reg64-reg64 59 ~ :rcx pop-reg64 5f ~ :rdi pop-reg64 5e ~ :rsi pop-reg64 48 89 f0 ~ :rsi :rax mov-reg64-reg64 48 3b c7 ~ :rdi :rax cmp-reg64-reg64 72 04 ~ 0x4 :cc-below jmp-cc-rel-imm8 f3 a4 ~ rep-movs8 eb 10 ~ 0x10 jmp-rel-imm8 48 01 ce ~ :rcx :rsi add-reg64-reg64 48 ff ce ~ :rsi dec-reg64 48 01 cf ~ :rcx :rdi add-reg64-reg64 48 ff cf ~ :rdi dec-reg64 fd ~ std f3 a4 ~ rep-movs8 fc ~ cld 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ stringlen is defined here via the label transform; this is its entry header. a0 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 ~ (alignment padding) ~ label stringlen at offset 0x0000000000046808 is here. 10 68 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 48 89 fb ~ :rdi :rbx mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 33 c9 ~ :rcx :rcx xor-reg64-reg64 48 f7 d1 ~ :rcx not-reg64 f2 ae ~ repnz-scas8 48 2b fb ~ :rbx :rdi sub-reg64-reg64 48 83 ef 01 ~ 0x1 :rdi sub-reg64-imm8 57 ~ :rdi push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ reverse-stringlen is defined here via the label transform; this is its entry header. f0 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 76 65 72 73 65 2d 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 ~ (alignment padding) ~ label reverse-stringlen at offset 0x0000000000046850 is here. 58 68 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 48 89 fb ~ :rdi :rbx mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 33 c9 ~ :rcx :rcx xor-reg64-reg64 48 f7 d1 ~ :rcx not-reg64 fd ~ std f2 ae ~ repnz-scas8 fc ~ cld 48 2b df ~ :rdi :rbx sub-reg64-reg64 48 83 eb 01 ~ 0x1 :rbx sub-reg64-imm8 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ reverse-padding-len is defined here via the label transform; this is its entry header. 30 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 76 65 72 73 65 2d 70 61 64 64 69 6e 67 2d 6c 65 6e 00 00 00 ~ (alignment padding) ~ label reverse-padding-len at offset 0x0000000000046898 is here. a0 68 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 48 89 fb ~ :rdi :rbx mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 c7 c1 09 00 00 00 ~ 0x9 :rcx mov-reg64-imm32 fd ~ std f3 ae ~ repz-scas8 fc ~ cld 48 2b df ~ :rdi :rbx sub-reg64-reg64 48 83 eb 01 ~ 0x1 :rbx sub-reg64-imm8 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ stringcmp is defined here via the label transform; this is its entry header. 78 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 ~ (alignment padding) ~ label stringcmp at offset 0x00000000000468d8 is here. e0 68 04 08 00 00 00 00 ~ (self codeword) 48 89 f2 ~ :rsi :rdx mov-reg64-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 48 33 db ~ :rbx :rbx xor-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 8b 0e ~ :rsi :rcx mov-reg64-indirect-reg64 88 c8 ~ :cl :al mov-reg8-reg8 a6 ~ cmps8 74 0f ~ 0xf :cc-equal jmp-cc-rel-imm8 0f 97 c3 ~ :cc-above :bl set-reg8-cc 48 83 db 00 ~ 0x0 :rbx sbb-reg64-imm8 53 ~ :rbx push-reg64 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 48 85 c0 ~ :rax :rax test-reg64-reg64 75 e4 ~ 0xffffffffffffffe4 :cc-not-equal jmp-cc-rel-imm8 68 00 00 00 00 ~ 0x0 push-imm32-extended64 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ branch is defined here via the label transform; this is its entry header. c0 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 62 72 61 6e 63 68 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label branch at offset 0x0000000000046930 is here. 38 69 04 08 00 00 00 00 ~ (self codeword) 48 03 36 ~ :rsi :rsi add-reg64-indirect-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ 0branch is defined here via the label transform; this is its entry header. 18 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 30 62 72 61 6e 63 68 00 00 00 00 00 00 00 ~ (alignment padding) ~ label 0branch at offset 0x0000000000046958 is here. 60 69 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 85 c0 ~ :rax :rax test-reg64-reg64 74 d2 ~ 0xffffffffffffffd2 :cc-equal jmp-cc-rel-imm8 48 ad ~ lods64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 ~ (alignment padding) ~ execute is defined here via the label transform; this is its entry header. 40 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 65 63 75 74 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label execute at offset 0x0000000000046988 is here. 90 69 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ entry-to-execution-token is defined here via the label transform; this is its entry header. 70 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label entry-to-execution-token at offset 0x00000000000469c0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 08 68 04 08 00 00 00 00 ~ stringlen (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) d8 64 04 08 00 00 00 00 ~ invert (codeword pointer) 58 64 04 08 00 00 00 00 ~ & (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ execution-token-to-entry is defined here via the label transform; this is its entry header. 98 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 2d 74 6f 2d 65 6e 74 72 79 00 00 00 00 00 00 ~ (alignment padding) ~ label execution-token-to-entry at offset 0x0000000000046a60 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 98 68 04 08 00 00 00 00 ~ reverse-padding-len (codeword pointer) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 50 68 04 08 00 00 00 00 ~ reverse-stringlen (codeword pointer) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ entry-flags@ is defined here via the label transform; this is its entry header. 38 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 ~ (alignment padding) ~ label entry-flags@ at offset 0x0000000000046ae8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 58 64 04 08 00 00 00 00 ~ & (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ entry-flags! is defined here via the label transform; this is its entry header. d0 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 ~ (alignment padding) ~ label entry-flags! at offset 0x0000000000046b48 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 58 64 04 08 00 00 00 00 ~ & (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ff ff ff ff ff ff ff ~ 0xffffffffffffff00 (integer literal) 58 64 04 08 00 00 00 00 ~ & (codeword pointer) 80 64 04 08 00 00 00 00 ~ | (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ entry-to-name is defined here via the label transform; this is its entry header. 30 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 ~ (alignment padding) ~ label entry-to-name at offset 0x0000000000046bf0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack64 is defined here via the label transform; this is its entry header. d8 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack64 at offset 0x0000000000046c30 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack32 is defined here via the label transform; this is its entry header. 18 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack32 at offset 0x0000000000046c90 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 98 66 04 08 00 00 00 00 ~ 32! (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack16 is defined here via the label transform; this is its entry header. 78 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack16 at offset 0x0000000000046cf0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 48 66 04 08 00 00 00 00 ~ 16! (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack8 is defined here via the label transform; this is its entry header. d8 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 38 00 ~ (alignment padding) ~ label pack8 at offset 0x0000000000046d48 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 66 04 08 00 00 00 00 ~ 8! (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ packstring is defined here via the label transform; this is its entry header. 38 6d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 ~ (alignment padding) ~ label packstring at offset 0x0000000000046da8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 08 68 04 08 00 00 00 00 ~ stringlen (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 67 04 08 00 00 00 00 ~ memcopy (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-raw-string is defined here via the label transform; this is its entry header. 90 6d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 72 61 77 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-raw-string at offset 0x0000000000046e68 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 08 68 04 08 00 00 00 00 ~ stringlen (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 67 04 08 00 00 00 00 ~ memcopy (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ packalign is defined here via the label transform; this is its entry header. 48 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 ~ (alignment padding) ~ label packalign at offset 0x0000000000046f08 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) e0 61 04 08 00 00 00 00 ~ /% (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 18 00 00 00 00 00 00 00 ~ 0x18 (branch offset) 08 60 04 08 00 00 00 00 ~ swap (codeword pointer) ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) e8 5f 04 08 00 00 00 00 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) 80 ff ff ff ff ff ff ff ~ 0xffffffffffffff80 (branch offset) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack64 is defined here via the label transform; this is its entry header. f0 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack64 at offset 0x0000000000046fb8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack32 is defined here via the label transform; this is its entry header. a0 6f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 33 32 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack32 at offset 0x0000000000047018 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) b8 66 04 08 00 00 00 00 ~ 32@ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack16 is defined here via the label transform; this is its entry header. 00 70 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 31 36 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack16 at offset 0x0000000000047078 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 70 66 04 08 00 00 00 00 ~ 16@ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack8 is defined here via the label transform; this is its entry header. 60 70 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack8 at offset 0x00000000000470d8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 8@ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ align-size is defined here via the label transform; this is its entry header. c0 70 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 ~ (alignment padding) ~ label align-size at offset 0x0000000000047138 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e0 61 04 08 00 00 00 00 ~ /% (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpackalign is defined here via the label transform; this is its entry header. 20 71 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 61 6c 69 67 6e 00 00 00 ~ (alignment padding) ~ label unpackalign at offset 0x00000000000471c8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 38 71 04 08 00 00 00 00 ~ align-size (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ crash is defined here via the label transform; this is its entry header. b0 71 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 72 61 73 68 00 ~ (alignment padding) ~ label crash at offset 0x00000000000471f0 is here. f8 71 04 08 00 00 00 00 ~ (self codeword) f4 ~ hlt ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ max is defined here via the label transform; this is its entry header. e0 71 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 61 78 00 00 00 ~ (alignment padding) ~ label max at offset 0x0000000000047210 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) 18 63 04 08 00 00 00 00 ~ >= (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (branch offset) e8 5f 04 08 00 00 00 00 ~ drop (codeword pointer) ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ min is defined here via the label transform; this is its entry header. 00 72 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 69 6e 00 00 00 ~ (alignment padding) ~ label min at offset 0x0000000000047278 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) 48 63 04 08 00 00 00 00 ~ <= (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (branch offset) e8 5f 04 08 00 00 00 00 ~ drop (codeword pointer) ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ over is defined here via the label transform; this is its entry header. 68 72 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 76 65 72 00 00 ~ (alignment padding) ~ label over at offset 0x00000000000472e0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pick is defined here via the label transform; this is its entry header. d0 72 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 69 63 6b 00 00 ~ (alignment padding) ~ label pick at offset 0x0000000000047318 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ndrop is defined here via the label transform; this is its entry header. 08 73 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 64 72 6f 70 00 ~ (alignment padding) ~ label ndrop at offset 0x0000000000047378 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 30 62 04 08 00 00 00 00 ~ 1- (codeword pointer) 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) b0 ff ff ff ff ff ff ff ~ 0xffffffffffffffb0 (branch offset) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ndup is defined here via the label transform; this is its entry header. 68 73 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 64 75 70 00 00 ~ (alignment padding) ~ label ndup at offset 0x00000000000473f8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 08 62 04 08 00 00 00 00 ~ 1+ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 48 00 00 00 00 00 00 00 ~ 0x48 (branch offset) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 18 73 04 08 00 00 00 00 ~ pick (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 30 62 04 08 00 00 00 00 ~ 1- (codeword pointer) 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) 98 ff ff ff ff ff ff ff ~ 0xffffffffffffff98 (branch offset) 28 60 04 08 00 00 00 00 ~ 2drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ 3drop is defined here via the label transform; this is its entry header. e8 73 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 64 72 6f 70 00 ~ (alignment padding) ~ label 3drop at offset 0x00000000000474a8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ 3dup is defined here via the label transform; this is its entry header. 98 74 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 64 75 70 00 00 ~ (alignment padding) ~ label 3dup at offset 0x00000000000474e0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 73 04 08 00 00 00 00 ~ pick (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 73 04 08 00 00 00 00 ~ pick (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 73 04 08 00 00 00 00 ~ pick (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ && is defined here via the label transform; this is its entry header. d0 74 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 26 26 00 00 00 00 ~ (alignment padding) ~ label && at offset 0x0000000000047548 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ || is defined here via the label transform; this is its entry header. 38 75 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 7c 7c 00 00 00 00 ~ (alignment padding) ~ label || at offset 0x00000000000475a8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 80 64 04 08 00 00 00 00 ~ | (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ not is defined here via the label transform; this is its entry header. 98 75 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 6f 74 00 00 00 ~ (alignment padding) ~ label not at offset 0x00000000000475e8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ negate is defined here via the label transform; this is its entry header. d8 75 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 65 67 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label negate at offset 0x0000000000047628 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ align-floor is defined here via the label transform; this is its entry header. 10 76 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6c 69 67 6e 2d 66 6c 6f 6f 72 00 00 00 ~ (alignment padding) ~ label align-floor at offset 0x0000000000047668 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e0 61 04 08 00 00 00 00 ~ /% (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ find-in is defined here via the label transform; this is its entry header. 50 76 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 66 69 6e 64 2d 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) ~ label find-in at offset 0x00000000000476c0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (branch offset) e8 5f 04 08 00 00 00 00 ~ dup (codeword pointer) ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 e8 6a 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 58 64 04 08 00 00 00 00 ~ & (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (branch offset) 40 61 04 08 00 00 00 00 ~ @ (codeword pointer) ~ 2dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) d8 68 04 08 00 00 00 00 ~ stringcmp (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (branch offset) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 88 65 04 08 00 00 00 00 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) a8 fe ff ff ff ff ff ff ~ 0xfffffffffffffea8 (branch offset) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ syscall-0 is defined here via the label transform; this is its entry header. a8 76 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 30 00 00 00 00 00 ~ (alignment padding) ~ label syscall-0 at offset 0x0000000000047850 is here. 58 78 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 0f 05 ~ syscall 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ syscall-1 is defined here via the label transform; this is its entry header. 38 78 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 31 00 00 00 00 00 ~ (alignment padding) ~ label syscall-1 at offset 0x0000000000047878 is here. 80 78 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ syscall-2 is defined here via the label transform; this is its entry header. 60 78 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 ~ (alignment padding) ~ label syscall-2 at offset 0x00000000000478a8 is here. b0 78 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ syscall-3 is defined here via the label transform; this is its entry header. 90 78 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 ~ (alignment padding) ~ label syscall-3 at offset 0x00000000000478d8 is here. e0 78 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ syscall-4 is defined here via the label transform; this is its entry header. c0 78 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 34 00 00 00 00 00 ~ (alignment padding) ~ label syscall-4 at offset 0x0000000000047910 is here. 18 79 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 41 5a ~ :r10 pop-extrareg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ syscall-5 is defined here via the label transform; this is its entry header. f8 78 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 35 00 00 00 00 00 ~ (alignment padding) ~ label syscall-5 at offset 0x0000000000047948 is here. 50 79 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 41 58 ~ :r8 pop-extrareg64 41 5a ~ :r10 pop-extrareg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ syscall-6 is defined here via the label transform; this is its entry header. 30 79 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 36 00 00 00 00 00 ~ (alignment padding) ~ label syscall-6 at offset 0x0000000000047980 is here. 88 79 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 41 59 ~ :r9 pop-extrareg64 41 58 ~ :r8 pop-extrareg64 41 5a ~ :r10 pop-extrareg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ sys-exit is defined here via the label transform; this is its entry header. 68 79 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 ~ (alignment padding) ~ label sys-exit at offset 0x00000000000479b8 is here. c0 79 04 08 00 00 00 00 ~ (self codeword) 48 b8 3c 00 00 00 00 00 00 00 ~ 0x3c :rax mov-reg64-imm64 5f ~ :rdi pop-reg64 0f 05 ~ syscall f4 ~ hlt ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ sys-write is defined here via the label transform; this is its entry header. a0 79 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 77 72 69 74 65 00 00 00 00 00 ~ (alignment padding) ~ label sys-write at offset 0x00000000000479f0 is here. f8 79 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 59 ~ :rcx pop-reg64 5a ~ :rdx pop-reg64 56 ~ :rsi push-reg64 48 b8 01 00 00 00 00 00 00 00 ~ 0x1 :rax mov-reg64-imm64 48 89 ce ~ :rcx :rsi mov-reg64-reg64 0f 05 ~ syscall 5e ~ :rsi pop-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ sys-read is defined here via the label transform; this is its entry header. d8 79 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 72 65 61 64 00 00 00 00 00 00 ~ (alignment padding) ~ label sys-read at offset 0x0000000000047a30 is here. 38 7a 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 59 ~ :rcx pop-reg64 5a ~ :rdx pop-reg64 56 ~ :rsi push-reg64 48 b8 00 00 00 00 00 00 00 00 ~ 0x0 :rax mov-reg64-imm64 48 89 ce ~ :rcx :rsi mov-reg64-reg64 0f 05 ~ syscall 5e ~ :rsi pop-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ emitstring is defined here via the label transform; this is its entry header. 18 7a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 ~ (alignment padding) ~ label emitstring at offset 0x0000000000047a70 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 08 68 04 08 00 00 00 00 ~ stringlen (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f0 79 04 08 00 00 00 00 ~ sys-write (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ space is defined here via the label transform; this is its entry header. 58 7a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 70 61 63 65 00 ~ (alignment padding) ~ label space at offset 0x0000000000047ac8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) 60 67 04 08 00 00 00 00 ~ value@ (codeword pointer) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ newline is defined here via the label transform; this is its entry header. b8 7a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 65 77 6c 69 6e 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label newline at offset 0x0000000000047b18 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 60 67 04 08 00 00 00 00 ~ value@ (codeword pointer) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pow is defined here via the label transform; this is its entry header. 00 7b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 6f 77 00 00 00 ~ (alignment padding) ~ label pow at offset 0x0000000000047b60 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ lit (codeword pointer) ~ drop (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 00 65 04 08 00 00 00 00 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) 50 ff ff ff ff ff ff ff ~ 0xffffffffffffff50 (branch offset) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ logfloor is defined here via the label transform; this is its entry header. 50 7b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 66 6c 6f 6f 72 00 00 00 00 00 00 ~ (alignment padding) ~ label logfloor at offset 0x0000000000047c58 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) 80 63 04 08 00 00 00 00 ~ >unsigned (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 08 60 04 08 00 00 00 00 ~ lit (codeword pointer) ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 00 65 04 08 00 00 00 00 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e8 62 04 08 00 00 00 00 ~ < (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) 68 fe ff ff ff ff ff ff ~ 0xfffffffffffffe68 (branch offset) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ logceil is defined here via the label transform; this is its entry header. 40 7c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 63 65 69 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label logceil at offset 0x0000000000047e48 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) f0 63 04 08 00 00 00 00 ~ >=unsigned (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 08 60 04 08 00 00 00 00 ~ lit (codeword pointer) ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 00 65 04 08 00 00 00 00 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e8 62 04 08 00 00 00 00 ~ < (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) 68 fe ff ff ff ff ff ff ~ 0xfffffffffffffe68 (branch offset) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .base-unsigned is defined here via the label transform; this is its entry header. 30 7e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .base-unsigned at offset 0x0000000000048038 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) 58 7c 04 08 00 00 00 00 ~ logfloor (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) b8 62 04 08 00 00 00 00 ~ > (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (branch offset) 08 60 04 08 00 00 00 00 ~ 2dup (codeword pointer) ~ drop (codeword pointer) 40 61 04 08 00 00 00 00 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 7b 04 08 00 00 00 00 ~ pow (codeword pointer) e0 61 04 08 00 00 00 00 ~ /% (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 61 04 08 00 00 00 00 ~ /% (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) b8 62 04 08 00 00 00 00 ~ > (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 00 65 04 08 00 00 00 00 ~ + (codeword pointer) ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) 68 61 04 08 00 00 00 00 60 67 04 08 00 00 00 00 ~ value@ (codeword pointer) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) 18 fe ff ff ff ff ff ff ~ 0xfffffffffffffe18 (branch offset) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .base is defined here via the label transform; this is its entry header. 18 80 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 62 61 73 65 00 ~ (alignment padding) ~ label .base at offset 0x00000000000482f8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b8 62 04 08 00 00 00 00 ~ > (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 38 00 00 00 00 00 00 00 ~ 0x38 (branch offset) 00 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) e8 5f 04 08 00 00 00 00 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 38 80 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ . is defined here via the label transform; this is its entry header. e8 82 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 00 00 00 00 00 ~ (alignment padding) ~ label . at offset 0x00000000000483b8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 82 04 08 00 00 00 00 ~ .base (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex is defined here via the label transform; this is its entry header. a8 83 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 00 00 ~ (alignment padding) ~ label .hex at offset 0x00000000000483f0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 38 80 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex8 is defined here via the label transform; this is its entry header. e0 83 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 38 00 ~ (alignment padding) ~ label .hex8 at offset 0x0000000000048438 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 38 80 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex16 is defined here via the label transform; this is its entry header. 28 84 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .hex16 at offset 0x0000000000048488 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 38 80 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex32 is defined here via the label transform; this is its entry header. 70 84 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .hex32 at offset 0x00000000000484d8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 38 80 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex64 is defined here via the label transform; this is its entry header. c0 84 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .hex64 at offset 0x0000000000048528 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 38 80 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hexn is defined here via the label transform; this is its entry header. 10 85 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 6e 00 ~ (alignment padding) ~ label .hexn at offset 0x0000000000048570 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 38 80 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ :rax is defined here via the label transform; this is its entry header. 60 85 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 61 78 00 00 ~ (alignment padding) ~ label :rax at offset 0x00000000000485b0 is here. b8 85 04 08 00 00 00 00 48 b8 b0 85 04 08 00 00 00 00 ~ 0x80485b0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rcx is defined here via the label transform; this is its entry header. a0 85 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 63 78 00 00 ~ (alignment padding) ~ label :rcx at offset 0x00000000000485d8 is here. e0 85 04 08 00 00 00 00 48 b8 d8 85 04 08 00 00 00 00 ~ 0x80485d8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rdx is defined here via the label transform; this is its entry header. c8 85 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 64 78 00 00 ~ (alignment padding) ~ label :rdx at offset 0x0000000000048600 is here. 08 86 04 08 00 00 00 00 48 b8 00 86 04 08 00 00 00 00 ~ 0x8048600 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rbx is defined here via the label transform; this is its entry header. f0 85 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 62 78 00 00 ~ (alignment padding) ~ label :rbx at offset 0x0000000000048628 is here. 30 86 04 08 00 00 00 00 48 b8 28 86 04 08 00 00 00 00 ~ 0x8048628 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rsp is defined here via the label transform; this is its entry header. 18 86 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 73 70 00 00 ~ (alignment padding) ~ label :rsp at offset 0x0000000000048650 is here. 58 86 04 08 00 00 00 00 48 b8 50 86 04 08 00 00 00 00 ~ 0x8048650 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rbp is defined here via the label transform; this is its entry header. 40 86 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 62 70 00 00 ~ (alignment padding) ~ label :rbp at offset 0x0000000000048678 is here. 80 86 04 08 00 00 00 00 48 b8 78 86 04 08 00 00 00 00 ~ 0x8048678 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rsi is defined here via the label transform; this is its entry header. 68 86 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 73 69 00 00 ~ (alignment padding) ~ label :rsi at offset 0x00000000000486a0 is here. a8 86 04 08 00 00 00 00 48 b8 a0 86 04 08 00 00 00 00 ~ 0x80486a0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rdi is defined here via the label transform; this is its entry header. 90 86 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 64 69 00 00 ~ (alignment padding) ~ label :rdi at offset 0x00000000000486c8 is here. d0 86 04 08 00 00 00 00 48 b8 c8 86 04 08 00 00 00 00 ~ 0x80486c8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r8 is defined here via the label transform; this is its entry header. b8 86 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 38 00 00 00 ~ (alignment padding) ~ label :r8 at offset 0x00000000000486f0 is here. f8 86 04 08 00 00 00 00 48 b8 f0 86 04 08 00 00 00 00 ~ 0x80486f0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r9 is defined here via the label transform; this is its entry header. e0 86 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 39 00 00 00 ~ (alignment padding) ~ label :r9 at offset 0x0000000000048718 is here. 20 87 04 08 00 00 00 00 48 b8 18 87 04 08 00 00 00 00 ~ 0x8048718 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r10 is defined here via the label transform; this is its entry header. 08 87 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 30 00 00 ~ (alignment padding) ~ label :r10 at offset 0x0000000000048740 is here. 48 87 04 08 00 00 00 00 48 b8 40 87 04 08 00 00 00 00 ~ 0x8048740 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r11 is defined here via the label transform; this is its entry header. 30 87 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 31 00 00 ~ (alignment padding) ~ label :r11 at offset 0x0000000000048768 is here. 70 87 04 08 00 00 00 00 48 b8 68 87 04 08 00 00 00 00 ~ 0x8048768 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r12 is defined here via the label transform; this is its entry header. 58 87 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 32 00 00 ~ (alignment padding) ~ label :r12 at offset 0x0000000000048790 is here. 98 87 04 08 00 00 00 00 48 b8 90 87 04 08 00 00 00 00 ~ 0x8048790 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r13 is defined here via the label transform; this is its entry header. 80 87 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 33 00 00 ~ (alignment padding) ~ label :r13 at offset 0x00000000000487b8 is here. c0 87 04 08 00 00 00 00 48 b8 b8 87 04 08 00 00 00 00 ~ 0x80487b8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r14 is defined here via the label transform; this is its entry header. a8 87 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 34 00 00 ~ (alignment padding) ~ label :r14 at offset 0x00000000000487e0 is here. e8 87 04 08 00 00 00 00 48 b8 e0 87 04 08 00 00 00 00 ~ 0x80487e0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r15 is defined here via the label transform; this is its entry header. d0 87 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 35 00 00 ~ (alignment padding) ~ label :r15 at offset 0x0000000000048808 is here. 10 88 04 08 00 00 00 00 48 b8 08 88 04 08 00 00 00 00 ~ 0x8048808 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :eax is defined here via the label transform; this is its entry header. f8 87 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 61 78 00 00 ~ (alignment padding) ~ label :eax at offset 0x0000000000048830 is here. 38 88 04 08 00 00 00 00 48 b8 30 88 04 08 00 00 00 00 ~ 0x8048830 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ecx is defined here via the label transform; this is its entry header. 20 88 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 63 78 00 00 ~ (alignment padding) ~ label :ecx at offset 0x0000000000048858 is here. 60 88 04 08 00 00 00 00 48 b8 58 88 04 08 00 00 00 00 ~ 0x8048858 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :edx is defined here via the label transform; this is its entry header. 48 88 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 64 78 00 00 ~ (alignment padding) ~ label :edx at offset 0x0000000000048880 is here. 88 88 04 08 00 00 00 00 48 b8 80 88 04 08 00 00 00 00 ~ 0x8048880 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ebx is defined here via the label transform; this is its entry header. 70 88 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 62 78 00 00 ~ (alignment padding) ~ label :ebx at offset 0x00000000000488a8 is here. b0 88 04 08 00 00 00 00 48 b8 a8 88 04 08 00 00 00 00 ~ 0x80488a8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :esp is defined here via the label transform; this is its entry header. 98 88 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 73 70 00 00 ~ (alignment padding) ~ label :esp at offset 0x00000000000488d0 is here. d8 88 04 08 00 00 00 00 48 b8 d0 88 04 08 00 00 00 00 ~ 0x80488d0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ebp is defined here via the label transform; this is its entry header. c0 88 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 62 70 00 00 ~ (alignment padding) ~ label :ebp at offset 0x00000000000488f8 is here. 00 89 04 08 00 00 00 00 48 b8 f8 88 04 08 00 00 00 00 ~ 0x80488f8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :esi is defined here via the label transform; this is its entry header. e8 88 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 73 69 00 00 ~ (alignment padding) ~ label :esi at offset 0x0000000000048920 is here. 28 89 04 08 00 00 00 00 48 b8 20 89 04 08 00 00 00 00 ~ 0x8048920 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :edi is defined here via the label transform; this is its entry header. 10 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 64 69 00 00 ~ (alignment padding) ~ label :edi at offset 0x0000000000048948 is here. 50 89 04 08 00 00 00 00 48 b8 48 89 04 08 00 00 00 00 ~ 0x8048948 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ax is defined here via the label transform; this is its entry header. 38 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 61 78 00 00 00 ~ (alignment padding) ~ label :ax at offset 0x0000000000048970 is here. 78 89 04 08 00 00 00 00 48 b8 70 89 04 08 00 00 00 00 ~ 0x8048970 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cx is defined here via the label transform; this is its entry header. 60 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 78 00 00 00 ~ (alignment padding) ~ label :cx at offset 0x0000000000048998 is here. a0 89 04 08 00 00 00 00 48 b8 98 89 04 08 00 00 00 00 ~ 0x8048998 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :dx is defined here via the label transform; this is its entry header. 88 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 78 00 00 00 ~ (alignment padding) ~ label :dx at offset 0x00000000000489c0 is here. c8 89 04 08 00 00 00 00 48 b8 c0 89 04 08 00 00 00 00 ~ 0x80489c0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bx is defined here via the label transform; this is its entry header. b0 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 78 00 00 00 ~ (alignment padding) ~ label :bx at offset 0x00000000000489e8 is here. f0 89 04 08 00 00 00 00 48 b8 e8 89 04 08 00 00 00 00 ~ 0x80489e8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :sp is defined here via the label transform; this is its entry header. d8 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 73 70 00 00 00 ~ (alignment padding) ~ label :sp at offset 0x0000000000048a10 is here. 18 8a 04 08 00 00 00 00 48 b8 10 8a 04 08 00 00 00 00 ~ 0x8048a10 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bp is defined here via the label transform; this is its entry header. 00 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 70 00 00 00 ~ (alignment padding) ~ label :bp at offset 0x0000000000048a38 is here. 40 8a 04 08 00 00 00 00 48 b8 38 8a 04 08 00 00 00 00 ~ 0x8048a38 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :si is defined here via the label transform; this is its entry header. 28 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 73 69 00 00 00 ~ (alignment padding) ~ label :si at offset 0x0000000000048a60 is here. 68 8a 04 08 00 00 00 00 48 b8 60 8a 04 08 00 00 00 00 ~ 0x8048a60 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :di is defined here via the label transform; this is its entry header. 50 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 69 00 00 00 ~ (alignment padding) ~ label :di at offset 0x0000000000048a88 is here. 90 8a 04 08 00 00 00 00 48 b8 88 8a 04 08 00 00 00 00 ~ 0x8048a88 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :al is defined here via the label transform; this is its entry header. 78 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 61 6c 00 00 00 ~ (alignment padding) ~ label :al at offset 0x0000000000048ab0 is here. b8 8a 04 08 00 00 00 00 48 b8 b0 8a 04 08 00 00 00 00 ~ 0x8048ab0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cl is defined here via the label transform; this is its entry header. a0 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 6c 00 00 00 ~ (alignment padding) ~ label :cl at offset 0x0000000000048ad8 is here. e0 8a 04 08 00 00 00 00 48 b8 d8 8a 04 08 00 00 00 00 ~ 0x8048ad8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :dl is defined here via the label transform; this is its entry header. c8 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 6c 00 00 00 ~ (alignment padding) ~ label :dl at offset 0x0000000000048b00 is here. 08 8b 04 08 00 00 00 00 48 b8 00 8b 04 08 00 00 00 00 ~ 0x8048b00 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bl is defined here via the label transform; this is its entry header. f0 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 6c 00 00 00 ~ (alignment padding) ~ label :bl at offset 0x0000000000048b28 is here. 30 8b 04 08 00 00 00 00 48 b8 28 8b 04 08 00 00 00 00 ~ 0x8048b28 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ah is defined here via the label transform; this is its entry header. 18 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 61 68 00 00 00 ~ (alignment padding) ~ label :ah at offset 0x0000000000048b50 is here. 58 8b 04 08 00 00 00 00 48 b8 50 8b 04 08 00 00 00 00 ~ 0x8048b50 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ch is defined here via the label transform; this is its entry header. 40 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 68 00 00 00 ~ (alignment padding) ~ label :ch at offset 0x0000000000048b78 is here. 80 8b 04 08 00 00 00 00 48 b8 78 8b 04 08 00 00 00 00 ~ 0x8048b78 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :dh is defined here via the label transform; this is its entry header. 68 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 68 00 00 00 ~ (alignment padding) ~ label :dh at offset 0x0000000000048ba0 is here. a8 8b 04 08 00 00 00 00 48 b8 a0 8b 04 08 00 00 00 00 ~ 0x8048ba0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bh is defined here via the label transform; this is its entry header. 90 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 68 00 00 00 ~ (alignment padding) ~ label :bh at offset 0x0000000000048bc8 is here. d0 8b 04 08 00 00 00 00 48 b8 c8 8b 04 08 00 00 00 00 ~ 0x8048bc8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-overflow is defined here via the label transform; this is its entry header. b8 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6f 76 65 72 66 6c 6f 77 00 00 ~ (alignment padding) ~ label :cc-overflow at offset 0x0000000000048bf8 is here. 00 8c 04 08 00 00 00 00 48 b8 f8 8b 04 08 00 00 00 00 ~ 0x8048bf8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-no-overflow is defined here via the label transform; this is its entry header. e0 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6e 6f 2d 6f 76 65 72 66 6c 6f 77 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-no-overflow at offset 0x0000000000048c30 is here. 38 8c 04 08 00 00 00 00 48 b8 30 8c 04 08 00 00 00 00 ~ 0x8048c30 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-below is defined here via the label transform; this is its entry header. 10 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 62 65 6c 6f 77 00 00 00 00 00 ~ (alignment padding) ~ label :cc-below at offset 0x0000000000048c60 is here. 68 8c 04 08 00 00 00 00 48 b8 60 8c 04 08 00 00 00 00 ~ 0x8048c60 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-above-equal is defined here via the label transform; this is its entry header. 48 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 61 62 6f 76 65 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-above-equal at offset 0x0000000000048c98 is here. a0 8c 04 08 00 00 00 00 48 b8 98 8c 04 08 00 00 00 00 ~ 0x8048c98 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-equal is defined here via the label transform; this is its entry header. 78 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 65 71 75 61 6c 00 00 00 00 00 ~ (alignment padding) ~ label :cc-equal at offset 0x0000000000048cc8 is here. d0 8c 04 08 00 00 00 00 48 b8 c8 8c 04 08 00 00 00 00 ~ 0x8048cc8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-not-equal is defined here via the label transform; this is its entry header. b0 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6e 6f 74 2d 65 71 75 61 6c 00 ~ (alignment padding) ~ label :cc-not-equal at offset 0x0000000000048cf8 is here. 00 8d 04 08 00 00 00 00 48 b8 f8 8c 04 08 00 00 00 00 ~ 0x8048cf8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-below-equal is defined here via the label transform; this is its entry header. e0 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 62 65 6c 6f 77 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-below-equal at offset 0x0000000000048d30 is here. 38 8d 04 08 00 00 00 00 48 b8 30 8d 04 08 00 00 00 00 ~ 0x8048d30 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-above is defined here via the label transform; this is its entry header. 10 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 61 62 6f 76 65 00 00 00 00 00 ~ (alignment padding) ~ label :cc-above at offset 0x0000000000048d60 is here. 68 8d 04 08 00 00 00 00 48 b8 60 8d 04 08 00 00 00 00 ~ 0x8048d60 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-sign is defined here via the label transform; this is its entry header. 48 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 73 69 67 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-sign at offset 0x0000000000048d90 is here. 98 8d 04 08 00 00 00 00 48 b8 90 8d 04 08 00 00 00 00 ~ 0x8048d90 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-not-sign is defined here via the label transform; this is its entry header. 78 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6e 6f 74 2d 73 69 67 6e 00 00 ~ (alignment padding) ~ label :cc-not-sign at offset 0x0000000000048dc0 is here. c8 8d 04 08 00 00 00 00 48 b8 c0 8d 04 08 00 00 00 00 ~ 0x8048dc0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-even is defined here via the label transform; this is its entry header. a8 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 65 76 65 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-even at offset 0x0000000000048df0 is here. f8 8d 04 08 00 00 00 00 48 b8 f0 8d 04 08 00 00 00 00 ~ 0x8048df0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-odd is defined here via the label transform; this is its entry header. d8 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6f 64 64 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-odd at offset 0x0000000000048e20 is here. 28 8e 04 08 00 00 00 00 48 b8 20 8e 04 08 00 00 00 00 ~ 0x8048e20 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-less is defined here via the label transform; this is its entry header. 08 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6c 65 73 73 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-less at offset 0x0000000000048e50 is here. 58 8e 04 08 00 00 00 00 48 b8 50 8e 04 08 00 00 00 00 ~ 0x8048e50 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-greater-equal is defined here via the label transform; this is its entry header. 38 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 67 72 65 61 74 65 72 2d 65 71 75 61 6c 00 00 00 00 00 ~ (alignment padding) ~ label :cc-greater-equal at offset 0x0000000000048e88 is here. 90 8e 04 08 00 00 00 00 48 b8 88 8e 04 08 00 00 00 00 ~ 0x8048e88 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-less-equal is defined here via the label transform; this is its entry header. 68 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6c 65 73 73 2d 65 71 75 61 6c 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-less-equal at offset 0x0000000000048ec0 is here. c8 8e 04 08 00 00 00 00 48 b8 c0 8e 04 08 00 00 00 00 ~ 0x8048ec0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-greater is defined here via the label transform; this is its entry header. a0 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 67 72 65 61 74 65 72 00 00 00 ~ (alignment padding) ~ label :cc-greater at offset 0x0000000000048ef0 is here. f8 8e 04 08 00 00 00 00 48 b8 f0 8e 04 08 00 00 00 00 ~ 0x8048ef0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ reg64 is defined here via the label transform; this is its entry header. d8 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 36 34 00 ~ (alignment padding) ~ label reg64 at offset 0x0000000000048f18 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 d8 85 04 08 00 00 00 00 ~ :rcx (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 00 86 04 08 00 00 00 00 ~ :rdx (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 28 86 04 08 00 00 00 00 ~ :rbx (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 a0 86 04 08 00 00 00 00 ~ :rsi (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 c8 86 04 08 00 00 00 00 ~ :rdi (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg64 is not a reg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 20 72 65 67 36 34 2e 00 00 00 00 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 79 04 08 00 00 00 00 ~ sys-exit (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ extrareg64 is defined here via the label transform; this is its entry header. 08 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 74 72 61 72 65 67 36 34 00 00 00 00 ~ (alignment padding) ~ label extrareg64 at offset 0x0000000000049290 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f0 86 04 08 00 00 00 00 ~ :r8 (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 18 87 04 08 00 00 00 00 ~ :r9 (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 40 87 04 08 00 00 00 00 ~ :r10 (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 68 87 04 08 00 00 00 00 ~ :r11 (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 90 87 04 08 00 00 00 00 ~ :r12 (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 b8 87 04 08 00 00 00 00 ~ :r13 (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 e0 87 04 08 00 00 00 00 ~ :r14 (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 08 88 04 08 00 00 00 00 ~ :r15 (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to extrareg64 is not an extrareg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 65 78 74 72 61 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 6e 20 65 78 74 72 61 72 65 67 36 34 2e 00 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 79 04 08 00 00 00 00 ~ sys-exit (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ reg32 is defined here via the label transform; this is its entry header. 78 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 33 32 00 ~ (alignment padding) ~ label reg32 at offset 0x0000000000049608 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 30 88 04 08 00 00 00 00 ~ :eax (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 58 88 04 08 00 00 00 00 ~ :ecx (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 80 88 04 08 00 00 00 00 ~ :edx (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 a8 88 04 08 00 00 00 00 ~ :ebx (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 d0 88 04 08 00 00 00 00 ~ :esp (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 f8 88 04 08 00 00 00 00 ~ :ebp (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 20 89 04 08 00 00 00 00 ~ :esi (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 48 89 04 08 00 00 00 00 ~ :edi (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg32 is not a reg32." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 33 32 20 69 73 20 6e 6f 74 20 61 20 72 65 67 33 32 2e 00 00 00 00 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 79 04 08 00 00 00 00 ~ sys-exit (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ reg16 is defined here via the label transform; this is its entry header. f8 95 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 31 36 00 ~ (alignment padding) ~ label reg16 at offset 0x0000000000049978 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 70 89 04 08 00 00 00 00 ~ :ax (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 98 89 04 08 00 00 00 00 ~ :cx (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 c0 89 04 08 00 00 00 00 ~ :dx (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 e8 89 04 08 00 00 00 00 ~ :bx (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 10 8a 04 08 00 00 00 00 ~ :sp (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 38 8a 04 08 00 00 00 00 ~ :bp (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 60 8a 04 08 00 00 00 00 ~ :si (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 88 8a 04 08 00 00 00 00 ~ :di (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg16 is not a reg16." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 31 36 20 69 73 20 6e 6f 74 20 61 20 72 65 67 31 36 2e 00 00 00 00 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 79 04 08 00 00 00 00 ~ sys-exit (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ reg8 is defined here via the label transform; this is its entry header. 68 99 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 38 00 00 ~ (alignment padding) ~ label reg8 at offset 0x0000000000049ce8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) b0 8a 04 08 00 00 00 00 ~ :al (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 d8 8a 04 08 00 00 00 00 ~ :cl (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 00 8b 04 08 00 00 00 00 ~ :dl (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 28 8b 04 08 00 00 00 00 ~ :bl (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 50 8b 04 08 00 00 00 00 ~ :ah (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 78 8b 04 08 00 00 00 00 ~ :ch (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 a0 8b 04 08 00 00 00 00 ~ :dh (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 c8 8b 04 08 00 00 00 00 ~ :bh (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg8 is not a reg8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 38 20 69 73 20 6e 6f 74 20 61 20 72 65 67 38 2e 00 00 00 00 00 00 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 79 04 08 00 00 00 00 ~ sys-exit (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scalefield is defined here via the label transform; this is its entry header. d8 9c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 ~ (alignment padding) ~ label scalefield at offset 0x000000000004a060 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to scalefield is not 1, 2, 4, or 8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 73 63 61 6c 65 66 69 65 6c 64 20 69 73 20 6e 6f 74 20 31 2c 20 32 2c 20 34 2c 20 6f 72 20 38 2e 00 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 79 04 08 00 00 00 00 ~ sys-exit (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ condition-code is defined here via the label transform; this is its entry header. 48 a0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label condition-code at offset 0x000000000004a288 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 8b 04 08 00 00 00 00 ~ :cc-overflow (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 30 8c 04 08 00 00 00 00 ~ :cc-no-overflow (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 60 8c 04 08 00 00 00 00 ~ :cc-below (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 98 8c 04 08 00 00 00 00 ~ :cc-above-equal (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 c8 8c 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 f8 8c 04 08 00 00 00 00 ~ :cc-not-equal (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 30 8d 04 08 00 00 00 00 ~ :cc-below-equal (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 60 8d 04 08 00 00 00 00 ~ :cc-above (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 90 8d 04 08 00 00 00 00 ~ :cc-sign (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 c0 8d 04 08 00 00 00 00 ~ :cc-not-sign (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 f0 8d 04 08 00 00 00 00 ~ :cc-even (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 20 8e 04 08 00 00 00 00 ~ :cc-odd (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 50 8e 04 08 00 00 00 00 ~ :cc-less (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0c 00 00 00 00 00 00 00 ~ 0xc (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 88 8e 04 08 00 00 00 00 ~ :cc-greater-equal (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 c0 8e 04 08 00 00 00 00 ~ :cc-less-equal (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0e 00 00 00 00 00 00 00 ~ 0xe (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 20 61 04 08 00 00 00 00 f0 8e 04 08 00 00 00 00 ~ :cc-greater (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to condition-code is not a condition code." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 20 69 73 20 6e 6f 74 20 61 20 63 6f 6e 64 69 74 69 6f 6e 20 63 6f 64 65 2e 00 00 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 79 04 08 00 00 00 00 ~ sys-exit (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-0 is defined here via the label transform; this is its entry header. 68 a2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 30 00 ~ (alignment padding) ~ label rex-0 at offset 0x000000000004a908 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-w is defined here via the label transform; this is its entry header. f8 a8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 00 ~ (alignment padding) ~ label rex-w at offset 0x000000000004a940 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 48 00 00 00 00 00 00 00 ~ 0x48 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-r is defined here via the label transform; this is its entry header. 30 a9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 00 ~ (alignment padding) ~ label rex-r at offset 0x000000000004a978 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 44 00 00 00 00 00 00 00 ~ 0x44 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-x is defined here via the label transform; this is its entry header. 68 a9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 78 00 ~ (alignment padding) ~ label rex-x at offset 0x000000000004a9b0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 42 00 00 00 00 00 00 00 ~ 0x42 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-b is defined here via the label transform; this is its entry header. a0 a9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 62 00 ~ (alignment padding) ~ label rex-b at offset 0x000000000004a9e8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wr is defined here via the label transform; this is its entry header. d8 a9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wr at offset 0x000000000004aa28 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4c 00 00 00 00 00 00 00 ~ 0x4c (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wx is defined here via the label transform; this is its entry header. 10 aa 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 78 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wx at offset 0x000000000004aa68 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4a 00 00 00 00 00 00 00 ~ 0x4a (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wb is defined here via the label transform; this is its entry header. 50 aa 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 62 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wb at offset 0x000000000004aaa8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 49 00 00 00 00 00 00 00 ~ 0x49 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-rx is defined here via the label transform; this is its entry header. 90 aa 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 78 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-rx at offset 0x000000000004aae8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 46 00 00 00 00 00 00 00 ~ 0x46 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-rb is defined here via the label transform; this is its entry header. d0 aa 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 62 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-rb at offset 0x000000000004ab28 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 45 00 00 00 00 00 00 00 ~ 0x45 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-xb is defined here via the label transform; this is its entry header. 10 ab 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 78 62 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-xb at offset 0x000000000004ab68 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 43 00 00 00 00 00 00 00 ~ 0x43 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wrx is defined here via the label transform; this is its entry header. 50 ab 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 78 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wrx at offset 0x000000000004aba8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4e 00 00 00 00 00 00 00 ~ 0x4e (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wrb is defined here via the label transform; this is its entry header. 90 ab 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 62 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wrb at offset 0x000000000004abe8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4d 00 00 00 00 00 00 00 ~ 0x4d (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wxb is defined here via the label transform; this is its entry header. d0 ab 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 78 62 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wxb at offset 0x000000000004ac28 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4b 00 00 00 00 00 00 00 ~ 0x4b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-rxb is defined here via the label transform; this is its entry header. 10 ac 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 78 62 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-rxb at offset 0x000000000004ac68 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 47 00 00 00 00 00 00 00 ~ 0x47 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wrxb is defined here via the label transform; this is its entry header. 50 ac 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 78 62 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wrxb at offset 0x000000000004aca8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 4f 00 00 00 00 00 00 00 ~ 0x4f (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ opcodereg is defined here via the label transform; this is its entry header. 90 ac 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 ~ (alignment padding) ~ label opcodereg at offset 0x000000000004ace8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 80 64 04 08 00 00 00 00 ~ | (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ opcodecc is defined here via the label transform; this is its entry header. d0 ac 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 ~ (alignment padding) ~ label opcodecc at offset 0x000000000004ad20 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 80 64 04 08 00 00 00 00 ~ | (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ modrm is defined here via the label transform; this is its entry header. 08 ad 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 64 72 6d 00 ~ (alignment padding) ~ label modrm at offset 0x000000000004ad50 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 80 64 04 08 00 00 00 00 ~ | (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 80 64 04 08 00 00 00 00 ~ | (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sib is defined here via the label transform; this is its entry header. 40 ad 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 69 62 00 00 00 ~ (alignment padding) ~ label sib at offset 0x000000000004adc8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 80 64 04 08 00 00 00 00 ~ | (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 80 64 04 08 00 00 00 00 ~ | (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-reg64 is defined here via the label transform; this is its entry header. b8 ad 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-reg64 at offset 0x000000000004ae50 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 50 ad 04 08 00 00 00 00 ~ modrm (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-reg8 is defined here via the label transform; this is its entry header. 30 ae 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-reg8 at offset 0x000000000004aea8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 9c 04 08 00 00 00 00 ~ reg8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 50 ad 04 08 00 00 00 00 ~ modrm (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-indirect-reg64 is defined here via the label transform; this is its entry header. 88 ae 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label addressing-indirect-reg64 at offset 0x000000000004af08 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) d0 00 00 00 00 00 00 00 ~ 0xd0 (branch offset) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 50 ad 04 08 00 00 00 00 ~ modrm (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 00 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) c8 ad 04 08 00 00 00 00 ~ sib (codeword pointer) c0 5f 04 08 00 00 00 00 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "R/M parameter to addressing-indirect-reg64 is :rbp." (string literal with null) 52 2f 4d 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 79 04 08 00 00 00 00 ~ sys-exit (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-disp8-reg64 is defined here via the label transform; this is its entry header. e0 ae 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-disp8-reg64 at offset 0x000000000004b0a8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 50 ad 04 08 00 00 00 00 ~ modrm (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 00 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) c8 ad 04 08 00 00 00 00 ~ sib (codeword pointer) e8 5f 04 08 00 00 00 00 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-disp32-reg64 is defined here via the label transform; this is its entry header. 80 b0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-disp32-reg64 at offset 0x000000000004b1d8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 58 62 04 08 00 00 00 00 ~ = (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 50 ad 04 08 00 00 00 00 ~ modrm (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 00 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 50 86 04 08 00 00 00 00 ~ :rsp (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) c8 ad 04 08 00 00 00 00 ~ sib (codeword pointer) e8 5f 04 08 00 00 00 00 90 6c 04 08 00 00 00 00 ~ pack32 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-indexed-reg64 is defined here via the label transform; this is its entry header. b0 b1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-indexed-reg64 at offset 0x000000000004b308 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (branch offset) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 50 ad 04 08 00 00 00 00 ~ modrm (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 a0 04 08 00 00 00 00 ~ scalefield (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) c8 ad 04 08 00 00 00 00 ~ sib (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Base parameter to addressing-indexed-reg64 is :rbp." (string literal with null) 42 61 73 65 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 79 04 08 00 00 00 00 ~ sys-exit (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-disp8-indexed-reg64 is defined here via the label transform; this is its entry header. e0 b2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-disp8-indexed-reg64 at offset 0x000000000004b498 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 50 ad 04 08 00 00 00 00 ~ modrm (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 a0 04 08 00 00 00 00 ~ scalefield (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) c8 ad 04 08 00 00 00 00 ~ sib (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cld is defined here via the label transform; this is its entry header. 68 b4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6c 64 00 00 00 ~ (alignment padding) ~ label cld at offset 0x000000000004b588 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) fc 00 00 00 00 00 00 00 ~ 0xfc (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ std is defined here via the label transform; this is its entry header. 78 b5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 64 00 00 00 ~ (alignment padding) ~ label std at offset 0x000000000004b5c0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) fd 00 00 00 00 00 00 00 ~ 0xfd (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ syscall is defined here via the label transform; this is its entry header. b0 b5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label syscall at offset 0x000000000004b600 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ hlt is defined here via the label transform; this is its entry header. e8 b5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 68 6c 74 00 00 00 ~ (alignment padding) ~ label hlt at offset 0x000000000004b650 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f4 00 00 00 00 00 00 00 ~ 0xf4 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ push-reg64 is defined here via the label transform; this is its entry header. 40 b6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 ~ (alignment padding) ~ label push-reg64 at offset 0x000000000004b690 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) e8 ac 04 08 00 00 00 00 ~ opcodereg (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ push-extrareg64 is defined here via the label transform; this is its entry header. 78 b6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 75 73 68 2d 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label push-extrareg64 at offset 0x000000000004b6e0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 a9 04 08 00 00 00 00 ~ rex-b (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 90 92 04 08 00 00 00 00 ~ extrareg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) e8 ac 04 08 00 00 00 00 ~ opcodereg (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pop-reg64 is defined here via the label transform; this is its entry header. c0 b6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 6f 70 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label pop-reg64 at offset 0x000000000004b740 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) e8 ac 04 08 00 00 00 00 ~ opcodereg (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pop-extrareg64 is defined here via the label transform; this is its entry header. 28 b7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 6f 70 2d 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pop-extrareg64 at offset 0x000000000004b790 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 a9 04 08 00 00 00 00 ~ rex-b (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 90 92 04 08 00 00 00 00 ~ extrareg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) e8 ac 04 08 00 00 00 00 ~ opcodereg (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ push-imm32-extended64 is defined here via the label transform; this is its entry header. 70 b7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 75 73 68 2d 69 6d 6d 33 32 2d 65 78 74 65 6e 64 65 64 36 34 00 ~ (alignment padding) ~ label push-imm32-extended64 at offset 0x000000000004b7f8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 68 00 00 00 00 00 00 00 ~ 0x68 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 90 6c 04 08 00 00 00 00 ~ pack32 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-disp8-reg64 is defined here via the label transform; this is its entry header. d8 b7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label lea-reg64-disp8-reg64 at offset 0x000000000004b858 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 b0 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-disp32-reg64 is defined here via the label transform; this is its entry header. 38 b8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lea-reg64-disp32-reg64 at offset 0x000000000004b8f8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d8 b1 04 08 00 00 00 00 ~ addressing-disp32-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-indexed-reg64 is defined here via the label transform; this is its entry header. d0 b8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lea-reg64-indexed-reg64 at offset 0x000000000004b998 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b3 04 08 00 00 00 00 ~ addressing-indexed-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-disp8-indexed-reg64 is defined here via the label transform; this is its entry header. 70 b9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label lea-reg64-disp8-indexed-reg64 at offset 0x000000000004ba58 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 98 b4 04 08 00 00 00 00 ~ addressing-disp8-indexed-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-imm32 is defined here via the label transform; this is its entry header. 30 ba 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 33 32 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-imm32 at offset 0x000000000004bb48 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c7 00 00 00 00 00 00 00 ~ 0xc7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 90 6c 04 08 00 00 00 00 ~ pack32 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-imm64 is defined here via the label transform; this is its entry header. 28 bb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-imm64 at offset 0x000000000004bbd8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) e8 ac 04 08 00 00 00 00 ~ opcodereg (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 30 6c 04 08 00 00 00 00 ~ pack64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-extrareg64-imm64 is defined here via the label transform; this is its entry header. b8 bb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 65 78 74 72 61 72 65 67 36 34 2d 69 6d 6d 36 34 00 00 ~ (alignment padding) ~ label mov-extrareg64-imm64 at offset 0x000000000004bc50 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) a8 aa 04 08 00 00 00 00 ~ rex-wb (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 90 92 04 08 00 00 00 00 ~ extrareg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) e8 ac 04 08 00 00 00 00 ~ opcodereg (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 30 6c 04 08 00 00 00 00 ~ pack64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-reg64 is defined here via the label transform; this is its entry header. 30 bc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-reg64 at offset 0x000000000004bcc8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg64 is defined here via the label transform; this is its entry header. a8 bc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg64 at offset 0x000000000004bd50 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg64 is defined here via the label transform; this is its entry header. 28 bd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg64 at offset 0x000000000004bdd0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 b0 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-indirect-reg64 is defined here via the label transform; this is its entry header. b0 bd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-indirect-reg64 at offset 0x000000000004be78 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-disp8-reg64 is defined here via the label transform; this is its entry header. 50 be 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-reg64-disp8-reg64 at offset 0x000000000004bef0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 b0 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-disp32-reg64 is defined here via the label transform; this is its entry header. d0 be 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-disp32-reg64 at offset 0x000000000004bf90 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) d8 b1 04 08 00 00 00 00 ~ addressing-disp32-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-indexed-reg64 is defined here via the label transform; this is its entry header. 68 bf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-indexed-reg64 at offset 0x000000000004c040 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b3 04 08 00 00 00 00 ~ addressing-indexed-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indexed-reg64-reg64 is defined here via the label transform; this is its entry header. 18 c0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indexed-reg64-reg64 at offset 0x000000000004c100 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b3 04 08 00 00 00 00 ~ addressing-indexed-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg32 is defined here via the label transform; this is its entry header. d8 c0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 33 32 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg32 at offset 0x000000000004c1d8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 96 04 08 00 00 00 00 ~ reg32 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg32 is defined here via the label transform; this is its entry header. b0 c1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 33 32 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg32 at offset 0x000000000004c250 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 08 96 04 08 00 00 00 00 ~ reg32 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 b0 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg32-indirect-reg64 is defined here via the label transform; this is its entry header. 30 c2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 33 32 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg32-indirect-reg64 at offset 0x000000000004c2f0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 08 96 04 08 00 00 00 00 ~ reg32 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg32-disp8-reg64 is defined here via the label transform; this is its entry header. c8 c2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 33 32 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-reg32-disp8-reg64 at offset 0x000000000004c360 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 08 96 04 08 00 00 00 00 ~ reg32 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 b0 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg16 is defined here via the label transform; this is its entry header. 40 c3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 31 36 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg16 at offset 0x000000000004c3f8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 78 99 04 08 00 00 00 00 ~ reg16 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg16 is defined here via the label transform; this is its entry header. d0 c3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 31 36 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg16 at offset 0x000000000004c488 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 78 99 04 08 00 00 00 00 ~ reg16 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 b0 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg16-indirect-reg64 is defined here via the label transform; this is its entry header. 68 c4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 31 36 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg16-indirect-reg64 at offset 0x000000000004c540 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 78 99 04 08 00 00 00 00 ~ reg16 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg16-disp8-reg64 is defined here via the label transform; this is its entry header. 18 c5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 31 36 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-reg16-disp8-reg64 at offset 0x000000000004c5c8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 78 99 04 08 00 00 00 00 ~ reg16 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 b0 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg8 is defined here via the label transform; this is its entry header. a8 c5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg8 at offset 0x000000000004c678 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 9c 04 08 00 00 00 00 ~ reg8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg8 is defined here via the label transform; this is its entry header. 50 c6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 38 00 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg8 at offset 0x000000000004c6f0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e8 9c 04 08 00 00 00 00 ~ reg8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 b0 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg8-indirect-reg64 is defined here via the label transform; this is its entry header. d0 c6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 38 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg8-indirect-reg64 at offset 0x000000000004c790 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 9c 04 08 00 00 00 00 ~ reg8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg8-disp8-reg64 is defined here via the label transform; this is its entry header. 68 c7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 38 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) ~ label mov-reg8-disp8-reg64 at offset 0x000000000004c800 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e8 9c 04 08 00 00 00 00 ~ reg8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a8 b0 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg8-reg8 is defined here via the label transform; this is its entry header. e0 c7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 38 2d 72 65 67 38 00 ~ (alignment padding) ~ label mov-reg8-reg8 at offset 0x000000000004c888 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 9c 04 08 00 00 00 00 ~ reg8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) a8 ae 04 08 00 00 00 00 ~ addressing-reg8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs8 is defined here via the label transform; this is its entry header. 70 c8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 38 00 ~ (alignment padding) ~ label movs8 at offset 0x000000000004c8f0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs16 is defined here via the label transform; this is its entry header. e0 c8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label movs16 at offset 0x000000000004c930 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs32 is defined here via the label transform; this is its entry header. 18 c9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label movs32 at offset 0x000000000004c988 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs64 is defined here via the label transform; this is its entry header. 70 c9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label movs64 at offset 0x000000000004c9c8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs8 is defined here via the label transform; this is its entry header. b0 c9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 38 00 00 00 00 00 ~ (alignment padding) ~ label rep-movs8 at offset 0x000000000004ca10 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs16 is defined here via the label transform; this is its entry header. f8 c9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 31 36 00 00 00 00 ~ (alignment padding) ~ label rep-movs16 at offset 0x000000000004ca68 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs32 is defined here via the label transform; this is its entry header. 50 ca 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 33 32 00 00 00 00 ~ (alignment padding) ~ label rep-movs32 at offset 0x000000000004cad8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs64 is defined here via the label transform; this is its entry header. c0 ca 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 36 34 00 00 00 00 ~ (alignment padding) ~ label rep-movs64 at offset 0x000000000004cb30 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods8 is defined here via the label transform; this is its entry header. 18 cb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 38 00 ~ (alignment padding) ~ label lods8 at offset 0x000000000004cb88 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods16 is defined here via the label transform; this is its entry header. 78 cb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lods16 at offset 0x000000000004cbc8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods32 is defined here via the label transform; this is its entry header. b0 cb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lods32 at offset 0x000000000004cc20 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods64 is defined here via the label transform; this is its entry header. 08 cc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lods64 at offset 0x000000000004cc60 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods8 is defined here via the label transform; this is its entry header. 48 cc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 38 00 00 00 00 00 ~ (alignment padding) ~ label rep-lods8 at offset 0x000000000004cca8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods16 is defined here via the label transform; this is its entry header. 90 cc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 31 36 00 00 00 00 ~ (alignment padding) ~ label rep-lods16 at offset 0x000000000004cd00 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods32 is defined here via the label transform; this is its entry header. e8 cc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 33 32 00 00 00 00 ~ (alignment padding) ~ label rep-lods32 at offset 0x000000000004cd70 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods64 is defined here via the label transform; this is its entry header. 58 cd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 36 34 00 00 00 00 ~ (alignment padding) ~ label rep-lods64 at offset 0x000000000004cdc8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos8 is defined here via the label transform; this is its entry header. b0 cd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 38 00 ~ (alignment padding) ~ label stos8 at offset 0x000000000004ce20 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos16 is defined here via the label transform; this is its entry header. 10 ce 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label stos16 at offset 0x000000000004ce60 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos32 is defined here via the label transform; this is its entry header. 48 ce 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label stos32 at offset 0x000000000004ceb8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos64 is defined here via the label transform; this is its entry header. a0 ce 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label stos64 at offset 0x000000000004cef8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos8 is defined here via the label transform; this is its entry header. e0 ce 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 38 00 00 00 00 00 ~ (alignment padding) ~ label rep-stos8 at offset 0x000000000004cf40 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos16 is defined here via the label transform; this is its entry header. 28 cf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 31 36 00 00 00 00 ~ (alignment padding) ~ label rep-stos16 at offset 0x000000000004cf98 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos32 is defined here via the label transform; this is its entry header. 80 cf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 33 32 00 00 00 00 ~ (alignment padding) ~ label rep-stos32 at offset 0x000000000004d008 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos64 is defined here via the label transform; this is its entry header. f0 cf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 36 34 00 00 00 00 ~ (alignment padding) ~ label rep-stos64 at offset 0x000000000004d060 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps8 is defined here via the label transform; this is its entry header. 48 d0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 38 00 ~ (alignment padding) ~ label cmps8 at offset 0x000000000004d0b8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps16 is defined here via the label transform; this is its entry header. a8 d0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmps16 at offset 0x000000000004d0f8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps32 is defined here via the label transform; this is its entry header. e0 d0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmps32 at offset 0x000000000004d150 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps64 is defined here via the label transform; this is its entry header. 38 d1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmps64 at offset 0x000000000004d190 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps8 is defined here via the label transform; this is its entry header. 78 d1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 38 00 00 00 00 ~ (alignment padding) ~ label repz-cmps8 at offset 0x000000000004d1d8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps16 is defined here via the label transform; this is its entry header. c0 d1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 31 36 00 00 00 ~ (alignment padding) ~ label repz-cmps16 at offset 0x000000000004d230 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps32 is defined here via the label transform; this is its entry header. 18 d2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 33 32 00 00 00 ~ (alignment padding) ~ label repz-cmps32 at offset 0x000000000004d2a0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps64 is defined here via the label transform; this is its entry header. 88 d2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 36 34 00 00 00 ~ (alignment padding) ~ label repz-cmps64 at offset 0x000000000004d2f8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps8 is defined here via the label transform; this is its entry header. e0 d2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 38 00 00 00 ~ (alignment padding) ~ label repnz-cmps8 at offset 0x000000000004d358 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps16 is defined here via the label transform; this is its entry header. 40 d3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 31 36 00 00 ~ (alignment padding) ~ label repnz-cmps16 at offset 0x000000000004d3b0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps32 is defined here via the label transform; this is its entry header. 98 d3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 33 32 00 00 ~ (alignment padding) ~ label repnz-cmps32 at offset 0x000000000004d420 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps64 is defined here via the label transform; this is its entry header. 08 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 36 34 00 00 ~ (alignment padding) ~ label repnz-cmps64 at offset 0x000000000004d478 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas8 is defined here via the label transform; this is its entry header. 60 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 38 00 ~ (alignment padding) ~ label scas8 at offset 0x000000000004d4d0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) a8 00 00 00 00 00 00 00 ~ 0xa8 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas16 is defined here via the label transform; this is its entry header. c0 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label scas16 at offset 0x000000000004d510 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas32 is defined here via the label transform; this is its entry header. f8 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label scas32 at offset 0x000000000004d568 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas64 is defined here via the label transform; this is its entry header. 50 d5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label scas64 at offset 0x000000000004d5a8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas8 is defined here via the label transform; this is its entry header. 90 d5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 38 00 00 00 00 ~ (alignment padding) ~ label repz-scas8 at offset 0x000000000004d5f0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas16 is defined here via the label transform; this is its entry header. d8 d5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 31 36 00 00 00 ~ (alignment padding) ~ label repz-scas16 at offset 0x000000000004d648 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas32 is defined here via the label transform; this is its entry header. 30 d6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 33 32 00 00 00 ~ (alignment padding) ~ label repz-scas32 at offset 0x000000000004d6b8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas64 is defined here via the label transform; this is its entry header. a0 d6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 36 34 00 00 00 ~ (alignment padding) ~ label repz-scas64 at offset 0x000000000004d710 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas8 is defined here via the label transform; this is its entry header. f8 d6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 38 00 00 00 ~ (alignment padding) ~ label repnz-scas8 at offset 0x000000000004d770 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas16 is defined here via the label transform; this is its entry header. 58 d7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 31 36 00 00 ~ (alignment padding) ~ label repnz-scas16 at offset 0x000000000004d7c8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas32 is defined here via the label transform; this is its entry header. b0 d7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 33 32 00 00 ~ (alignment padding) ~ label repnz-scas32 at offset 0x000000000004d838 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas64 is defined here via the label transform; this is its entry header. 20 d8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 36 34 00 00 ~ (alignment padding) ~ label repnz-scas64 at offset 0x000000000004d890 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-reg64-reg64 is defined here via the label transform; this is its entry header. 78 d8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label add-reg64-reg64 at offset 0x000000000004d8f8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-indirect-reg64-reg64 is defined here via the label transform; this is its entry header. d8 d8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label add-indirect-reg64-reg64 at offset 0x000000000004d980 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-reg64-indirect-reg64 is defined here via the label transform; this is its entry header. 58 d9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label add-reg64-indirect-reg64 at offset 0x000000000004da08 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-reg64-imm8 is defined here via the label transform; this is its entry header. e0 d9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label add-reg64-imm8 at offset 0x000000000004da80 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sub-reg64-reg64 is defined here via the label transform; this is its entry header. 60 da 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 75 62 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label sub-reg64-reg64 at offset 0x000000000004db10 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sub-indirect-reg64-reg64 is defined here via the label transform; this is its entry header. f0 da 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 75 62 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label sub-indirect-reg64-reg64 at offset 0x000000000004db90 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sub-reg64-imm8 is defined here via the label transform; this is its entry header. 68 db 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 75 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label sub-reg64-imm8 at offset 0x000000000004dc10 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sbb-reg64-imm8 is defined here via the label transform; this is its entry header. f0 db 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 62 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label sbb-reg64-imm8 at offset 0x000000000004dca0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mul-reg64 is defined here via the label transform; this is its entry header. 80 dc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 75 6c 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label mul-reg64 at offset 0x000000000004dd28 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ divmod-reg64 is defined here via the label transform; this is its entry header. 10 dd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 00 ~ (alignment padding) ~ label divmod-reg64 at offset 0x000000000004dda0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ idivmod-reg64 is defined here via the label transform; this is its entry header. 88 dd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 69 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label idivmod-reg64 at offset 0x000000000004de18 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ inc-reg64 is defined here via the label transform; this is its entry header. 00 de 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 69 6e 63 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label inc-reg64 at offset 0x000000000004de90 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ dec-reg64 is defined here via the label transform; this is its entry header. 78 de 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 65 63 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label dec-reg64 at offset 0x000000000004df08 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ and-reg64-reg64 is defined here via the label transform; this is its entry header. f0 de 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6e 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label and-reg64-reg64 at offset 0x000000000004df88 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 23 00 00 00 00 00 00 00 ~ 0x23 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ and-reg64-imm8 is defined here via the label transform; this is its entry header. 68 df 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6e 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label and-reg64-imm8 at offset 0x000000000004e000 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ or-reg64-reg64 is defined here via the label transform; this is its entry header. e0 df 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label or-reg64-reg64 at offset 0x000000000004e090 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ or-reg64-imm8 is defined here via the label transform; this is its entry header. 70 e0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 ~ (alignment padding) ~ label or-reg64-imm8 at offset 0x000000000004e100 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ xor-reg64-reg64 is defined here via the label transform; this is its entry header. e8 e0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 78 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label xor-reg64-reg64 at offset 0x000000000004e190 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 33 00 00 00 00 00 00 00 ~ 0x33 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ not-reg64 is defined here via the label transform; this is its entry header. 70 e1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 6f 74 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label not-reg64 at offset 0x000000000004e200 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rol-reg64-imm8 is defined here via the label transform; this is its entry header. e8 e1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 6c 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rol-reg64-imm8 at offset 0x000000000004e280 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rol-reg8-imm8 is defined here via the label transform; this is its entry header. 60 e2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 6c 2d 72 65 67 38 2d 69 6d 6d 38 00 ~ (alignment padding) ~ label rol-reg8-imm8 at offset 0x000000000004e308 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) a8 ae 04 08 00 00 00 00 ~ addressing-reg8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ror-reg64-imm8 is defined here via the label transform; this is its entry header. f0 e2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label ror-reg64-imm8 at offset 0x000000000004e390 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ror-reg8-imm8 is defined here via the label transform; this is its entry header. 70 e3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 72 2d 72 65 67 38 2d 69 6d 6d 38 00 ~ (alignment padding) ~ label ror-reg8-imm8 at offset 0x000000000004e418 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmp-reg64-reg64 is defined here via the label transform; this is its entry header. 00 e4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmp-reg64-reg64 at offset 0x000000000004e4a0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 3b 00 00 00 00 00 00 00 ~ 0x3b (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmp-reg64-imm8 is defined here via the label transform; this is its entry header. 80 e4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmp-reg64-imm8 at offset 0x000000000004e518 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ test-reg64-reg64 is defined here via the label transform; this is its entry header. f8 e4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 74 65 73 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label test-reg64-reg64 at offset 0x000000000004e5a8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a9 04 08 00 00 00 00 ~ rex-w (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 85 00 00 00 00 00 00 00 ~ 0x85 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 18 8f 04 08 00 00 00 00 ~ reg64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 50 ae 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ set-reg8-cc is defined here via the label transform; this is its entry header. 88 e5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 65 74 2d 72 65 67 38 2d 63 63 00 00 00 ~ (alignment padding) ~ label set-reg8-cc at offset 0x000000000004e620 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 88 a2 04 08 00 00 00 00 ~ condition-code (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 90 00 00 00 00 00 00 00 ~ 0x90 (integer literal) 20 ad 04 08 00 00 00 00 ~ opcodecc (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e8 9c 04 08 00 00 00 00 ~ reg8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 50 ad 04 08 00 00 00 00 ~ modrm (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-cc-rel-imm8 is defined here via the label transform; this is its entry header. 08 e6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label jmp-cc-rel-imm8 at offset 0x000000000004e6d8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 a2 04 08 00 00 00 00 ~ condition-code (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) 20 ad 04 08 00 00 00 00 ~ opcodecc (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-cc-rel-imm32 is defined here via the label transform; this is its entry header. b8 e6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 00 00 00 ~ (alignment padding) ~ label jmp-cc-rel-imm32 at offset 0x000000000004e748 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 88 a2 04 08 00 00 00 00 ~ condition-code (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) 20 ad 04 08 00 00 00 00 ~ opcodecc (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 90 6c 04 08 00 00 00 00 ~ pack32 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-abs-indirect-reg64 is defined here via the label transform; this is its entry header. 28 e7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label jmp-abs-indirect-reg64 at offset 0x000000000004e7d8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 af 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-rel-imm8 is defined here via the label transform; this is its entry header. b0 e7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 38 00 00 ~ (alignment padding) ~ label jmp-rel-imm8 at offset 0x000000000004e848 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) eb 00 00 00 00 00 00 00 ~ 0xeb (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-rel-imm32 is defined here via the label transform; this is its entry header. 30 e8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 33 32 00 ~ (alignment padding) ~ label jmp-rel-imm32 at offset 0x000000000004e8a0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) e9 00 00 00 00 00 00 00 ~ 0xe9 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 90 6c 04 08 00 00 00 00 ~ pack32 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ call-rel-imm32 is defined here via the label transform; this is its entry header. 88 e8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 61 6c 6c 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label call-rel-imm32 at offset 0x000000000004e900 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) e8 00 00 00 00 00 00 00 ~ 0xe8 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 90 6c 04 08 00 00 00 00 ~ pack32 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ret is defined here via the label transform; this is its entry header. e0 e8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 74 00 00 00 ~ (alignment padding) ~ label ret at offset 0x000000000004e950 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) c3 00 00 00 00 00 00 00 ~ 0xc3 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-next is defined here via the label transform; this is its entry header. 40 e9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 ~ (alignment padding) ~ label pack-next at offset 0x000000000004e990 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 60 cc 04 08 00 00 00 00 ~ lods64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 e7 04 08 00 00 00 00 ~ jmp-abs-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-beforenext is defined here via the label transform; this is its entry header. 78 e9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 62 65 66 6f 72 65 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-beforenext at offset 0x000000000004e9d8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 bb 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 e7 04 08 00 00 00 00 ~ jmp-abs-indirect-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-pushcontrol is defined here via the label transform; this is its entry header. b8 e9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 70 75 73 68 63 6f 6e 74 72 6f 6c 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-pushcontrol at offset 0x000000000004ea28 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) f8 ff ff ff ff ff ff ff ~ 0xfffffffffffffff8 (integer literal) 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 58 b8 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) d0 bd 04 08 00 00 00 00 ~ mov-disp8-reg64-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-popcontrol is defined here via the label transform; this is its entry header. 08 ea 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 70 6f 70 63 6f 6e 74 72 6f 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-popcontrol at offset 0x000000000004eab0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) f0 be 04 08 00 00 00 00 ~ mov-reg64-disp8-reg64 ~ (codeword pointer) 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 78 86 04 08 00 00 00 00 ~ :rbp (codeword pointer) 58 b8 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-offset is defined here via the label transform; this is its entry header. 90 ea 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 ~ (alignment padding) ~ label log-offset at offset 0x000000000004eb28 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 01 00 00 00 00 00 ~ 0x10000 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-log is defined here via the label transform; this is its entry header. 10 eb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6c 6f 67 00 00 ~ (alignment padding) ~ label log-load-log at offset 0x000000000004eb60 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 28 eb 04 08 00 00 00 00 ~ log-offset (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-s0 is defined here via the label transform; this is its entry header. 48 eb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 73 30 00 00 00 ~ (alignment padding) ~ label log-load-s0 at offset 0x000000000004eba0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 28 eb 04 08 00 00 00 00 ~ log-offset (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-r0 is defined here via the label transform; this is its entry header. 88 eb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 72 30 00 00 00 ~ (alignment padding) ~ label log-load-r0 at offset 0x000000000004ebf8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 28 eb 04 08 00 00 00 00 ~ log-offset (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-latest is defined here via the label transform; this is its entry header. e0 eb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-latest at offset 0x000000000004ec70 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 28 eb 04 08 00 00 00 00 ~ log-offset (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-here is defined here via the label transform; this is its entry header. 50 ec 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 ~ (alignment padding) ~ label log-load-here at offset 0x000000000004ece0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 28 eb 04 08 00 00 00 00 ~ log-offset (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-find is defined here via the label transform; this is its entry header. c8 ec 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 ~ (alignment padding) ~ label log-load-find at offset 0x000000000004ed50 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 70 ec 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) c0 76 04 08 00 00 00 00 ~ find-in (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-find-execution-token is defined here via the label transform; this is its entry header. 38 ed 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 ~ (alignment padding) ~ label log-load-find-execution-token at offset 0x000000000004edc0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 62 04 08 00 00 00 00 ~ != (codeword pointer) 58 69 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 30 69 04 08 00 00 00 00 ~ branch (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (branch offset) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "No such word: " (string literal with null) 4e 6f 20 73 75 63 68 20 77 6f 72 64 3a 20 00 00 ~ (alignment padding) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 70 7a 04 08 00 00 00 00 ~ emitstring (codeword pointer) 18 7b 04 08 00 00 00 00 ~ newline (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-create is defined here via the label transform; this is its entry header. 98 ed 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-create at offset 0x000000000004eeb0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 08 68 04 08 00 00 00 00 ~ stringlen (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 18 73 04 08 00 00 00 00 ~ pick (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) b8 67 04 08 00 00 00 00 ~ memmove (codeword pointer) e0 72 04 08 00 00 00 00 ~ over (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 73 04 08 00 00 00 00 ~ pick (codeword pointer) 70 ec 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 30 6c 04 08 00 00 00 00 ~ pack64 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 48 6d 04 08 00 00 00 00 ~ pack8 (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 08 6f 04 08 00 00 00 00 ~ packalign (codeword pointer) e0 72 04 08 00 00 00 00 ~ over (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 73 04 08 00 00 00 00 ~ pick (codeword pointer) 70 ec 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) e0 72 04 08 00 00 00 00 ~ over (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-self-codeword is defined here via the label transform; this is its entry header. 90 ee 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-self-codeword at offset 0x000000000004f0c0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 30 6c 04 08 00 00 00 00 ~ pack64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-comma is defined here via the label transform; this is its entry header. 98 f0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-comma at offset 0x000000000004f140 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 30 6c 04 08 00 00 00 00 ~ pack64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-semicolon-assembly is defined here via the label transform; this is its entry header. 20 f1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6d 69 63 6f 6c 6f 6e 2d 61 73 73 65 6d 62 6c 79 00 00 00 ~ (alignment padding) ~ label log-load-semicolon-assembly at offset 0x000000000004f1d8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 90 e9 04 08 00 00 00 00 ~ pack-next (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 08 6f 04 08 00 00 00 00 ~ packalign (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) 70 ec 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-variable is defined here via the label transform; this is its entry header. b0 f1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 76 61 72 69 61 62 6c 65 00 00 00 00 00 ~ (alignment padding) ~ label log-load-variable at offset 0x000000000004f2a8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 30 6c 04 08 00 00 00 00 ~ pack64 (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 bb 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 90 e9 04 08 00 00 00 00 ~ pack-next (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 08 6f 04 08 00 00 00 00 ~ packalign (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-keyword is defined here via the label transform; this is its entry header. 88 f2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6b 65 79 77 6f 72 64 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-keyword at offset 0x000000000004f398 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) b0 ee 04 08 00 00 00 00 ~ log-load-create (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 30 6c 04 08 00 00 00 00 ~ pack64 (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) d8 bb 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) b0 85 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 b6 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 90 e9 04 08 00 00 00 00 ~ pack-next (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 08 6f 04 08 00 00 00 00 ~ packalign (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-comma-string is defined here via the label transform; this is its entry header. 78 f3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 2d 73 74 72 69 6e 67 00 ~ (alignment padding) ~ label log-load-comma-string at offset 0x000000000004f480 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) a8 6d 04 08 00 00 00 00 ~ packstring (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 08 6f 04 08 00 00 00 00 ~ packalign (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-left-curly-brace is defined here via the label transform; this is its entry header. 60 f4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6c 65 66 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 00 ~ (alignment padding) ~ label log-load-left-curly-brace at offset 0x000000000004f520 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-right-curly-brace is defined here via the label transform; this is its entry header. f8 f4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 72 69 67 68 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 ~ (alignment padding) ~ label log-load-right-curly-brace at offset 0x000000000004f570 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 90 61 04 08 00 00 00 00 ~ - (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-if is defined here via the label transform; this is its entry header. 48 f5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 69 66 00 00 00 ~ (alignment padding) ~ label log-load-if at offset 0x000000000004f5e8 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) b8 67 04 08 00 00 00 00 ~ memmove (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-unless is defined here via the label transform; this is its entry header. d0 f5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 75 6e 6c 65 73 73 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-unless at offset 0x000000000004f808 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) b8 67 04 08 00 00 00 00 ~ memmove (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-if-else is defined here via the label transform; this is its entry header. e8 f7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 69 66 2d 65 6c 73 65 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-if-else at offset 0x000000000004fa28 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) b8 67 04 08 00 00 00 00 ~ memmove (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 18 73 04 08 00 00 00 00 ~ pick (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 18 73 04 08 00 00 00 00 ~ pick (codeword pointer) b8 67 04 08 00 00 00 00 ~ memmove (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-forever is defined here via the label transform; this is its entry header. 08 fa 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 66 6f 72 65 76 65 72 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-forever at offset 0x000000000004fe28 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-while is defined here via the label transform; this is its entry header. 08 fe 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 77 68 69 6c 65 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-while at offset 0x000000000004fed0 is here. 70 5f 04 08 00 00 00 00 ~ (docol codeword) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 40 61 04 08 00 00 00 00 ~ 2dup (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) c8 60 04 08 00 00 00 00 ~ 3roll (codeword pointer) b8 67 04 08 00 00 00 00 ~ memmove (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 88 65 04 08 00 00 00 00 ~ @ (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 20 61 04 08 00 00 00 00 ~ dup (codeword pointer) f8 60 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e0 ec 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 48 60 04 08 00 00 00 00 ~ roll (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ ! (codeword pointer) 28 65 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 50 ed 04 08 00 00 00 00 ~ log-load-find (codeword pointer) c0 69 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 88 60 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 68 61 04 08 00 00 00 00 ~ + (codeword pointer) e8 5f 04 08 00 00 00 00 ~ swap (codeword pointer) 08 60 04 08 00 00 00 00 ~ drop (codeword pointer) 00 65 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) b8 61 04 08 00 00 00 00 ~ * (codeword pointer) 40 f1 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) c0 5f 04 08 00 00 00 00 ~ exit (codeword pointer) ~ label total-size at offset 0x00000000000501d8 is here. ~ This is the end of the hex dump. Thanks for reading!