selfhost: fix several wwstage cgen miscompilations
Surfaced via examples/lisp, which had to work around the following in
source. Each lowering now matches cstage on the same shape.
- cgassign / cgdot: two-level field through a non-pointer sub-struct.
`(*L).cur.kind = k` (cur a struct-by-value field of L) silently
dropped the store; the corresponding read fell into the SB-symbol
fallback and the linker reported `undefined reference to kind`. The
two new branches resolve outer-field offset + inner-field offset
and emit a single direct store/load at the combined slot, both for
T-by-value and *T-base shapes.
- cgdot: `xs[i].field` chains the trailing field load through the
N_INDEX result for [N]T / []T / *T element-of-struct-ptr. The
cgforrange loop variable now carries the elem tnode so the same
fast path covers `for (let x .. xs) { x.field }`.
- cgindex / cgassign: top-level `[N]T` array and `*T` pointer used
as an index base. cgindex now emits LEAQ name(SB) (array) or
MOVQ name(SB) (pointer) with the correct element scaling; without
this the fallback emitted neither base and walked off the saved
BP slot. Adds letvartnode() helper, an N_TARRAY branch to
letemitsize so the array shows up in c.lets, and an N_TARRAY
initialiser path in emitletdataw that lays the literal bytes into
DATAW.
- cglet / scanlocals: infer the local's tnode for an unannotated
`let x = f()` / `let x = f()?`. inferletcalltype() reads the
callee's declared return; `?` and `!` strip to the success variant
so a tagged-union let allocates the full 24B slot and the
struct-field dispatch in cgdot/cgassign sees the right type.
letslotsize now defers to slotsize on the inferred type.
- slotsize: follow type aliases for tagged-union variants. With
`type parserr = !str;`, the variant slot was 8B instead of the
required 16B; the tagged let stomped on the next slot at the
AX/DX/CX spill.
- cgreturn: tagged-union return forwarding. `return f();` where f
also returns a tagged union now passes the (tag, payload1,
payload2) triple through unchanged instead of re-wrapping it.
- cgreturn / cglet / taggedvariantindex: dispatch by variant name
with module-qualified-vs-bare matching, and recognise N_STRUCTLIT
as the variant tag for `return eof{};`. cgexpr default emits
`MOVQ $0, AX` so the surrounding return shuffle isn't left with
a stale AX.
- isstrtype / nodeisstr: resolve through `!T` aliases. `parserr =
!str` was not propagating the str-shape to the rhs check and the
MOVQ BX,CX shuffle was being dropped from str-typed local
returns.
- exprfloatkind: recognise `p.field` as f64/f32 when the struct
field is so declared, so `v.fval: i64` lowers to CVTTSD2SI on X0.
- cgassign: str field on a direct struct local writes both halves.
`L.src = s;` previously dropped s.len.
- cgcall: pop into the int reg window only up to 6 (DI..R9); rest
stays on the stack and the caller emits ADDQ to clean up.
cgfnparams accepts >6-arg signatures by registering the overflow
params at positive BP offsets (16+8*k(BP)), no spill instruction
emitted.
All 26 harness tests pass; bootstrap reaches a byte-stable fixed
point at ww3 == ww4.
This commit is contained in:
@@ -100,6 +100,12 @@ fn cgexpr(c: *cgen, n: *node) void = {
|
||||
if (k == nkind.N_TRYUNW) { cgtryunw(c, n); return; };
|
||||
if (k == nkind.N_TYPETEST) { cgtypetest(c, n); return; };
|
||||
if (k == nkind.N_TYPEASSERT) { cgtypeassert(c, n); return; };
|
||||
// Default fallback: produce a deterministic AX = 0. Mirrors
|
||||
// the C cgen's `default: cgexpr_int(c, 0)` branch, which is
|
||||
// what `return eof{};` (N_STRUCTLIT with an empty !void
|
||||
// variant) silently relies on — without this AX carries a
|
||||
// stale value into the tagged-union return shuffle.
|
||||
emitline("\tMOVQ\t$0, AX\n");
|
||||
};
|
||||
|
||||
// cgtagvariantidx — find the 0-based variant index of `vt` inside the
|
||||
@@ -524,6 +530,14 @@ fn cgindex(c: *cgen, n: *node) void = {
|
||||
let esz: i32 = 8;
|
||||
let signed_elem: bool = false;
|
||||
let baselocal: *local = nil;
|
||||
// Global `[N]T` array or `*T` pointer used as an index base.
|
||||
// The local-ident lookup above misses it; we need LEAQ name(SB)
|
||||
// (array, the symbol IS the storage) or MOVQ name(SB) (pointer,
|
||||
// the symbol holds the address) to feed the addend.
|
||||
let isglobalarr: bool = false;
|
||||
let isglobalptr: bool = false;
|
||||
let globalname: str;
|
||||
globalname.ptr = nil; globalname.len = 0;
|
||||
if (base != nil) {
|
||||
if (base.kind == nkind.N_IDENT) {
|
||||
let bn: str = base.str;
|
||||
@@ -531,6 +545,22 @@ fn cgindex(c: *cgen, n: *node) void = {
|
||||
if (baselocal != nil) {
|
||||
esz = elemsizeof(baselocal.tnode);
|
||||
signed_elem = elemissigned(baselocal.tnode);
|
||||
} else {
|
||||
let tn: *node = letvartnode(c, bn);
|
||||
if (tn != nil) {
|
||||
if (tn.kind == nkind.N_TARRAY) {
|
||||
isglobalarr = true;
|
||||
globalname = bn;
|
||||
esz = elemsizeof(tn);
|
||||
signed_elem = elemissigned(tn);
|
||||
};
|
||||
if (tn.kind == nkind.N_TPTR) {
|
||||
isglobalptr = true;
|
||||
globalname = bn;
|
||||
esz = elemsizeof(tn);
|
||||
signed_elem = elemissigned(tn);
|
||||
};
|
||||
};
|
||||
};
|
||||
} else { if (base.kind == nkind.N_DOT) {
|
||||
esz = indexbaseesz(c, base);
|
||||
@@ -543,6 +573,31 @@ fn cgindex(c: *cgen, n: *node) void = {
|
||||
emitline(", CX\n");
|
||||
emitline("\tIMULQ\tCX, AX\n");
|
||||
};
|
||||
if (isglobalarr || isglobalptr) {
|
||||
if (isglobalarr) {
|
||||
emitline("\tLEAQ\t");
|
||||
emitsymname(c, globalname);
|
||||
emitline("(SB), BX\n");
|
||||
} else {
|
||||
emitline("\tMOVQ\t");
|
||||
emitsymname(c, globalname);
|
||||
emitline("(SB), BX\n");
|
||||
};
|
||||
emitline("\tADDQ\tAX, BX\n");
|
||||
if (esz == 16) {
|
||||
emitline("\tMOVQ\t8(BX), CX\n");
|
||||
emitline("\tMOVQ\t(BX), AX\n");
|
||||
emitline("\tMOVQ\tCX, BX\n");
|
||||
return;
|
||||
};
|
||||
if (esz == 1) { emitline("\tMOVZBQ\t(BX), AX\n"); }
|
||||
else { if (esz == 4) {
|
||||
if (signed_elem) { emitline("\tMOVSXD\t(BX), AX\n"); }
|
||||
else { emitline("\tMOVL\t(BX), AX\n"); };
|
||||
}
|
||||
else { emitline("\tMOVQ\t(BX), AX\n"); };};
|
||||
return;
|
||||
};
|
||||
if (baselocal != nil) {
|
||||
let tn: *node = baselocal.tnode;
|
||||
let isarray: bool = false;
|
||||
@@ -782,7 +837,7 @@ fn cgmatch(c: *cgen, n: *node) void = {
|
||||
let found: bool = false;
|
||||
for (v != nil) {
|
||||
if (v.kind == nkind.N_TNAME) {
|
||||
if (streq(v.str, patname)) {
|
||||
if (variantnamematch(v.str, patname)) {
|
||||
want = idx;
|
||||
found = true;
|
||||
v = nil;
|
||||
@@ -1210,6 +1265,71 @@ fn cgdot(c: *cgen, n: *node) void = {
|
||||
};
|
||||
};
|
||||
};
|
||||
// `xs[i].field` — slice/array/ptr-of-struct element field access.
|
||||
// Without this the cgen falls through to the module-qualified
|
||||
// SB fallback below and emits `MOVQ <fld>(SB), AX` (linker
|
||||
// reports `undefined reference to <fld>`). cgexpr(c, lhs)
|
||||
// dispatches to cgindex which leaves the element value in AX
|
||||
// — for a []*T element that's the *T pointer, so we just chain
|
||||
// the field load through (AX).
|
||||
if (lhs != nil) {
|
||||
if (lhs.kind == nkind.N_INDEX) {
|
||||
let idxbase: *node = lhs.lhs;
|
||||
if (idxbase != nil) { if (idxbase.kind == nkind.N_IDENT) {
|
||||
let lc: *local = localfindnode(c, idxbase.str);
|
||||
if (lc != nil) { if (lc.tnode != nil) {
|
||||
let tn: *node = lc.tnode;
|
||||
let elemt: *node = nil;
|
||||
let tk: nkind = tn.kind;
|
||||
if (tk == nkind.N_TSLICE) { elemt = tn.lhs; };
|
||||
if (tk == nkind.N_TARRAY) { elemt = tn.lhs; };
|
||||
if (tk == nkind.N_TPTR) { elemt = tn.lhs; };
|
||||
if (elemt != nil) { if (elemt.kind == nkind.N_TPTR) {
|
||||
let inner: *node = elemt.lhs;
|
||||
if (inner != nil) { if (inner.kind == nkind.N_TNAME) {
|
||||
let sname: str = inner.str;
|
||||
let si: *structinfo = structlookup(c, sname);
|
||||
if (si != nil) {
|
||||
let fi: *fieldinfo = si.fields;
|
||||
for (fi != nil) {
|
||||
if (streq(fi.fname, fld)) {
|
||||
cgexpr(c, lhs); // AX = *Struct
|
||||
if (isstrtype(c, fi.tnode)) {
|
||||
emitline("\tMOVQ\t");
|
||||
emitdispreg((fi.foff + 8): i64, "AX");
|
||||
emitline(", BX\n");
|
||||
emitline("\tMOVQ\t");
|
||||
emitdispreg(fi.foff: i64, "AX");
|
||||
emitline(", AX\n");
|
||||
return;
|
||||
};
|
||||
if (isfloattype(c, fi.tnode)) {
|
||||
let mov: str = "MOVSD";
|
||||
if (isf32type(c, fi.tnode)) { mov = "MOVSS"; };
|
||||
emitline("\t");
|
||||
emitline(mov);
|
||||
emitline("\t");
|
||||
emitdispreg(fi.foff: i64, "AX");
|
||||
emitline(", X0\n");
|
||||
return;
|
||||
};
|
||||
let lop: str = fieldloadop(fi);
|
||||
emitline("\t");
|
||||
emitline(lop);
|
||||
emitline("\t");
|
||||
emitdispreg(fi.foff: i64, "AX");
|
||||
emitline(", AX\n");
|
||||
return;
|
||||
};
|
||||
fi = fi.finext;
|
||||
};
|
||||
};
|
||||
};};
|
||||
};};
|
||||
};};
|
||||
};};
|
||||
};
|
||||
};
|
||||
// Module-qualified value reference: `mod.name` where `mod`
|
||||
// is nkind.N_IDENT bound as skind.SK_USE and the leaf isn't a local.
|
||||
// Treat as a SB symbol — `MOVQ leaf(SB), AX`. Same fallback
|
||||
@@ -1287,6 +1407,120 @@ fn cgdot(c: *cgen, n: *node) void = {
|
||||
};
|
||||
};
|
||||
};
|
||||
// Chained `(ident).f1.f2` read where f1 is a struct-by-value
|
||||
// field. Mirror of the cgassign branch added for the same shape.
|
||||
// Without this, `L.cur.kind` (cur a by-value struct of *L)
|
||||
// falls into the SB-fallback and emits `MOVQ kind(SB), AX`.
|
||||
if (lhs != nil) {
|
||||
if (lhs.kind == nkind.N_DOT) {
|
||||
let inner: *node = lhs.lhs;
|
||||
let innerfld: str = lhs.str;
|
||||
if (inner != nil) { if (inner.kind == nkind.N_IDENT) {
|
||||
let lc: *local = localfindnode(c, inner.str);
|
||||
if (lc != nil) { if (lc.tnode != nil) {
|
||||
let tn: *node = lc.tnode;
|
||||
let lkind: nkind = tn.kind;
|
||||
let outname: str;
|
||||
outname.ptr = nil; outname.len = 0;
|
||||
let isptr: bool = false;
|
||||
if (lkind == nkind.N_TNAME) { outname = tn.str; };
|
||||
if (lkind == nkind.N_TPTR) {
|
||||
let pe: *node = tn.lhs;
|
||||
if (pe != nil) { if (pe.kind == nkind.N_TNAME) {
|
||||
outname = pe.str;
|
||||
isptr = true;
|
||||
};};
|
||||
};
|
||||
if (outname.len > 0) {
|
||||
let osi: *structinfo = structlookup(c, outname);
|
||||
if (osi != nil) {
|
||||
let ofi: *fieldinfo = osi.fields;
|
||||
for (ofi != nil) {
|
||||
if (streq(ofi.fname, innerfld)) {
|
||||
let oft: *node = ofi.tnode;
|
||||
if (oft != nil) { if (oft.kind == nkind.N_TNAME) {
|
||||
if (primsize(oft.str) == 0) {
|
||||
let isi: *structinfo = structlookup(c, oft.str);
|
||||
if (isi != nil) {
|
||||
let ffi: *fieldinfo = isi.fields;
|
||||
for (ffi != nil) {
|
||||
if (streq(ffi.fname, fld)) {
|
||||
let totoff: i32 = ofi.foff + ffi.foff;
|
||||
if (isstrtype(c, ffi.tnode)) {
|
||||
if (isptr) {
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff(lc.off: i64);
|
||||
emitline("(BP), CX\n");
|
||||
emitline("\tMOVQ\t");
|
||||
emitdispreg((totoff + 8): i64, "CX");
|
||||
emitline(", BX\n");
|
||||
emitline("\tMOVQ\t");
|
||||
emitdispreg(totoff: i64, "CX");
|
||||
emitline(", AX\n");
|
||||
} else {
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff((lc.off + totoff): i64);
|
||||
emitline("(BP), AX\n");
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff((lc.off + totoff + 8): i64);
|
||||
emitline("(BP), BX\n");
|
||||
};
|
||||
return;
|
||||
};
|
||||
if (isfloattype(c, ffi.tnode)) {
|
||||
let mov: str = "MOVSD";
|
||||
if (isf32type(c, ffi.tnode)) { mov = "MOVSS"; };
|
||||
if (isptr) {
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff(lc.off: i64);
|
||||
emitline("(BP), BX\n");
|
||||
emitline("\t");
|
||||
emitline(mov);
|
||||
emitline("\t");
|
||||
emitdispreg(totoff: i64, "BX");
|
||||
emitline(", X0\n");
|
||||
} else {
|
||||
emitline("\t");
|
||||
emitline(mov);
|
||||
emitline("\t");
|
||||
emitoff((lc.off + totoff): i64);
|
||||
emitline("(BP), X0\n");
|
||||
};
|
||||
return;
|
||||
};
|
||||
let lop: str = fieldloadop(ffi);
|
||||
if (isptr) {
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff(lc.off: i64);
|
||||
emitline("(BP), BX\n");
|
||||
emitline("\t");
|
||||
emitline(lop);
|
||||
emitline("\t");
|
||||
emitdispreg(totoff: i64, "BX");
|
||||
emitline(", AX\n");
|
||||
} else {
|
||||
emitline("\t");
|
||||
emitline(lop);
|
||||
emitline("\t");
|
||||
emitoff((lc.off + totoff): i64);
|
||||
emitline("(BP), AX\n");
|
||||
};
|
||||
return;
|
||||
};
|
||||
ffi = ffi.finext;
|
||||
};
|
||||
};
|
||||
};
|
||||
};};
|
||||
};
|
||||
ofi = ofi.finext;
|
||||
};
|
||||
};
|
||||
};
|
||||
};};
|
||||
};};
|
||||
};
|
||||
};
|
||||
return;
|
||||
};
|
||||
|
||||
@@ -1732,43 +1966,48 @@ fn cgcall(c: *cgen, n: *node) void = {
|
||||
// SUBQ+MOVSD; pop into the XMM stream (X0..X7). Everything else
|
||||
// pops into the int stream (DI..R9) per the SysV ABI. Walk the
|
||||
// args list alongside the pop counter so we know each arg's
|
||||
// register class.
|
||||
// register class. SysV has only 6 int arg regs (DI/SI/DX/CX/R8/R9);
|
||||
// the remaining slots stay on the stack and the callee reads them
|
||||
// via 16+8*k(BP). Caller-cleanup is emitted after the CALL.
|
||||
let intidx: i32 = 0;
|
||||
let fpidx: i32 = 0;
|
||||
let a: *node = n.list;
|
||||
let popped: i32 = 0;
|
||||
let stackslots: i32 = 0;
|
||||
for (a != nil) {
|
||||
let fk: i32 = exprfloatkind(c, a);
|
||||
if (fk != 0) {
|
||||
let mov: str = "MOVSD";
|
||||
if (fk == 1) { mov = "MOVSS"; };
|
||||
emitline("\t");
|
||||
emitline(mov);
|
||||
emitline("\t(SP), ");
|
||||
emitline(fargregname(fpidx));
|
||||
emitline("\n");
|
||||
emitline("\tADDQ\t$8, SP\n");
|
||||
fpidx += 1;
|
||||
if (fpidx < 8) {
|
||||
emitline("\t");
|
||||
emitline(mov);
|
||||
emitline("\t(SP), ");
|
||||
emitline(fargregname(fpidx));
|
||||
emitline("\n");
|
||||
emitline("\tADDQ\t$8, SP\n");
|
||||
fpidx += 1;
|
||||
} else {
|
||||
stackslots += 1;
|
||||
};
|
||||
popped += 1;
|
||||
} else {
|
||||
emitline("\tPOPQ\t");
|
||||
emitline(argregname(intidx));
|
||||
emitline("\n");
|
||||
intidx += 1;
|
||||
popped += 1;
|
||||
// Multi-word args (str=2, slice/tagged=3): drain
|
||||
// the remaining words into successive int regs.
|
||||
let extra: i32 = 0;
|
||||
if (nodeisstr(c, a)) { extra = 1; };
|
||||
if (nodeisslice(c, a)) { extra = 2; };
|
||||
let e: i32 = 0;
|
||||
for (e < extra) {
|
||||
emitline("\tPOPQ\t");
|
||||
emitline(argregname(intidx));
|
||||
emitline("\n");
|
||||
intidx += 1;
|
||||
let words: i32 = 1 + extra;
|
||||
let w: i32 = 0;
|
||||
for (w < words) {
|
||||
if (intidx < 6) {
|
||||
emitline("\tPOPQ\t");
|
||||
emitline(argregname(intidx));
|
||||
emitline("\n");
|
||||
intidx += 1;
|
||||
} else {
|
||||
stackslots += 1;
|
||||
};
|
||||
popped += 1;
|
||||
e += 1;
|
||||
w += 1;
|
||||
};
|
||||
};
|
||||
a = a.next;
|
||||
@@ -1779,10 +2018,14 @@ fn cgcall(c: *cgen, n: *node) void = {
|
||||
// case here is identical pre-port behaviour.
|
||||
let i: i32 = popped;
|
||||
for (i < nargs) {
|
||||
emitline("\tPOPQ\t");
|
||||
emitline(argregname(intidx));
|
||||
emitline("\n");
|
||||
intidx += 1;
|
||||
if (intidx < 6) {
|
||||
emitline("\tPOPQ\t");
|
||||
emitline(argregname(intidx));
|
||||
emitline("\n");
|
||||
intidx += 1;
|
||||
} else {
|
||||
stackslots += 1;
|
||||
};
|
||||
i += 1;
|
||||
};
|
||||
let callee: *node = n.lhs;
|
||||
@@ -1869,6 +2112,14 @@ fn cgcall(c: *cgen, n: *node) void = {
|
||||
};
|
||||
emitline("(SB)\n");
|
||||
};
|
||||
// Caller cleanup for stack-passed args (args 7+, or any
|
||||
// overflow past the int/float reg windows). Mirrors C cgen:
|
||||
// pushed 8 bytes each, ADDQ them off after the CALL.
|
||||
if (stackslots > 0) {
|
||||
emitline("\tADDQ\t$");
|
||||
emitint((stackslots * 8): i64);
|
||||
emitline(", SP\n");
|
||||
};
|
||||
// SysV returns 16-byte aggregates in (AX, DX). Our str
|
||||
// convention is (AX, BX), so shuffle for str-returning calls.
|
||||
if (calleename.len > 0) {
|
||||
@@ -1991,12 +2242,30 @@ fn cgassign(c: *cgen, n: *node) void = {
|
||||
let idx: *node = lhs.rhs;
|
||||
let esz: i32 = 8;
|
||||
let baselocal: *local = nil;
|
||||
let isglobalarr: bool = false;
|
||||
let isglobalptr: bool = false;
|
||||
let globalname: str;
|
||||
globalname.ptr = nil; globalname.len = 0;
|
||||
if (base != nil) {
|
||||
if (base.kind == nkind.N_IDENT) {
|
||||
let bn: str = base.str;
|
||||
baselocal = localfindnode(c, bn);
|
||||
if (baselocal != nil) {
|
||||
esz = elemsizeof(baselocal.tnode);
|
||||
} else {
|
||||
let tn: *node = letvartnode(c, bn);
|
||||
if (tn != nil) {
|
||||
if (tn.kind == nkind.N_TARRAY) {
|
||||
isglobalarr = true;
|
||||
globalname = bn;
|
||||
esz = elemsizeof(tn);
|
||||
};
|
||||
if (tn.kind == nkind.N_TPTR) {
|
||||
isglobalptr = true;
|
||||
globalname = bn;
|
||||
esz = elemsizeof(tn);
|
||||
};
|
||||
};
|
||||
};
|
||||
} else { if (base.kind == nkind.N_DOT) {
|
||||
esz = indexbaseesz(c, base);
|
||||
@@ -2013,7 +2282,15 @@ fn cgassign(c: *cgen, n: *node) void = {
|
||||
emitline("\tIMULQ\tCX, AX\n");
|
||||
};
|
||||
emitline("\tPUSHQ\tAX\n"); // scaled idx
|
||||
if (baselocal != nil) {
|
||||
if (isglobalarr) {
|
||||
emitline("\tLEAQ\t");
|
||||
emitsymname(c, globalname);
|
||||
emitline("(SB), BX\n");
|
||||
} else { if (isglobalptr) {
|
||||
emitline("\tMOVQ\t");
|
||||
emitsymname(c, globalname);
|
||||
emitline("(SB), BX\n");
|
||||
} else { if (baselocal != nil) {
|
||||
let tn: *node = baselocal.tnode;
|
||||
let isarray: bool = false;
|
||||
if (tn != nil) { if (tn.kind == nkind.N_TARRAY) { isarray = true; }; };
|
||||
@@ -2029,7 +2306,7 @@ fn cgassign(c: *cgen, n: *node) void = {
|
||||
} else {
|
||||
cgexpr(c, base);
|
||||
emitline("\tMOVQ\tAX, BX\n");
|
||||
};
|
||||
};};};
|
||||
emitline("\tPOPQ\tAX\n"); // scaled idx
|
||||
emitline("\tADDQ\tAX, BX\n");
|
||||
emitline("\tPOPQ\tAX\n"); // value
|
||||
@@ -2160,6 +2437,20 @@ fn cgassign(c: *cgen, n: *node) void = {
|
||||
let fn_: str = fi.fname;
|
||||
if (streq(fn_, fld)) {
|
||||
cgexpr(c, n.rhs);
|
||||
// str field: cgexpr left (AX=ptr, BX=len);
|
||||
// store both halves at +0/+8. Without this,
|
||||
// `L.src = s` would only write the ptr and
|
||||
// `L.src.len` would carry whatever was on the
|
||||
// stack.
|
||||
if (isstrtype(c, fi.tnode)) {
|
||||
emitline("\tMOVQ\tAX, ");
|
||||
emitoff((lc.off + fi.foff): i64);
|
||||
emitline("(BP)\n");
|
||||
emitline("\tMOVQ\tBX, ");
|
||||
emitoff((lc.off + fi.foff + 8): i64);
|
||||
emitline("(BP)\n");
|
||||
return;
|
||||
};
|
||||
// f64/f32 direct struct local store: route via X0.
|
||||
if (isfloattype(c, fi.tnode)) {
|
||||
let mov: str = "MOVSD";
|
||||
@@ -2436,6 +2727,130 @@ fn cgassign(c: *cgen, n: *node) void = {
|
||||
};
|
||||
};
|
||||
};
|
||||
// Chained `(ident).f1.f2 = v` where f1 is a struct-by-value
|
||||
// field. The earlier chained-DOT branch handles f1: *T (deref
|
||||
// then store). This handles f1: T (in-place sub-struct), which
|
||||
// would otherwise silently emit no store — lispcore's lexer had
|
||||
// to flatten `cur.kind`/`cur.ival`/... into top-level fields to
|
||||
// work around it. Only plain `=` is wired; compound on a by-
|
||||
// value sub-field hasn't surfaced.
|
||||
if (lhs != nil) {
|
||||
if (lhs.kind == nkind.N_DOT) {
|
||||
let base: *node = lhs.lhs;
|
||||
let fld: str = lhs.str;
|
||||
if (base != nil) { if (base.kind == nkind.N_DOT) {
|
||||
let inner: *node = base.lhs;
|
||||
let innerfld: str = base.str;
|
||||
if (inner != nil) { if (inner.kind == nkind.N_IDENT) {
|
||||
let lc: *local = localfindnode(c, inner.str);
|
||||
if (lc != nil) { if (lc.tnode != nil) {
|
||||
let tn: *node = lc.tnode;
|
||||
let lkind: nkind = tn.kind;
|
||||
let outname: str;
|
||||
outname.ptr = nil; outname.len = 0;
|
||||
let isptr: bool = false;
|
||||
if (lkind == nkind.N_TNAME) { outname = tn.str; };
|
||||
if (lkind == nkind.N_TPTR) {
|
||||
let pe: *node = tn.lhs;
|
||||
if (pe != nil) { if (pe.kind == nkind.N_TNAME) {
|
||||
outname = pe.str;
|
||||
isptr = true;
|
||||
};};
|
||||
};
|
||||
if (outname.len > 0) {
|
||||
let osi: *structinfo = structlookup(c, outname);
|
||||
if (osi != nil) {
|
||||
let ofi: *fieldinfo = osi.fields;
|
||||
for (ofi != nil) {
|
||||
if (streq(ofi.fname, innerfld)) {
|
||||
let oft: *node = ofi.tnode;
|
||||
if (oft != nil) { if (oft.kind == nkind.N_TNAME) {
|
||||
if (primsize(oft.str) == 0) {
|
||||
let isi: *structinfo = structlookup(c, oft.str);
|
||||
if (isi != nil) {
|
||||
let ffi: *fieldinfo = isi.fields;
|
||||
for (ffi != nil) {
|
||||
if (streq(ffi.fname, fld)) {
|
||||
if (n.op == tkind.TK_ASSIGN) {
|
||||
let totoff: i32 = ofi.foff + ffi.foff;
|
||||
cgexpr(c, n.rhs);
|
||||
if (isstrtype(c, ffi.tnode)) {
|
||||
if (isptr) {
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff(lc.off: i64);
|
||||
emitline("(BP), CX\n");
|
||||
emitline("\tMOVQ\tAX, ");
|
||||
emitdispreg(totoff: i64, "CX");
|
||||
emitline("\n");
|
||||
emitline("\tMOVQ\tBX, ");
|
||||
emitdispreg((totoff + 8): i64, "CX");
|
||||
emitline("\n");
|
||||
} else {
|
||||
emitline("\tMOVQ\tAX, ");
|
||||
emitoff((lc.off + totoff): i64);
|
||||
emitline("(BP)\n");
|
||||
emitline("\tMOVQ\tBX, ");
|
||||
emitoff((lc.off + totoff + 8): i64);
|
||||
emitline("(BP)\n");
|
||||
};
|
||||
return;
|
||||
};
|
||||
if (isfloattype(c, ffi.tnode)) {
|
||||
let mov: str = "MOVSD";
|
||||
if (isf32type(c, ffi.tnode)) { mov = "MOVSS"; };
|
||||
if (isptr) {
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff(lc.off: i64);
|
||||
emitline("(BP), BX\n");
|
||||
emitline("\t");
|
||||
emitline(mov);
|
||||
emitline("\tX0, ");
|
||||
emitdispreg(totoff: i64, "BX");
|
||||
emitline("\n");
|
||||
} else {
|
||||
emitline("\t");
|
||||
emitline(mov);
|
||||
emitline("\tX0, ");
|
||||
emitoff((lc.off + totoff): i64);
|
||||
emitline("(BP)\n");
|
||||
};
|
||||
return;
|
||||
};
|
||||
let sop: str = fieldstoreop(ffi);
|
||||
if (isptr) {
|
||||
emitline("\tMOVQ\t");
|
||||
emitoff(lc.off: i64);
|
||||
emitline("(BP), BX\n");
|
||||
emitline("\t");
|
||||
emitline(sop);
|
||||
emitline("\tAX, ");
|
||||
emitdispreg(totoff: i64, "BX");
|
||||
emitline("\n");
|
||||
} else {
|
||||
emitline("\t");
|
||||
emitline(sop);
|
||||
emitline("\tAX, ");
|
||||
emitoff((lc.off + totoff): i64);
|
||||
emitline("(BP)\n");
|
||||
};
|
||||
return;
|
||||
};
|
||||
};
|
||||
ffi = ffi.finext;
|
||||
};
|
||||
};
|
||||
};
|
||||
};};
|
||||
};
|
||||
ofi = ofi.finext;
|
||||
};
|
||||
};
|
||||
};
|
||||
};};
|
||||
};};
|
||||
};};
|
||||
};
|
||||
};
|
||||
// Local-ident target — plain `=` and the simple compound
|
||||
// forms (+= -= *= /=); other compounds fall back to
|
||||
// "evaluate rhs, replace". Mirrors C cgen's IDENT-assign path.
|
||||
|
||||
Reference in New Issue
Block a user