aver-lang 0.18.0

VM and transpiler for Aver, a statically-typed language designed for AI-assisted development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
//! Per-record / per-sum / per-carrier hash helpers — the symmetric
//! counterpart to `eq_helpers.rs` for the hash side of nominal +
//! generic-carrier dispatch.
//!
//! ## Why
//!
//! `Map<K, V>` keyed by a record (`Map<Person, …>`) wants a
//! deterministic hash so two `Person` values that compare equal
//! collapse to the same bucket. The inline `emit_record_inline_hash`
//! / `emit_sum_inline_hash` in `lists.rs` previously fell back to
//! `drop + i32.const 0` for any non-primitive field — correct
//! (eq still disambiguates the bucket) but degenerate, every value
//! sharing primitive-prefix maps to one bucket and lookup goes
//! O(n).
//!
//! This module sets up `__hash_<X>` helpers per nominal /
//! carrier instantiation. Body emit goes through `Call(__hash_<X>)`
//! for non-primitive field values; the helper itself does the
//! shape-specific DJB2 fold. Symmetric to how `__eq_<X>` works on
//! the equality side.

use std::collections::HashMap;

use wasm_encoder::{Function, Instruction};

use super::super::WasmGcError;
use super::super::types::TypeRegistry;

/// What kind of type a registered hash helper covers. Same shapes
/// as `EqKind`, separate enum to keep the two registries
/// independent (a type may want a hash helper without an eq helper
/// — e.g. `Map<X, V>` registers hash for X without ever forcing
/// `==` on the surface).
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) enum HashKind {
    Record,
    Sum,
    OptionHash,
    ResultHash,
    TupleHash,
}

/// Per-module registry of `__hash_<TypeName>` helpers needed for
/// shape-faithful hashing inside list/vec/map helpers + per-record
/// / sum / carrier inline hash bodies.
#[derive(Default)]
pub(crate) struct HashHelperRegistry {
    order: Vec<String>,
    kinds: HashMap<String, HashKind>,
    /// `type_name -> (wasm_fn_idx, wasm_type_idx)`.
    slots: HashMap<String, (u32, u32)>,
}

impl HashHelperRegistry {
    pub(crate) fn new() -> Self {
        Self::default()
    }

    pub(crate) fn register(&mut self, type_name: &str, kind: HashKind) {
        if !self.kinds.contains_key(type_name) {
            self.order.push(type_name.to_string());
            self.kinds.insert(type_name.to_string(), kind);
        }
    }

    /// Walk `type_name`'s fields and register `__hash_<X>` for
    /// every nominal / carrier piece reachable. Mirrors
    /// `EqHelperRegistry::register_transitive` but for hash; same
    /// resolvability gate so we don't end up with a registered
    /// helper whose body can't be emitted (a record holding e.g.
    /// `List<X>` field — list-as-field hash isn't wired yet).
    pub(crate) fn register_transitive(
        &mut self,
        type_name: &str,
        kind: HashKind,
        registry: &TypeRegistry,
    ) {
        if self.kinds.contains_key(type_name) {
            return;
        }
        let mut seen = std::collections::HashSet::new();
        let resolvable = match kind {
            HashKind::Record => {
                super::super::lists::record_fields_resolvable(type_name, registry, &mut seen)
            }
            HashKind::Sum => {
                super::super::lists::sum_fields_resolvable(type_name, registry, &mut seen)
            }
            HashKind::OptionHash | HashKind::ResultHash | HashKind::TupleHash => true,
        };
        if !resolvable {
            return;
        }
        self.register(type_name, kind);
        match kind {
            HashKind::Record => {
                if let Some(fields) = registry.record_fields.get(type_name) {
                    for (_, field_ty) in fields {
                        self.register_field_type(field_ty.trim(), registry);
                    }
                }
            }
            HashKind::Sum => {
                let variants: Vec<_> = registry
                    .variants
                    .values()
                    .flat_map(|vs| vs.iter())
                    .filter(|v| v.parent == type_name)
                    .cloned()
                    .collect();
                for v in &variants {
                    for field_ty in &v.fields {
                        self.register_field_type(field_ty.trim(), registry);
                    }
                }
            }
            // Mirror eq_helpers — recurse so direct top-level
            // registration of a carrier (seed walker etc.) still
            // discovers inner types.
            HashKind::OptionHash => {
                if let Some(inner) = type_name
                    .strip_prefix("Option<")
                    .and_then(|s| s.strip_suffix('>'))
                {
                    self.register_field_type(inner.trim(), registry);
                }
            }
            HashKind::ResultHash => {
                if let Some((ok, err)) = parse_result_kv(type_name) {
                    self.register_field_type(ok.trim(), registry);
                    self.register_field_type(err.trim(), registry);
                }
            }
            HashKind::TupleHash => {
                if let Some(elems) = parse_tuple_elems(type_name) {
                    for e in elems {
                        self.register_field_type(e.trim(), registry);
                    }
                }
            }
        }
    }

