Each banner was re-verified against the current binary (repro now behaves correctly) and cites the actual fix location in current src/** plus the covering regression example. Closes the stale-but-fixed backlog: 0019, 0042-0056, 0131. No compiler change.
3.5 KiB
FIXED via the xx <pack> bridge (the preferred fix below), not by changing
RESOLVED. Spreading a comptime pack into a
[]Any/[]Pparameter viaxx argspreviously hit the pack-as-value diagnostic ("pack has no runtime value") beforexxwas considered, so no slice was ever materialized. Fixed by interceptingxx <pack>with a slice target in theunary_op .xxarm oflowerExpr(src/ir/lower/expr.zig) before lowering the operand, callinglowerPackToSlice(src/ir/lower/pack.zig:167) to box/erase each element into a runtime[N]elem→[]elem. Covered by regression testexamples/0537-packs-pack-xx-to-slice.sx. the..argsspread.xx argswith a slice target now materializes the pack into a runtime[]Any/[]P— see examples/204-pack-xx-to-slice.sx.lowerXX/the unary-op arm interceptsxx <pack>before the pack-as-value check and calls the newlowerPackToSlice(src/ir/lower.zig). The bare..argsspread into a non-variadic[]Anyparam is still unsupported (usexx args); left as-is.
Symptom
Spreading a comptime pack ..$args into a []Any parameter — f(..args) where
f takes items: []Any — fails LLVM verification:
LLVM verification failed: Incorrect number of arguments passed to called function!
%call = call i64 @log_count(ptr %0, { ptr, i64 }, { ptr, i64 }, double ...)
The spread passes the pack's N elements as N separate positional args instead of
materialising a single []Any slice for the one items parameter.
Reproduction
#import "modules/std.sx";
log_count :: (items: []Any) -> i64 { return items.len; }
forward :: (..$args) -> i64 { return log_count(..args); }
main :: () -> i32 { print("{}\n", forward(1, "hi", 2.5)); return 0; }
Expected: 3 (the pack spreads into the []Any slice, like calling
log_count(1, "hi", 2.5) against a []Any variadic would).
Preferred fix — xx args (pack → slice materialization)
Rather than make the splat-y ..args spread collapse into a single slice arg,
the cleaner spelling is an xx cast, which already means "erase/convert to
the expected type":
forward :: (..$args) -> i64 { return log_count(xx args); } // target: []Any
xx args (target-typed) should materialize the pack into the expected slice:
- target
[]Any→ box each pack element toAny, build[N]Any→[]Any; - target
[]P→xx-erase each element to the protocolP, build[N]P→[]P(reuse the slice-of-protocol erasure landed inpackVariadicCallArgs, issue 0052).
This reuses the existing xx/protocol machinery, reads naturally, and keeps
..xs reserved for true spreads into pack/variadic callees.
Currently xx args errors ("pack 'args' has no runtime value") because the
Step 2.7 pack-as-value check fires on the bare args operand before xx is
considered. The fix: in xx (unary_op .xx) lowering, intercept a pack operand
before the pack-as-value diagnostic and, when the target type is a slice,
materialize as above.
Workaround today
Declare the forwarder as the slice variadic instead of a pack — then it's
already a runtime []Any and forwards directly:
forward :: (..args: []Any) -> i64 { return log_count(args); } // works -> 3
This is what examples/162-pack-bare-args.sx demonstrates.
Verification
After the fix, log_count(xx args) (and the original ..args form, if also
fixed) should print 3 and pass sx ir LLVM verification.