From 7e7a8a6eaeb4c22acb94aaca87a7b15c180ca077 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Fri, 3 Jan 2020 01:36:34 -0800 Subject: 5876 - address -> addr --- html/056trace.subx.html | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'html/056trace.subx.html') diff --git a/html/056trace.subx.html b/html/056trace.subx.html index 7673a059..c11be5ae 100644 --- a/html/056trace.subx.html +++ b/html/056trace.subx.html @@ -142,7 +142,7 @@ if ('onhashchange' in window) { 79 80 # Append a string to the given trace stream. 81 # Silently give up if it's already full. Or truncate the string if there isn't enough room. - 82 trace: # line : (address array byte) + 82 trace: # line : (addr array byte) 83 # . prologue 84 55/push-ebp 85 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp @@ -153,7 +153,7 @@ if ('onhashchange' in window) { 90 53/push-ebx 91 56/push-esi 92 57/push-edi - 93 # var edi : (address stream byte) = *Trace-stream + 93 # var edi : (addr stream byte) = *Trace-stream 94 8b/copy 0/mod/indirect 5/rm32/.disp32 . . 7/r32/edi Trace-stream/disp32 # copy *Trace-stream to edi 95 # esi = line 96 8b/copy 1/mod/*+disp8 5/rm32/ebp . . 6/r32/esi 8/disp8 . # copy *(ebp+8) to esi @@ -309,7 +309,7 @@ if ('onhashchange' in window) { 246 # end 247 c3/return 248 -249 check-trace-contains: # line : (address string), msg : (address string) +249 check-trace-contains: # line : (addr string), msg : (addr string) 250 # . prologue 251 55/push-ebp 252 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp @@ -334,7 +334,7 @@ if ('onhashchange' in window) { 271 5d/pop-to-ebp 272 c3/return 273 -274 check-trace-scans-to: # line : (address string), msg : (address string) +274 check-trace-scans-to: # line : (addr string), msg : (addr string) 275 # . prologue 276 55/push-ebp 277 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp @@ -365,7 +365,7 @@ if ('onhashchange' in window) { 302 c3/return 303 304 # Start scanning from Trace-stream->read for 'line'. If found, update Trace-stream->read and return true. -305 trace-scan: # line : (address array byte) -> result/eax : boolean +305 trace-scan: # line : (addr array byte) -> result/eax : boolean 306 # pseudocode: 307 # push Trace-stream->read 308 # while true: @@ -617,7 +617,7 @@ if ('onhashchange' in window) { 554 # . end 555 c3/return 556 -557 next-line-matches?: # t : (address stream byte), line : (address array byte) -> result/eax : boolean +557 next-line-matches?: # t : (addr stream byte), line : (addr array byte) -> result/eax : boolean 558 # pseudocode: 559 # while true: 560 # if (currl >= maxl) break @@ -638,24 +638,24 @@ if ('onhashchange' in window) { 575 57/push-edi 576 # edx = line 577 8b/copy 1/mod/*+disp8 5/rm32/ebp . . 2/r32/edx 0xc/disp8 . # copy *(ebp+12) to edx -578 # var currl/esi : (address byte) = line->data +578 # var currl/esi : (addr byte) = line->data 579 # . esi = line/edx->data 580 8d/copy-address 1/mod/*+disp8 2/rm32/edx . . . 6/r32/esi 4/disp8 . # copy edx+4 to esi -581 # var maxl/ecx : (address byte) = &line->data[line->size] +581 # var maxl/ecx : (addr byte) = &line->data[line->size] 582 # . eax = line/edx->size 583 8b/copy 0/mod/indirect 2/rm32/edx . . 0/r32/eax . . # copy *edx to eax 584 # . maxl = &line->data[line->size] 585 8d/copy-address 0/mod/indirect 4/rm32/sib 6/base/esi 0/index/eax . 1/r32/ecx . . # copy edx+eax to ecx 586 # edi = t 587 8b/copy 1/mod/*+disp8 5/rm32/ebp . . 7/r32/edi 8/disp8 . # copy *(ebp+8) to edi -588 # var ebx : (address byte) = t->data +588 # var ebx : (addr byte) = t->data 589 8d/copy-address 1/mod/*+disp8 7/rm32/edi . . . 3/r32/ebx 0xc/disp8 . # copy edi+12 to ebx -590 # var maxt/edx : (address byte) = &t->data[t->write] +590 # var maxt/edx : (addr byte) = &t->data[t->write] 591 # . eax = t->write 592 8b/copy 0/mod/indirect 7/rm32/edi . . 0/r32/eax . . # copy *edi to eax 593 # . maxt = &t->data[t->write] 594 8d/copy-address 0/mod/indirect 4/rm32/sib 3/base/ebx 0/index/eax . 2/r32/edx . . # copy ebx+eax to edx -595 # var currt/edi : (address byte) = &t->data[t->read] +595 # var currt/edi : (addr byte) = &t->data[t->read] 596 # . eax = t/edi->read 597 8b/copy 1/mod/*+disp8 7/rm32/edi . . 0/r32/eax 4/disp8 . # copy *(edi+4) to eax 598 # . currt = &t->data[t->read] @@ -793,7 +793,7 @@ if ('onhashchange' in window) { 730 c3/return 731 732 # move t->read to _after_ next newline -733 skip-next-line: # t : (address stream byte) +733 skip-next-line: # t : (addr stream byte) 734 # pseudocode: 735 # max = &t->data[t->write] 736 # i = t->read @@ -819,11 +819,11 @@ if ('onhashchange' in window) { 756 8d/copy-address 1/mod/*+disp8 1/rm32/ecx . . . 2/r32/edx 0xc/disp8 . # copy ecx+12 to edx 757 # eax = t->write 758 8b/copy 0/mod/indirect 1/rm32/ecx . . . 0/r32/eax . . # copy *ecx to eax -759 # var max/ebx : (address byte) = &t->data[t->write] +759 # var max/ebx : (addr byte) = &t->data[t->write] 760 8d/copy-address 0/mod/indirect 4/rm32/sib 2/base/edx 0/index/eax . 3/r32/ebx . . # copy edx+eax to ebx 761 # eax = t->read 762 8b/copy 1/mod/*+disp8 1/rm32/ecx . . . 0/r32/eax 4/disp8 . # copy *(ecx+4) to edx -763 # var curr/ecx : (address byte) = &t->data[t->read] +763 # var curr/ecx : (addr byte) = &t->data[t->read] 764 8d/copy-address 0/mod/indirect 4/rm32/sib 2/base/edx 0/index/eax . 1/r32/ecx . . # copy edx+eax to ecx 765 # var i/edx : int = t->read 766 89/copy 3/mod/direct 2/rm32/edx . . . 0/r32/eax . . # copy eax to edx @@ -921,7 +921,7 @@ if ('onhashchange' in window) { 858 # - helpers 859 860 # 3-argument variant of _append -861 _append-3: # out : (address byte), outend : (address byte), s : (address array byte) -> num_bytes_appended/eax +861 _append-3: # out : (addr byte), outend : (addr byte), s : (addr array byte) -> num_bytes_appended/eax 862 # . prologue 863 55/push-ebp 864 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp @@ -953,7 +953,7 @@ if ('onhashchange' in window) { 890 c3/return 891 892 # 4-argument variant of _append -893 _append-4: # out : (address byte), outend : (address byte), in : (address byte), inend : (address byte) -> num_bytes_appended/eax : int +893 _append-4: # out : (addr byte), outend : (addr byte), in : (addr byte), inend : (addr byte) -> num_bytes_appended/eax : int 894 # . prologue 895 55/push-ebp 896 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp -- cgit 1.4.1-2-gfad0