    fn register_field_type(&mut self, field_ty: &str, registry: &TypeRegistry) {
        if matches!(
            field_ty,
            "Int" | "Float" | "Bool" | "String" | "Unit" | "Byte" | "Char"
        ) {
            return;
        }
        if registry.record_fields.contains_key(field_ty) {
            self.register_transitive(field_ty, HashKind::Record, registry);
            return;
        }
        if registry
            .variants
            .values()
            .flat_map(|v| v.iter())
            .any(|v| v.parent == field_ty)
        {
            self.register_transitive(field_ty, HashKind::Sum, registry);
            return;
        }
        if let Some(inner) = field_ty
            .strip_prefix("Option<")
            .and_then(|s| s.strip_suffix('>'))
        {
            self.register_transitive(field_ty, HashKind::OptionHash, registry);
            self.register_field_type(inner.trim(), registry);
        } else if field_ty.starts_with("Result<") && field_ty.ends_with('>') {
            self.register_transitive(field_ty, HashKind::ResultHash, registry);
            if let Some((ok, err)) = parse_result_kv(field_ty) {
                self.register_field_type(ok.trim(), registry);
                self.register_field_type(err.trim(), registry);
            }
        } else if field_ty.starts_with("Tuple<") && field_ty.ends_with('>') {
            self.register_transitive(field_ty, HashKind::TupleHash, registry);
            if let Some(elems) = parse_tuple_elems(field_ty) {
                for elem in elems {
                    self.register_field_type(elem.trim(), registry);
                }
            }
        } else if let Some(inner) = field_ty
            .strip_prefix("List<")
            .and_then(|s| s.strip_suffix('>'))
        {
            // Symmetric to eq_helpers — recurse into the element so
            // `List<Option<X>>` registers `__hash_Option<X>`. The
            // list_helpers slot itself is owned by the separate
            // ListHelperRegistry; this walk only covers the carrier
            // / nominal hash dispatch the inline body needs.
            self.register_field_type(inner.trim(), registry);
        } else if let Some(inner) = field_ty
            .strip_prefix("Vector<")
            .and_then(|s| s.strip_suffix('>'))
        {
            self.register_field_type(inner.trim(), registry);
        } else if let Some(inner) = field_ty
            .strip_prefix("Map<")
            .and_then(|s| s.strip_suffix('>'))
        {
            // Mirror eq_helpers — Map<K,V> hash slot lives in
            // MapHelperRegistry; recurse so K and V's hash helpers
            // exist for the structural fold.
            let bytes = inner.as_bytes();
            let mut depth: i32 = 0;
            for (idx, b) in bytes.iter().enumerate() {
                match b {
                    b'<' | b'(' => depth += 1,
                    b'>' | b')' => depth -= 1,
                    b',' if depth == 0 => {
                        let k = inner[..idx].trim();
                        let v = inner[idx + 1..].trim();
                        self.register_field_type(k, registry);
                        self.register_field_type(v, registry);
                        return;
                    }
                    _ => {}
                }
            }
        }
    }

