w6c+selfhost+lib: cgen quality batch + lib Hare-shape graduation
Six fixes across the toolchain, surfaced by lib/lisp porting work.
1. f64 compound assigns (`acc += d`, `-=`, `*=`, `/=`). Both stages
load slot → X1, OP X0 into X1, store back (ADDSD/SUBSD/MULSD/
DIVSD are reg-reg only). Previous MOVSD-overwrite dropped the
OP. Locals and top-level lets.
2. Top-level `[N]u8` arrays + `&arr[i]`. let_emit_size grows a
TY_ARRAY branch so zero-init DATAW lands; cgindex / N_INDEX
store / `&base[i]` all detect a global array base and use
LEAQ name(SB) instead of LEAQ (BP). TK_AMP no longer pre-
evaluates the operand as a value-load — `&base[i]` computes
base + i*esz directly. Unblocks Hare's static-buffer pattern:
strconv.{u64,i64,f64}tos graduate to module-level `*_buf`
arrays and return owned views.
3. Cross-module `pkg.Enum.MEMBER`. Nested N_DOT chains that
don't fold to a known shape now emit `MOVQ <leaf>(SB), AX`
(mirrors the bare-IDENT unresolved fallback), so isolation
probes — and the test 990 cgen-match floor — stay consistent
across stages. strconv exposes `base` as a real `enum i32`;
callers updated. The `main` exemption (linker entry-point
keeps bare name even when not exported) mirrors C-side
collectmods into selfhost cgendecl.
4. Sum-typed parameter ABI. lib/bytes.{index,rindex} take
`(u8 | []u8)` needle; lib/strings.byteindex / rbyteindex take
`(str | rune)` needle (Hare-shaped; the byte-wise misnomer
`index` is dropped). tagged_arg_size cap bumps to 48 (6 int
regs), with a new partial-fit branch on the callee: when an
N-word tagged arg overflows remaining regs, fill what fits and
stitch the rest from positive BP offsets. scanlocals MCASE
handles slice binds (24B) and walks each arm with a saved /
restored seenmark set so two arms naming the same local each
get their own slot — matches cstage's per-arm scope reset.
5. 4-reg tagged-return ABI (AX=tag, DX=word0, CX=word1, R8=word2),
up from 3 regs. Slice-payload variants (`([]T | E)`, slot 32B)
round-trip ptr/len/cap end-to-end. Every receive site updates:
let-init via cgwidentaggedstore, match scrutinee spill, cgindex
tagged-element load (both N_IDENT and fallback bases),
pushargsrev tagged-ident arg (reads word count from slot size),
cgreturn slice variant in the shuffle path.
6. `expr: TaggedAlias` is a widening, not a re-interpret. C cgen +
selfhost cgwidentaggedstore peel an N_CAST whose destination IS
the union — so cgexpr's natural shape (str: AX=ptr, BX=len;
slice: AX=ptr, BX=len, CX=cap) is consumed by the matching
concrete-variant branch instead of being misread as a tagged
AX/DX/CX triple. Inner casts to a concrete variant (`7: i32`)
keep their type for proper tag lookup. `[N]Alias` arrays
resolve element size via slotsize + aliaslookup, and aliaslookup
strips a `pkg.` prefix so cross-module references work.
lib/fmt grows `formattable = (i64 | str | bool | rune)` plus
`printv` / `printlnv` taking an explicit `[]formattable` slice (the
receive side of Hare's `args: formattable...`). Call-site variadic
gather isn't wired — callers either hand-build the slice or compose
strconv.i64tos + strings.concat.
700_e2e: 114 → 123 rows (f64 compound, top-level u8 arrays + `&buf[i]`,
pkg.Enum.MEMBER, sum-typed (str|rune) and (u8|[]u8) params, 4-reg
slice-return ABI, formattable array). 26/26 tests, bootstrap stable
through ww4.
This commit is contained in:
@@ -101,7 +101,21 @@ fn pushargsrev(c: *cgen, arg: *node, param: *node) i32 = {
|
||||
return rest + widensz / 8;
|
||||
};
|
||||
cgexpr(c, arg);
|
||||
if (nodeisstr(c, arg)) {
|
||||
if (nodeisslice(c, arg)) {
|
||||
// Slice payload (24B): cgexpr leaves (AX=ptr, BX=len,
|
||||
// CX=cap). Slot layout: [+0]=tag, [+8]=ptr, [+16]=len,
|
||||
// [+24]=cap. Push high→low so pop drains tag first.
|
||||
// Requires widensz >= 32; a smaller slot would mean the
|
||||
// destination union doesn't list slice as a variant
|
||||
// (caller should have flagged a type error).
|
||||
emitline("\tPUSHQ\tCX\n");
|
||||
emitline("\tPUSHQ\tBX\n");
|
||||
emitline("\tPUSHQ\tAX\n");
|
||||
emitline("\tMOVQ\t$");
|
||||
emitint(widentag: i64);
|
||||
emitline(", AX\n");
|
||||
emitline("\tPUSHQ\tAX\n");
|
||||
} else { if (nodeisstr(c, arg)) {
|
||||
// slot 24: [+0]=tag,[+8]=ptr,[+16]=len. Push high→low
|
||||
// so pop drains tag first into arg-reg[0].
|
||||
emitline("\tPUSHQ\tBX\n");
|
||||
@@ -114,16 +128,18 @@ fn pushargsrev(c: *cgen, arg: *node, param: *node) i32 = {
|
||||
// Scalar variant: single value word at +8. Pad a zero
|
||||
// high word when slot is 24B (some other variant of
|
||||
// the union is 16B-shaped).
|
||||
if (widensz > 16) {
|
||||
let pp: i32 = widensz - 8;
|
||||
for (pp > 8) {
|
||||
emitline("\tXORQ\tDX, DX\n");
|
||||
emitline("\tPUSHQ\tDX\n");
|
||||
pp -= 8;
|
||||
};
|
||||
emitline("\tPUSHQ\tAX\n");
|
||||
emitline("\tMOVQ\t$");
|
||||
emitint(widentag: i64);
|
||||
emitline(", AX\n");
|
||||
emitline("\tPUSHQ\tAX\n");
|
||||
};
|
||||
};};
|
||||
return rest + widensz / 8;
|
||||
};
|
||||
// nkind.N_SLICE expression as arg: `buf[lo:hi]` builds a slice header
|
||||
@@ -209,25 +225,28 @@ fn pushargsrev(c: *cgen, arg: *node, param: *node) i32 = {
|
||||
// Slice/tagged ident args: emit per-register MOVQ+PUSHQ pairs in
|
||||
// reverse order (cap/v1, len/v0, ptr/tag) so a left-to-right pop
|
||||
// into argregs lands the canonical (ptr/tag, len/v0, cap/v1).
|
||||
// For tagged ident with a >24B slot (slice-payload variant),
|
||||
// push a fourth word from off+24.
|
||||
if (arg.kind == nkind.N_IDENT) {
|
||||
let nm: str = arg.str;
|
||||
let lc: *local = localfindnode(c, nm);
|
||||
if (lc != nil) {
|
||||
let off: i32 = lc.off;
|
||||
if (isslicetype(c, lc.tnode) || istaggedtype(c, lc.tnode)) {
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff((off + 16): i64);
|
||||
emitline("(BP), AX\n");
|
||||
emitline("\tPUSHQ\tAX\n");
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff((off + 8): i64);
|
||||
emitline("(BP), AX\n");
|
||||
emitline("\tPUSHQ\tAX\n");
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff(off: i64);
|
||||
emitline("(BP), AX\n");
|
||||
emitline("\tPUSHQ\tAX\n");
|
||||
return rest + 3;
|
||||
let nwords: i32 = 3;
|
||||
if (istaggedtype(c, lc.tnode)) {
|
||||
let ssz: i32 = slotsize(c, lc.tnode);
|
||||
nwords = ssz / 8;
|
||||
};
|
||||
let w: i32 = nwords - 1;
|
||||
for (w >= 0) {
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff((off + w*8): i64);
|
||||
emitline("(BP), AX\n");
|
||||
emitline("\tPUSHQ\tAX\n");
|
||||
w -= 1;
|
||||
};
|
||||
return rest + nwords;
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -610,6 +629,9 @@ fn dotinnerstructptr(c: *cgen, n: *node) *node = {
|
||||
// elemsizeof — given the type node of an indexable (`*T`, `[]T`,
|
||||
// `[N]T`, `str`), return the byte size of one element (1 for u8/i8/
|
||||
// bool/str-byte, 8 otherwise — same shape as C cgen's esz fallback).
|
||||
// For aliased element types (e.g. `[N]formattable`), callers that
|
||||
// need the resolved slot size should use elemsizeofc(c, t) which
|
||||
// follows aliases via slotsize.
|
||||
fn elemsizeof(t: *node) i32 = {
|
||||
if (t == nil) { return 1; };
|
||||
let k: nkind = t.kind;
|
||||
@@ -636,6 +658,27 @@ fn elemsizeof(t: *node) i32 = {
|
||||
return 8;
|
||||
};
|
||||
|
||||
// elemsizeofc — like elemsizeof but resolves aliased element types
|
||||
// (struct / tagged / `type foo = bar;`) via slotsize. Used where
|
||||
// cgindex / cgassign need a correct stride for `[N]Alias` arrays
|
||||
// whose Alias resolves to a tagged union (e.g. `[N]formattable`).
|
||||
fn elemsizeofc(c: *cgen, t: *node) i32 = {
|
||||
if (t == nil) { return 1; };
|
||||
let direct: i32 = elemsizeof(t);
|
||||
if (direct != 8) { return direct; };
|
||||
let k: nkind = t.kind;
|
||||
let elem: *node = nil;
|
||||
if (k == nkind.N_TPTR) { elem = t.lhs; };
|
||||
if (k == nkind.N_TSLICE) { elem = t.lhs; };
|
||||
if (k == nkind.N_TARRAY) { elem = t.lhs; };
|
||||
if (elem == nil) { return direct; };
|
||||
if (elem.kind == nkind.N_TNAME) {
|
||||
let ps: i32 = primsize(elem.str);
|
||||
if (ps > 0) { return ps; };
|
||||
};
|
||||
return slotsize(c, elem);
|
||||
};
|
||||
|
||||
// nodeisunsigned — best-effort cgen-time inference from the AST. We
|
||||
// don't have a typed AST yet, so we walk surface nodes:
|
||||
// nkind.N_INTLIT — never marked unsigned (no tsuffix plumbing yet)
|
||||
@@ -986,9 +1029,20 @@ fn slotsize(c: *cgen, typn: *node) i32 = {
|
||||
if (ps > 0) { esz = ps; }
|
||||
else {
|
||||
// Named struct / aliased type: size off
|
||||
// the structinfo if present.
|
||||
// the structinfo if present, else follow
|
||||
// the alias via aliaslookup so
|
||||
// `[N]formattable` reads the resolved
|
||||
// tagged slot (e.g. 24B for
|
||||
// `(i64|str|bool)`), not the fall-
|
||||
// through 8B.
|
||||
let si: *structinfo = structlookup(c, en);
|
||||
if (si != nil) { esz = si.totsize; };
|
||||
if (si != nil) { esz = si.totsize; }
|
||||
else { if (c != nil) {
|
||||
let al: *node = aliaslookup(c, en);
|
||||
if (al != nil) {
|
||||
esz = slotsize(c, al);
|
||||
};
|
||||
}; };
|
||||
};
|
||||
} else { if (elemn.kind == nkind.N_TTAGGED) {
|
||||
// Tagged-union element: full slot (8 tag +
|
||||
@@ -1734,6 +1788,53 @@ fn cgwidentaggedstore(c: *cgen, dst: *node, src: *node, slot_off: i32, slot_sz:
|
||||
emitline("(BP)\n");
|
||||
return;
|
||||
};
|
||||
// `expr: TaggedAlias` where the cast's destination IS the union
|
||||
// itself is a widening, not a re-interpret. cgexpr on a CAST
|
||||
// produces the inner's register shape (str: AX=ptr, BX=len), not
|
||||
// the tagged AX/DX/CX triple — so peel to the inner and route
|
||||
// through the matching concrete-variant branch below. A cast to
|
||||
// a concrete variant (`7: i32`) is left intact so the existing
|
||||
// scalar / str / slice branches pick the right variant tag.
|
||||
if (src != nil) {
|
||||
if (src.kind == nkind.N_CAST) {
|
||||
if (src.lhs != nil) {
|
||||
let inner: *node = src.lhs;
|
||||
let inneristagged: bool = false;
|
||||
if (inner.kind == nkind.N_IDENT) {
|
||||
let lc: *local = localfindnode(c, inner.str);
|
||||
if (lc != nil) {
|
||||
inneristagged = istaggedtype(c, lc.tnode);
|
||||
};
|
||||
};
|
||||
if (rhstaggedabicall(c, inner)) {
|
||||
inneristagged = true;
|
||||
};
|
||||
// Cast's destination = the dst tagged union
|
||||
// itself? The rhs of N_CAST holds the target
|
||||
// type. Compare nominally via str match on
|
||||
// the tagged-alias name.
|
||||
let castisdst: bool = false;
|
||||
let castrhs: *node = src.rhs;
|
||||
if (castrhs != nil) {
|
||||
if (castrhs.kind == nkind.N_TTAGGED) {
|
||||
castisdst = true;
|
||||
};
|
||||
if (castrhs.kind == nkind.N_TNAME) {
|
||||
if (dst != nil) {
|
||||
if (dst.kind == nkind.N_TNAME) {
|
||||
if (streq(castrhs.str, dst.str)) {
|
||||
castisdst = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
if (castisdst && !inneristagged) {
|
||||
src = inner;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
// Tagged source ident: byte-copy slot words then tag-remap.
|
||||
let st: *node = rhstaggedident(c, src);
|
||||
if (st != nil) {
|
||||
@@ -1763,8 +1864,9 @@ fn cgwidentaggedstore(c: *cgen, dst: *node, src: *node, slot_off: i32, slot_sz:
|
||||
cgwidentagremap(c, dt, st, slot_off);
|
||||
return;
|
||||
};
|
||||
// Tagged source via AX/DX/CX register ABI (N_CALL, N_INDEX of
|
||||
// tagged element).
|
||||
// Tagged source via AX/DX/CX/R8 register ABI (N_CALL, N_INDEX
|
||||
// of tagged element). R8 carries the 4th word for slice-payload
|
||||
// variants (slot 32B).
|
||||
if (rhstaggedabicall(c, src)) {
|
||||
cgexpr(c, src);
|
||||
emitline("\tMOVQ\tAX, ");
|
||||
@@ -1780,6 +1882,11 @@ fn cgwidentaggedstore(c: *cgen, dst: *node, src: *node, slot_off: i32, slot_sz:
|
||||
emitoff((slot_off + 16): i64);
|
||||
emitline("(BP)\n");
|
||||
};
|
||||
if (slot_sz > 24) {
|
||||
emitline("\tMOVQ\tR8, ");
|
||||
emitoff((slot_off + 24): i64);
|
||||
emitline("(BP)\n");
|
||||
};
|
||||
return;
|
||||
};
|
||||
// Struct payload (literal or ident).
|
||||
@@ -1898,6 +2005,28 @@ fn cgwidentaggedstore(c: *cgen, dst: *node, src: *node, slot_off: i32, slot_sz:
|
||||
emitline("(BP)\n");
|
||||
return;
|
||||
};
|
||||
// Slice payload (24B): cgexpr leaves (AX=ptr, BX=len, CX=cap).
|
||||
// Slot layout: [+0]=tag, [+8]=ptr, [+16]=len, [+24]=cap.
|
||||
if (nodeisslice(c, src)) {
|
||||
cgexpr(c, src);
|
||||
emitline("\tMOVQ\tAX, ");
|
||||
emitoff((slot_off + 8): i64);
|
||||
emitline("(BP)\n");
|
||||
emitline("\tMOVQ\tBX, ");
|
||||
emitoff((slot_off + 16): i64);
|
||||
emitline("(BP)\n");
|
||||
emitline("\tMOVQ\tCX, ");
|
||||
emitoff((slot_off + 24): i64);
|
||||
emitline("(BP)\n");
|
||||
let tag: i32 = taggedvariantindex(c, dt, src);
|
||||
if (tag < 0) { tag = 0; };
|
||||
emitline("\tMOVQ\t$");
|
||||
emitint(tag: i64);
|
||||
emitline(", ");
|
||||
emitoff(slot_off: i64);
|
||||
emitline("(BP)\n");
|
||||
return;
|
||||
};
|
||||
// Scalar payload.
|
||||
cgexpr(c, src);
|
||||
emitline("\tMOVQ\tAX, ");
|
||||
|
||||
Reference in New Issue
Block a user