re: fix the wrong ISL conditions -- the cause was a coroutine boundary, not the filter
The listing showed end_coroutine as the left-hand side of 34 comparisons disc-wide.
That is impossible -- it returns no value a script can test -- so it was the bug
reporting itself.
The recorded fix ("set special[0] only for built-ins that write [phase+164]") is
REFUTED. end_coroutine's handler 0x82272624 is `addi r11,r0,1 ; addi r3,r0,3 ;
stw r11,164(r31)` -- it DOES write [phase+164], so that filter would have kept it.
Reading the handler before writing the filter is what caught this.
The real cause: end_coroutine returns 3, which DESTROYS the thread. Execution does
not continue past it, so the instructions following it in the flat stream belong to
a different routine and every tracked value is stale. The linear walk that makes
the decode possible is exactly what walks across that boundary.
A/B over all 28 stages, 7563 sites, resetting the tracker at end_coroutine:
sites whose operands change 34 (0.45%)
LHS = end_coroutine, before -> after 34 -> 0
left as an explicit unknown 34 (0.45%)
The two counts being equal is the result: the leak was confined to exactly the sites
that displayed the impossible value, so the other 7529 conditions were never
affected. Those 34 now print "<unknown: reached after a coroutine boundary>".
Not done, and said so: their RHS is still exact and the LHS is recoverable by seeding
the tracker at coroutine entries, whose targets are staged slot 0 of start_coroutine.
data/isl-stage02-conditions.txt regenerated; calls and phase-ends both byte-identical.
This commit is contained in:
@@ -18,7 +18,6 @@ the right-hand side is evaluated (its result lands in `special[0]`),
|
||||
builtin105 38
|
||||
builtin80 28
|
||||
request_script_message 26
|
||||
end_coroutine 15
|
||||
read_freg 10
|
||||
unit_hp_pct 9
|
||||
builtin7 9
|
||||
@@ -274,21 +273,21 @@ the right-hand side is evaluated (its result lands in `special[0]`),
|
||||
0x0103D0 if unit_state(ADT113) == 1 -> 0x10438
|
||||
0x010484 if unit_state(ADN114) == 1 -> 0x104EC
|
||||
0x010538 if unit_state(ADN115) == 1 -> 0x105A0
|
||||
0x0105C4 if end_coroutine() == 28 -> 0xFB1C
|
||||
0x0105D8 if end_coroutine() == 29 -> 0xFBD0
|
||||
0x0105EC if end_coroutine() == 30 -> 0xFC84
|
||||
0x010600 if end_coroutine() == 31 -> 0xFD38
|
||||
0x010614 if end_coroutine() == 32 -> 0xFDEC
|
||||
0x010628 if end_coroutine() == 33 -> 0xFEA0
|
||||
0x01063C if end_coroutine() == 34 -> 0xFF54
|
||||
0x010650 if end_coroutine() == 35 -> 0x10008
|
||||
0x010664 if end_coroutine() == 36 -> 0x100BC
|
||||
0x010678 if end_coroutine() == 37 -> 0x10170
|
||||
0x01068C if end_coroutine() == 38 -> 0x10224
|
||||
0x0106A0 if end_coroutine() == 39 -> 0x102D8
|
||||
0x0106B4 if end_coroutine() == 40 -> 0x1038C
|
||||
0x0106C8 if end_coroutine() == 41 -> 0x10440
|
||||
0x0106DC if end_coroutine() == 42 -> 0x104F4
|
||||
0x0105C4 if <unknown: reached after a coroutine boundary> == 28 -> 0xFB1C
|
||||
0x0105D8 if <unknown: reached after a coroutine boundary> == 29 -> 0xFBD0
|
||||
0x0105EC if <unknown: reached after a coroutine boundary> == 30 -> 0xFC84
|
||||
0x010600 if <unknown: reached after a coroutine boundary> == 31 -> 0xFD38
|
||||
0x010614 if <unknown: reached after a coroutine boundary> == 32 -> 0xFDEC
|
||||
0x010628 if <unknown: reached after a coroutine boundary> == 33 -> 0xFEA0
|
||||
0x01063C if <unknown: reached after a coroutine boundary> == 34 -> 0xFF54
|
||||
0x010650 if <unknown: reached after a coroutine boundary> == 35 -> 0x10008
|
||||
0x010664 if <unknown: reached after a coroutine boundary> == 36 -> 0x100BC
|
||||
0x010678 if <unknown: reached after a coroutine boundary> == 37 -> 0x10170
|
||||
0x01068C if <unknown: reached after a coroutine boundary> == 38 -> 0x10224
|
||||
0x0106A0 if <unknown: reached after a coroutine boundary> == 39 -> 0x102D8
|
||||
0x0106B4 if <unknown: reached after a coroutine boundary> == 40 -> 0x1038C
|
||||
0x0106C8 if <unknown: reached after a coroutine boundary> == 41 -> 0x10440
|
||||
0x0106DC if <unknown: reached after a coroutine boundary> == 42 -> 0x104F4
|
||||
0x010728 if builtin103() != 0 -> 0x10748
|
||||
0x010788 if hp_pct_test(TCN004, 30) != 1 -> 0x108D4
|
||||
0x010814 if dist_lt(TCN004, TCN001, 10000) == 1 -> 0x108D4
|
||||
|
||||
Reference in New Issue
Block a user