    pub(crate) fn iter(&self) -> impl Iterator<Item = (&str, HashKind)> + '_ {
        self.order.iter().map(|n| (n.as_str(), self.kinds[n]))
    }

    pub(crate) fn assign_slots(&mut self, next_fn_idx: &mut u32, next_type_idx: &mut u32) {
        for name in &self.order {
            self.slots
                .insert(name.clone(), (*next_fn_idx, *next_type_idx));
            *next_fn_idx += 1;
            *next_type_idx += 1;
        }
    }

    pub(crate) fn lookup_fn_idx(&self, type_name: &str) -> Option<u32> {
        self.slots.get(type_name).map(|(f, _)| *f)
    }

    pub(crate) fn lookup_type_idx(&self, type_name: &str) -> Option<u32> {
        self.slots.get(type_name).map(|(_, t)| *t)
    }

    /// Emit `(eqref) -> i32` fn type for each registered helper, in
    /// the same order as `assign_slots`.
    pub(crate) fn emit_helper_types(&self, types: &mut wasm_encoder::TypeSection) {
        let eq_ref = wasm_encoder::ValType::Ref(wasm_encoder::RefType {
            nullable: true,
            heap_type: wasm_encoder::HeapType::Abstract {
                shared: false,
                ty: wasm_encoder::AbstractHeapType::Eq,
            },
        });
        for _ in &self.order {
            types.ty().function([eq_ref], [wasm_encoder::ValType::I32]);
        }
    }

    pub(crate) fn emit_helper_bodies(
        &self,
        codes: &mut wasm_encoder::CodeSection,
        registry: &TypeRegistry,
        string_eq_fn_idx: Option<u32>,
        compound_lookup: &HashMap<String, u32>,
    ) -> Result<(), WasmGcError> {
        let _ = string_eq_fn_idx; // String fields hash via array.len, no helper needed.
        // Same shape as eq_helpers — merge `List<T>` / `Vector<T>`
        // hash fn idxs from list_helpers so a record field of a
        // compound type can `Call(__hash_<canonical>)`.
        let mut helper_idx_map: HashMap<String, u32> = self
            .slots
            .iter()
            .map(|(n, (fn_idx, _))| (n.clone(), *fn_idx))
            .collect();
        for (canonical, fn_idx) in compound_lookup {
            helper_idx_map.insert(canonical.clone(), *fn_idx);
        }
        for name in &self.order {
            let kind = self.kinds[name];
            let self_fn_idx = self.slots.get(name).map(|(f, _)| *f);
            match kind {
                HashKind::Record => {
                    let f = emit_record_hash_body(name, registry, &helper_idx_map, self_fn_idx)?;
                    codes.function(&f);
                }
                HashKind::Sum => {
                    let f = emit_sum_hash_body(name, registry, &helper_idx_map, self_fn_idx)?;
                    codes.function(&f);
                }
                HashKind::OptionHash => {
                    let f = emit_option_hash_body(name, registry, &helper_idx_map)?;
                    codes.function(&f);
                }
                HashKind::ResultHash => {
                    let f = emit_result_hash_body(name, registry, &helper_idx_map)?;
                    codes.function(&f);
                }
                HashKind::TupleHash => {
                    let f = emit_tuple_hash_body(name, registry, &helper_idx_map)?;
                    codes.function(&f);
                }
            }
        }
        Ok(())
    }
}

