Hojun-Cho
feae910a9b
wcc: #152 let-initializer scope — defer the binding's localfind link past its own init (both stages)
...
A let's own name was visible during its OWN initializer: cgen prepended the
new local into the name-keyed localfind chain BEFORE emitting the init, so
`let x = f(x)` read the fresh UNINIT slot, not the outer/param x. Both-wrong-
identical silent miscompile (gate-blind byte-id). Surfaced by path
dirname/basename (was the c3-posix path->p rename).
Align to Hare (harec check.c:1439 evals the init, then scope_insert). Fix,
both stages, IDENTICAL asm: reserve the frame slot BEFORE the init emits,
link the binding's name into the localfind chain only AFTER.
- cstage cgen.c: split localoff -> localslot(reserve)+link; N_LET's 12
case-level breaks -> goto letlink (tail links once); the inner-for break
is preserved; the 4 fatal() arms untouched.
- wwstage cgen.ww/cgenstmt.ww: new localreserve (= localalloc minus the
chain-link); cglet -> cgletbody(c,n,off) + a cglet wrapper that
reserves -> calls body -> links after.
Byte-id-safe on existing code: localfind is by-name, so deferring the link
is a no-op on every non-self-shadow let (grep = 0 self-shadow sites) — 990-997
stay green. Because both stages emit identical now-correct asm, byte-id
CANNOT catch this; the pin is a RUNTIME test, teeth-proven (revert -> pin
fails). test/wcc/989_letshadow{.ww,_run.c}: param-shadow, let-in-init shadow,
rename control, arrlit self-ref.
Embedded regen: selfhost/cmd/{w6c,wwdump}/main.combined.ww. Gate: all 325
passed, byte-id 990-997 green, w6c c587f4a1 / w6c_ww 7a69f898 (deterministic).
2026-06-08 12:17:18 +09:00
..
2026-06-06 12:05:56 +09:00
2026-05-11 13:49:27 +09:00
2026-05-18 18:25:36 +09:00
2026-05-18 18:25:36 +09:00
2026-05-16 11:17:20 +09:00
2026-05-11 13:49:27 +09:00
2026-05-11 13:49:27 +09:00
2026-05-12 11:35:50 +09:00
2026-05-12 12:45:11 +09:00
2026-05-11 13:49:27 +09:00
2026-05-11 13:49:27 +09:00
2026-05-12 13:44:27 +09:00
2026-05-12 13:37:31 +09:00
2026-05-16 03:00:34 +09:00
2026-05-13 20:06:24 +09:00
2026-05-14 02:44:57 +09:00
2026-05-14 01:58:52 +09:00
2026-05-14 00:36:34 +09:00
2026-05-13 23:45:35 +09:00
2026-05-25 01:59:14 +09:00
2026-06-03 14:58:23 +09:00
2026-06-03 18:03:13 +09:00
2026-06-03 18:53:44 +09:00
2026-06-03 20:32:22 +09:00
2026-06-03 20:55:52 +09:00
2026-06-03 22:58:45 +09:00
2026-06-03 22:38:02 +09:00
2026-06-03 23:51:28 +09:00
2026-05-14 00:21:53 +09:00
2026-05-14 23:45:14 +09:00
2026-05-14 23:26:49 +09:00
2026-05-25 01:59:14 +09:00
2026-05-15 01:39:37 +09:00
2026-05-25 01:59:14 +09:00
2026-05-15 14:16:53 +09:00
2026-05-15 11:24:33 +09:00
2026-05-28 14:07:58 +09:00
2026-05-15 15:06:37 +09:00
2026-06-04 22:42:47 +09:00
2026-05-15 16:43:07 +09:00
2026-05-15 18:13:02 +09:00
2026-05-15 18:14:33 +09:00
2026-05-15 18:45:21 +09:00
2026-05-15 19:07:29 +09:00
2026-05-16 00:07:00 +09:00
2026-05-27 13:04:02 +09:00
2026-05-16 10:47:50 +09:00
2026-05-16 11:17:20 +09:00
2026-05-16 12:20:56 +09:00
2026-05-16 11:37:17 +09:00
2026-05-16 11:17:20 +09:00
2026-05-16 12:52:36 +09:00
2026-05-16 13:45:33 +09:00
2026-05-16 23:32:27 +09:00
2026-05-17 00:00:55 +09:00
2026-05-17 00:27:22 +09:00
2026-05-17 01:40:49 +09:00
2026-05-17 07:25:49 +09:00
2026-05-17 07:33:55 +09:00
2026-05-18 00:15:34 +09:00
2026-05-18 01:51:57 +09:00
2026-05-18 02:20:42 +09:00
2026-05-18 02:49:06 +09:00
2026-05-18 03:15:40 +09:00
2026-05-18 18:25:36 +09:00
2026-05-18 18:25:36 +09:00
2026-05-18 18:25:36 +09:00
2026-06-02 18:54:35 +09:00
2026-05-18 12:01:34 +09:00
2026-05-18 18:25:36 +09:00
2026-05-25 11:27:00 +09:00
2026-05-18 18:25:36 +09:00
2026-05-18 18:25:36 +09:00
2026-05-18 18:25:36 +09:00
2026-05-18 18:25:36 +09:00
2026-06-04 04:34:54 +09:00
2026-05-18 19:22:27 +09:00
2026-05-18 19:22:27 +09:00
2026-05-18 19:40:41 +09:00
2026-05-18 19:55:30 +09:00
2026-05-24 08:11:14 +09:00
2026-05-18 20:55:37 +09:00
2026-05-18 21:13:42 +09:00
2026-05-18 23:01:09 +09:00
2026-05-18 23:37:16 +09:00
2026-05-18 23:56:58 +09:00
2026-05-19 00:58:28 +09:00
2026-05-19 02:13:58 +09:00
2026-05-19 03:09:34 +09:00
2026-05-19 03:39:42 +09:00
2026-05-19 04:04:41 +09:00
2026-05-19 04:56:56 +09:00
2026-05-19 10:44:16 +09:00
2026-05-19 12:30:36 +09:00
2026-05-19 13:43:45 +09:00
2026-05-19 15:09:57 +09:00
2026-05-20 02:27:17 +09:00
2026-05-24 08:11:14 +09:00
2026-05-22 00:14:36 +09:00
2026-05-26 02:39:35 +09:00
2026-05-28 16:16:29 +09:00
2026-05-28 17:12:20 +09:00
2026-05-28 18:03:26 +09:00
2026-05-28 18:50:10 +09:00
2026-05-28 19:25:53 +09:00
2026-05-28 20:01:14 +09:00
2026-05-28 20:55:42 +09:00
2026-05-30 03:24:23 +09:00
2026-05-28 23:17:22 +09:00
2026-05-29 01:00:02 +09:00
2026-05-29 03:04:18 +09:00
2026-05-29 03:52:04 +09:00
2026-05-29 04:51:44 +09:00
2026-05-29 06:18:27 +09:00
2026-05-30 03:24:23 +09:00
2026-05-30 03:24:23 +09:00
2026-06-01 05:04:46 +09:00
2026-05-31 20:31:40 +09:00
2026-05-31 20:31:40 +09:00
2026-06-01 05:04:46 +09:00
2026-06-01 05:04:46 +09:00
2026-05-31 23:34:16 +09:00
2026-05-29 18:05:53 +09:00
2026-05-30 02:00:07 +09:00
2026-05-30 04:54:12 +09:00
2026-05-30 05:29:58 +09:00
2026-05-30 06:47:44 +09:00
2026-05-31 17:00:42 +09:00
2026-05-30 09:04:33 +09:00
2026-05-30 09:36:32 +09:00
2026-06-04 16:10:34 +09:00
2026-05-31 20:31:40 +09:00
2026-05-31 22:20:53 +09:00
2026-06-01 02:07:59 +09:00
2026-06-01 09:01:56 +09:00
2026-06-01 09:57:45 +09:00
2026-06-01 09:59:32 +09:00
2026-06-01 11:53:06 +09:00
2026-06-01 13:36:42 +09:00
2026-06-04 02:38:36 +09:00
2026-05-11 13:49:27 +09:00
2026-06-03 00:28:16 +09:00
2026-06-04 13:37:19 +09:00
2026-06-03 15:57:33 +09:00
2026-06-04 23:37:08 +09:00
2026-06-04 13:00:03 +09:00
2026-06-05 00:00:00 +09:00
2026-06-04 10:20:18 +09:00
2026-06-05 09:31:23 +09:00
2026-06-06 07:05:47 +09:00
2026-06-04 23:37:08 +09:00
2026-06-05 00:19:47 +09:00
2026-05-12 13:50:09 +09:00
2026-06-05 02:39:09 +09:00
2026-06-05 06:18:45 +09:00
2026-06-06 09:23:24 +09:00
2026-06-08 11:25:11 +09:00
2026-05-28 10:40:08 +09:00
2026-05-28 08:07:19 +09:00
2026-05-28 09:06:54 +09:00
2026-05-28 09:06:54 +09:00
2026-05-30 05:58:06 +09:00
2026-06-01 18:23:29 +09:00
2026-06-01 09:24:59 +09:00
2026-06-02 21:58:39 +09:00
2026-06-02 22:18:19 +09:00
2026-05-27 22:13:46 +09:00
2026-05-27 18:43:08 +09:00
2026-05-27 16:17:24 +09:00
2026-05-27 15:39:03 +09:00
2026-05-27 13:55:56 +09:00
2026-05-12 03:14:20 +09:00
2026-05-27 00:12:39 +09:00
2026-05-27 01:29:24 +09:00
2026-05-27 01:51:12 +09:00
2026-05-27 02:32:31 +09:00
2026-05-27 03:07:49 +09:00
2026-05-27 03:30:15 +09:00
2026-05-27 04:19:37 +09:00
2026-05-27 05:04:05 +09:00
2026-05-27 12:21:15 +09:00
2026-06-03 11:35:03 +09:00
2026-05-27 09:18:03 +09:00
2026-05-27 10:27:55 +09:00
2026-05-27 00:44:16 +09:00
2026-06-01 22:26:53 +09:00
2026-05-17 07:25:49 +09:00
2026-05-17 07:33:55 +09:00
2026-05-29 23:19:36 +09:00
2026-05-18 00:15:34 +09:00
2026-05-29 19:43:48 +09:00
2026-05-18 01:51:57 +09:00
2026-06-04 04:01:16 +09:00
2026-06-04 04:34:54 +09:00
2026-05-18 02:20:42 +09:00
2026-06-04 04:54:43 +09:00
2026-06-04 05:28:45 +09:00
2026-05-24 09:19:20 +09:00
2026-05-18 18:25:36 +09:00
2026-06-06 12:05:56 +09:00
2026-06-04 06:13:18 +09:00
2026-05-18 12:01:34 +09:00
2026-06-01 17:34:23 +09:00
2026-05-23 21:22:24 +09:00
2026-05-24 12:27:15 +09:00
2026-05-24 13:31:58 +09:00
2026-05-24 13:57:20 +09:00
2026-05-24 14:22:25 +09:00
2026-05-24 14:57:05 +09:00
2026-06-06 19:27:28 +09:00
2026-06-04 21:09:31 +09:00
2026-05-24 15:35:37 +09:00
2026-05-24 16:18:49 +09:00
2026-06-05 08:39:40 +09:00
2026-05-24 16:54:14 +09:00
2026-05-30 00:46:57 +09:00
2026-06-01 19:01:58 +09:00
2026-06-01 17:52:42 +09:00
2026-05-24 17:29:20 +09:00
2026-06-04 19:06:54 +09:00
2026-05-25 00:20:16 +09:00
2026-06-06 22:23:43 +09:00
2026-05-25 01:59:14 +09:00
2026-05-25 02:36:54 +09:00
2026-06-06 02:19:39 +09:00
2026-06-05 23:06:46 +09:00
2026-06-06 03:48:54 +09:00
2026-06-06 10:04:37 +09:00
2026-06-05 10:46:17 +09:00
2026-06-05 23:38:41 +09:00
2026-06-06 06:05:46 +09:00
2026-06-05 21:10:35 +09:00
2026-06-05 20:14:49 +09:00
2026-06-06 10:48:05 +09:00
2026-06-06 14:10:17 +09:00
2026-06-06 13:27:24 +09:00
2026-05-25 03:13:48 +09:00
2026-06-06 16:21:45 +09:00
2026-06-06 19:27:28 +09:00
2026-06-06 13:06:37 +09:00
2026-06-06 15:15:13 +09:00
2026-06-06 17:36:10 +09:00
2026-06-06 08:07:03 +09:00
2026-06-01 21:27:49 +09:00
2026-06-07 11:23:48 +09:00
2026-06-01 13:36:42 +09:00
2026-06-07 12:10:38 +09:00
2026-06-06 21:13:32 +09:00
2026-05-26 14:46:01 +09:00
2026-05-27 23:31:19 +09:00
2026-05-28 01:50:28 +09:00
2026-05-26 19:14:14 +09:00
2026-06-07 22:57:06 +09:00
2026-06-06 22:23:43 +09:00
2026-05-26 22:27:32 +09:00
2026-06-02 15:00:55 +09:00
2026-06-02 14:01:03 +09:00
2026-05-26 22:56:00 +09:00
2026-06-01 23:10:46 +09:00
2026-06-04 22:34:09 +09:00
2026-06-02 01:19:46 +09:00
2026-06-02 05:41:34 +09:00
2026-06-08 00:18:26 +09:00
2026-06-06 23:34:46 +09:00
2026-05-20 01:09:16 +09:00
2026-06-02 02:16:13 +09:00
2026-06-08 01:00:29 +09:00
2026-05-25 13:04:14 +09:00
2026-05-27 10:55:31 +09:00
2026-06-08 09:58:22 +09:00
2026-06-02 05:31:24 +09:00
2026-06-04 01:44:39 +09:00
2026-05-25 14:04:07 +09:00
2026-06-08 10:24:48 +09:00
2026-05-26 17:27:44 +09:00
2026-05-25 15:38:47 +09:00
2026-05-28 03:55:22 +09:00
2026-06-01 13:36:42 +09:00
2026-06-04 22:42:47 +09:00
2026-05-26 01:55:54 +09:00
2026-05-26 03:07:01 +09:00
2026-05-26 08:31:41 +09:00
2026-05-26 09:02:08 +09:00
2026-05-26 09:52:13 +09:00
2026-05-26 10:29:04 +09:00
2026-05-26 10:54:35 +09:00
2026-05-26 11:19:37 +09:00
2026-05-26 12:06:47 +09:00
2026-05-18 19:22:27 +09:00
2026-05-18 00:48:14 +09:00
2026-05-17 23:46:34 +09:00
2026-05-25 11:16:25 +09:00
2026-05-18 19:22:27 +09:00
2026-05-18 19:22:27 +09:00
2026-05-18 19:22:27 +09:00
2026-05-15 15:48:13 +09:00
2026-05-15 17:13:32 +09:00
2026-05-15 17:14:49 +09:00
2026-05-16 02:42:41 +09:00
2026-05-17 02:51:15 +09:00
2026-05-17 02:40:40 +09:00
2026-05-17 07:07:57 +09:00
2026-05-15 00:26:10 +09:00
2026-05-15 00:27:38 +09:00
2026-05-18 19:22:27 +09:00
2026-05-15 09:00:34 +09:00
2026-05-15 09:00:34 +09:00
2026-05-15 09:00:34 +09:00
2026-05-15 09:00:34 +09:00
2026-05-15 09:00:34 +09:00
2026-05-15 09:00:34 +09:00
2026-06-04 23:25:07 +09:00
2026-06-08 12:17:18 +09:00
2026-06-08 12:17:18 +09:00
2026-06-08 11:25:11 +09:00
2026-06-08 11:25:11 +09:00
2026-06-04 16:11:08 +09:00
2026-06-02 09:44:38 +09:00
2026-05-15 09:00:34 +09:00
2026-06-01 14:05:32 +09:00
2026-05-21 16:32:27 +09:00
2026-05-21 16:32:27 +09:00
2026-06-03 19:20:57 +09:00
2026-05-21 16:32:27 +09:00
2026-05-21 18:07:13 +09:00
2026-05-11 17:52:29 +09:00
2026-05-12 03:58:55 +09:00
2026-05-14 02:51:49 +09:00
2026-05-15 09:00:34 +09:00