diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-04-06 07:20:25 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-04-06 07:20:25 -0700 |
commit | d3f11c2df9ee62c2fc7175e00061f1c7ddab7efd (patch) | |
tree | 4a4ef382112398016bb6ffd74037b7173a4ebb9d | |
parent | 0fef94e1c00bdc1e16c730ed3a607f9b4e07b102 (diff) | |
download | mu-d3f11c2df9ee62c2fc7175e00061f1c7ddab7efd.tar.gz |
6194
-rwxr-xr-x | apps/survey | bin | 49857 -> 49859 bytes | |||
-rw-r--r-- | apps/survey.subx | 9 |
2 files changed, 6 insertions, 3 deletions
diff --git a/apps/survey b/apps/survey index 9984ca47..cc3a5192 100755 --- a/apps/survey +++ b/apps/survey Binary files differdiff --git a/apps/survey.subx b/apps/survey.subx index f5815093..817645ab 100644 --- a/apps/survey.subx +++ b/apps/survey.subx @@ -871,7 +871,8 @@ $compute-offsets:case-segment-header: # if (curr-segment-name == 0) goto construct-next-segment 81 7/subop/compare 3/mod/direct 6/rm32/esi . . . . . 0/imm32 # compare esi 74/jump-if-= $compute-offsets:construct-next-segment/disp8 - # sinfo/eax = get-or-insert(segments, curr-segment-name, row-size=16) + # sinfo/edi = get-or-insert(segments, curr-segment-name, row-size=16) + # . eax = get-or-insert(segments, curr-segment-name, row-size=16) # . . push args 68/push 0x10/imm32/row-size 56/push-esi @@ -880,17 +881,19 @@ $compute-offsets:case-segment-header: e8/call get-or-insert/disp32 # . . discard args 81 0/subop/add 3/mod/direct 4/rm32/esp . . . . . 0xc/imm32 # add to esp + # . edi = eax + 89/copy 3/mod/direct 7/rm32/edi . . . 0/r32/eax . . # copy eax to edi # sinfo->size = file-offset - sinfo->file-offset # . save ecx 51/push-ecx # . ebx = *file-offset 8b/copy 0/mod/indirect 5/rm32/.disp32 . . 3/r32/ebx compute-offsets:file-offset/disp32 # copy *file-offset to ebx # . ecx = sinfo->file-offset - 8b/copy 1/mod/*+disp8 0/rm32/eax . . . 1/r32/ecx 4/disp8 . # copy *(eax+4) to ecx + 8b/copy 1/mod/*+disp8 7/rm32/edi . . . 1/r32/ecx 4/disp8 . # copy *(edi+4) to ecx # . ebx -= ecx 29/subtract 3/mod/direct 3/rm32/ebx . . . 1/r32/ecx . . # subtract ecx from ebx # . sinfo->size = ebx - 89/copy 1/mod/*+disp8 0/rm32/eax . . . 3/r32/ebx 8/disp8 . # copy ebx to *(eax+8) + 89/copy 1/mod/*+disp8 7/rm32/edi . . . 3/r32/ebx 8/disp8 . # copy ebx to *(edi+8) # . restore ecx 59/pop-to-ecx # trace-sssns("segment '", curr-segment-name, "' has size ", sinfo->size, ".") |