/// `(eqref) -> i32` body for a record. Cast → typed, DJB2 fold over
/// fields, return.
fn emit_record_hash_body(
    name: &str,
    registry: &TypeRegistry,
    helper_idx_map: &HashMap<String, u32>,
    self_fn_idx: Option<u32>,
) -> Result<Function, WasmGcError> {
    let r_idx = registry
        .record_type_idx(name)
        .ok_or(WasmGcError::Validation(format!(
            "hash helper for record `{name}`: not registered"
        )))?;
    let fields = registry
        .record_fields
        .get(name)
        .ok_or(WasmGcError::Validation(format!(
            "hash helper for record `{name}`: no fields"
        )))?;
    let r_ref = wasm_encoder::ValType::Ref(wasm_encoder::RefType {
        nullable: true,
        heap_type: wasm_encoder::HeapType::Concrete(r_idx),
    });
    // Locals: 1 = typed record ref, 2 = h accumulator.
    let mut f = Function::new(vec![(1, r_ref), (1, wasm_encoder::ValType::I32)]);
    let r_heap = wasm_encoder::HeapType::Concrete(r_idx);
    f.instruction(&Instruction::LocalGet(0));
    f.instruction(&Instruction::RefCastNonNull(r_heap));
    f.instruction(&Instruction::LocalSet(1));
    f.instruction(&Instruction::I32Const(5381));
    f.instruction(&Instruction::LocalSet(2));
    for (i, (_, field_ty)) in fields.iter().enumerate() {
        // h = h * 33 + field_hash
        f.instruction(&Instruction::LocalGet(2));
        f.instruction(&Instruction::I32Const(5));
        f.instruction(&Instruction::I32Shl);
        f.instruction(&Instruction::LocalGet(2));
        f.instruction(&Instruction::I32Add);
        f.instruction(&Instruction::LocalGet(1));
        f.instruction(&Instruction::StructGet {
            struct_type_index: r_idx,
            field_index: i as u32,
        });
        emit_inner_hash_dispatch(
            &mut f,
            field_ty.trim(),
            registry,
            helper_idx_map,
            self_fn_idx.filter(|_| field_ty.trim() == name),
        )?;
        f.instruction(&Instruction::I32Add);
        f.instruction(&Instruction::LocalSet(2));
    }
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::End);
    Ok(f)
}

/// `(eqref) -> i32` body for a sum. ref.test cascade per variant;
/// matched arm folds tag idx + variant fields.
fn emit_sum_hash_body(
    parent_name: &str,
    registry: &TypeRegistry,
    helper_idx_map: &HashMap<String, u32>,
    self_fn_idx: Option<u32>,
) -> Result<Function, WasmGcError> {
    let mut variants: Vec<(String, super::super::types::VariantInfo)> = registry
        .variants
        .iter()
        .flat_map(|(n, vs)| vs.iter().map(move |v| (n.clone(), v.clone())))
        .filter(|(_, v)| v.parent == parent_name)
        .collect();
    variants.sort_by(|a, b| a.0.cmp(&b.0));
    if variants.is_empty() {
        return Err(WasmGcError::Validation(format!(
            "hash helper for sum `{parent_name}`: no variants"
        )));
    }
    // Locals: 1 = h accumulator. (Per-variant typed cast happens
    // inside the if-arm via `RefCastNonNull` → `StructGet`; we read
    // each field directly off the casted ref so no scratch slot
    // for the variant ref is needed.)
    let mut f = Function::new(vec![(1, wasm_encoder::ValType::I32)]);
    f.instruction(&Instruction::I32Const(5381));
    f.instruction(&Instruction::LocalSet(1));
    for (_v_name, info) in &variants {
        let v_idx = info.type_idx;
        let v_heap = wasm_encoder::HeapType::Concrete(v_idx);
        f.instruction(&Instruction::LocalGet(0));
        f.instruction(&Instruction::RefTestNonNull(v_heap));
        f.instruction(&Instruction::If(wasm_encoder::BlockType::Empty));
        // Mix variant tag (its type_idx) into hash.
        f.instruction(&Instruction::LocalGet(1));
        f.instruction(&Instruction::I32Const(5));
        f.instruction(&Instruction::I32Shl);
        f.instruction(&Instruction::LocalGet(1));
        f.instruction(&Instruction::I32Add);
        f.instruction(&Instruction::I32Const(v_idx as i32));
        f.instruction(&Instruction::I32Add);
        f.instruction(&Instruction::LocalSet(1));
        for (i, field_ty) in info.fields.iter().enumerate() {
            f.instruction(&Instruction::LocalGet(1));
            f.instruction(&Instruction::I32Const(5));
            f.instruction(&Instruction::I32Shl);
            f.instruction(&Instruction::LocalGet(1));
            f.instruction(&Instruction::I32Add);
            f.instruction(&Instruction::LocalGet(0));
            f.instruction(&Instruction::RefCastNonNull(v_heap));
            f.instruction(&Instruction::StructGet {
                struct_type_index: v_idx,
                field_index: i as u32,
            });
            emit_inner_hash_dispatch(
                &mut f,
                field_ty.trim(),
                registry,
                helper_idx_map,
                self_fn_idx.filter(|_| field_ty.trim() == parent_name),
            )?;
            f.instruction(&Instruction::I32Add);
            f.instruction(&Instruction::LocalSet(1));
        }
        f.instruction(&Instruction::End);
    }
    f.instruction(&Instruction::LocalGet(1));
    f.instruction(&Instruction::End);
    Ok(f)
}

/// `(eqref) -> i32` body for `Option<X>`. h held in local 2 across
/// the if-arm so the block body can be empty-typed (no stack-shape
/// constraint). DJB2-fold tag, then if Some fold inner hash too.
fn emit_option_hash_body(
    canonical: &str,
    registry: &TypeRegistry,
    helper_idx_map: &HashMap<String, u32>,
) -> Result<Function, WasmGcError> {
    let opt_idx = registry
        .option_type_idx(canonical)
        .ok_or(WasmGcError::Validation(format!(
            "hash helper for `{canonical}`: option not registered"
        )))?;
    let inner = TypeRegistry::option_element_type(canonical).ok_or(WasmGcError::Validation(
        format!("hash helper for `{canonical}`: can't parse inner"),
    ))?;
    let opt_ref = wasm_encoder::ValType::Ref(wasm_encoder::RefType {
        nullable: true,
        heap_type: wasm_encoder::HeapType::Concrete(opt_idx),
    });
    // Locals: 1 = typed Option ref, 2 = h.
    let mut f = Function::new(vec![(1, opt_ref), (1, wasm_encoder::ValType::I32)]);
    let opt_heap = wasm_encoder::HeapType::Concrete(opt_idx);
    f.instruction(&Instruction::LocalGet(0));
    f.instruction(&Instruction::RefCastNonNull(opt_heap));
    f.instruction(&Instruction::LocalSet(1));
    f.instruction(&Instruction::I32Const(5381));
    f.instruction(&Instruction::LocalSet(2));
    // h = h * 33 + tag
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::I32Const(5));
    f.instruction(&Instruction::I32Shl);
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::I32Add);
    f.instruction(&Instruction::LocalGet(1));
    f.instruction(&Instruction::StructGet {
        struct_type_index: opt_idx,
        field_index: 0,
    });
    f.instruction(&Instruction::I32Add);
    f.instruction(&Instruction::LocalSet(2));
    // if Some (tag != 0), mix inner hash into h.
    f.instruction(&Instruction::LocalGet(1));
    f.instruction(&Instruction::StructGet {
        struct_type_index: opt_idx,
        field_index: 0,
    });
    f.instruction(&Instruction::If(wasm_encoder::BlockType::Empty));
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::I32Const(5));
    f.instruction(&Instruction::I32Shl);
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::I32Add);
    f.instruction(&Instruction::LocalGet(1));
    f.instruction(&Instruction::StructGet {
        struct_type_index: opt_idx,
        field_index: 1,
    });
    emit_inner_hash_dispatch(&mut f, inner.trim(), registry, helper_idx_map, None)?;
    f.instruction(&Instruction::I32Add);
    f.instruction(&Instruction::LocalSet(2));
    f.instruction(&Instruction::End);
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::End);
    Ok(f)
}

/// `(eqref) -> i32` body for `Result<X, Y>`. h held in local 2.
fn emit_result_hash_body(
    canonical: &str,
    registry: &TypeRegistry,
    helper_idx_map: &HashMap<String, u32>,
) -> Result<Function, WasmGcError> {
    let res_idx = registry
        .result_type_idx(canonical)
        .ok_or(WasmGcError::Validation(format!(
            "hash helper for `{canonical}`: result not registered"
        )))?;
    let (ok_inner, err_inner) = parse_result_kv(canonical).ok_or(WasmGcError::Validation(
        format!("hash helper for `{canonical}`: can't parse inner"),
    ))?;
    let res_ref = wasm_encoder::ValType::Ref(wasm_encoder::RefType {
        nullable: true,
        heap_type: wasm_encoder::HeapType::Concrete(res_idx),
    });
    let mut f = Function::new(vec![(1, res_ref), (1, wasm_encoder::ValType::I32)]);
    let res_heap = wasm_encoder::HeapType::Concrete(res_idx);
    f.instruction(&Instruction::LocalGet(0));
    f.instruction(&Instruction::RefCastNonNull(res_heap));
    f.instruction(&Instruction::LocalSet(1));
    f.instruction(&Instruction::I32Const(5381));
    f.instruction(&Instruction::LocalSet(2));
    // h = h * 33 + tag
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::I32Const(5));
    f.instruction(&Instruction::I32Shl);
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::I32Add);
    f.instruction(&Instruction::LocalGet(1));
    f.instruction(&Instruction::StructGet {
        struct_type_index: res_idx,
        field_index: 0,
    });
    f.instruction(&Instruction::I32Add);
    f.instruction(&Instruction::LocalSet(2));
    // Branch on tag.
    f.instruction(&Instruction::LocalGet(1));
    f.instruction(&Instruction::StructGet {
        struct_type_index: res_idx,
        field_index: 0,
    });
    f.instruction(&Instruction::If(wasm_encoder::BlockType::Empty));
    // Ok arm: mix field 1 (ok) into h.
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::I32Const(5));
    f.instruction(&Instruction::I32Shl);
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::I32Add);
    f.instruction(&Instruction::LocalGet(1));
    f.instruction(&Instruction::StructGet {
        struct_type_index: res_idx,
        field_index: 1,
    });
    emit_inner_hash_dispatch(&mut f, ok_inner.trim(), registry, helper_idx_map, None)?;
    f.instruction(&Instruction::I32Add);
    f.instruction(&Instruction::LocalSet(2));
    f.instruction(&Instruction::Else);
    // Err arm: mix field 2 (err) into h.
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::I32Const(5));
    f.instruction(&Instruction::I32Shl);
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::I32Add);
    f.instruction(&Instruction::LocalGet(1));
    f.instruction(&Instruction::StructGet {
        struct_type_index: res_idx,
        field_index: 2,
    });
    emit_inner_hash_dispatch(&mut f, err_inner.trim(), registry, helper_idx_map, None)?;
    f.instruction(&Instruction::I32Add);
    f.instruction(&Instruction::LocalSet(2));
    f.instruction(&Instruction::End);
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::End);
    Ok(f)
}

/// `(eqref) -> i32` body for `Tuple<A, B, C, …>`. DJB2 fold per-elem.
fn emit_tuple_hash_body(
    canonical: &str,
    registry: &TypeRegistry,
    helper_idx_map: &HashMap<String, u32>,
) -> Result<Function, WasmGcError> {
    let tup_idx = registry
        .tuple_type_idx(canonical)
        .ok_or(WasmGcError::Validation(format!(
            "hash helper for `{canonical}`: tuple not registered"
        )))?;
    let elems = parse_tuple_elems(canonical).ok_or(WasmGcError::Validation(format!(
        "hash helper for `{canonical}`: can't parse elements"
    )))?;
    let tup_ref = wasm_encoder::ValType::Ref(wasm_encoder::RefType {
        nullable: true,
        heap_type: wasm_encoder::HeapType::Concrete(tup_idx),
    });
    let mut f = Function::new(vec![(1, tup_ref), (1, wasm_encoder::ValType::I32)]);
    let tup_heap = wasm_encoder::HeapType::Concrete(tup_idx);
    f.instruction(&Instruction::LocalGet(0));
    f.instruction(&Instruction::RefCastNonNull(tup_heap));
    f.instruction(&Instruction::LocalSet(1));
    f.instruction(&Instruction::I32Const(5381));
    f.instruction(&Instruction::LocalSet(2));
    for (i, elem) in elems.iter().enumerate() {
        f.instruction(&Instruction::LocalGet(2));
        f.instruction(&Instruction::I32Const(5));
        f.instruction(&Instruction::I32Shl);
        f.instruction(&Instruction::LocalGet(2));
        f.instruction(&Instruction::I32Add);
        f.instruction(&Instruction::LocalGet(1));
        f.instruction(&Instruction::StructGet {
            struct_type_index: tup_idx,
            field_index: i as u32,
        });
        emit_inner_hash_dispatch(&mut f, elem.trim(), registry, helper_idx_map, None)?;
        f.instruction(&Instruction::I32Add);
        f.instruction(&Instruction::LocalSet(2));
    }
    f.instruction(&Instruction::LocalGet(2));
    f.instruction(&Instruction::End);
    Ok(f)
}

/// Stack: `[value]` of `inner` aver type. Push `i32` hash. Mirror
/// of `eq_helpers::emit_inner_eq_dispatch` but for hash.
fn emit_inner_hash_dispatch(
    f: &mut Function,
    inner: &str,
    registry: &TypeRegistry,
    helper_idx_map: &HashMap<String, u32>,
    self_fn_idx: Option<u32>,
) -> Result<(), WasmGcError> {
    let resolved: String = if let Some(under) = registry.newtype_underlying(inner) {
        under.to_string()
    } else {
        inner.to_string()
    };
    match resolved.as_str() {
        "Int" => {
            f.instruction(&Instruction::I32WrapI64);
        }
        "Bool" => {} // already i32
        "Float" => {
            f.instruction(&Instruction::I64ReinterpretF64);
            f.instruction(&Instruction::I32WrapI64);
        }
        "String" => {
            f.instruction(&Instruction::ArrayLen);
        }
        other if Some(other) == self_fn_idx.and(Some(inner)) => {
            // Self-recursive case — caller passed `Some(self_fn_idx)`
            // when the field is a recursive ref to the parent.
            let idx = self_fn_idx.unwrap();
            f.instruction(&Instruction::Call(idx));
        }
        other if helper_idx_map.contains_key(other) => {
            f.instruction(&Instruction::Call(helper_idx_map[other]));
        }
        _other => {
            // Last-resort fallback (newtype-erased through to a
            // non-eq-able underlying, or a shape we genuinely can't
            // resolve). Drop the value, contribute 0. Same
            // collision-tolerant degradation the older inline
            // emitters used.
            f.instruction(&Instruction::Drop);
            f.instruction(&Instruction::I32Const(0));
        }
    }
    Ok(())
}

/// `Result<Ok, Err>` → `Some(("Ok", "Err"))`. Tracks angle/paren
/// depth so `Result<Map<K,V>, MyError>` splits at the right comma.
fn parse_result_kv(canonical: &str) -> Option<(&str, &str)> {
    let inner = canonical
        .trim()
        .strip_prefix("Result<")?
        .strip_suffix('>')?;
    let bytes = inner.as_bytes();
    let mut depth: i32 = 0;
    for (idx, b) in bytes.iter().enumerate() {
        match b {
            b'<' | b'(' => depth += 1,
            b'>' | b')' => depth -= 1,
            b',' if depth == 0 => {
                return Some((inner[..idx].trim(), inner[idx + 1..].trim()));
            }
            _ => {}
        }
    }
    None
}

/// `Tuple<A, B, C>` → `Some(vec!["A", "B", "C"])`.
fn parse_tuple_elems(canonical: &str) -> Option<Vec<&str>> {
    let inner = canonical.trim().strip_prefix("Tuple<")?.strip_suffix('>')?;
    let bytes = inner.as_bytes();
    let mut depth: i32 = 0;
    let mut start = 0;
    let mut out = Vec::new();
    for (idx, b) in bytes.iter().enumerate() {
        match b {
            b'<' | b'(' => depth += 1,
            b'>' | b')' => depth -= 1,
            b',' if depth == 0 => {
                out.push(inner[start..idx].trim());
                start = idx + 1;
            }
            _ => {}
        }
    }
    out.push(inner[start..].trim());
    Some(out)
}