Surface rename of the signed integer family: s1..s64 become i1..i64
(u1..u64, usize, isize unchanged). 'string' keeps the s-prefix arm in
name classification; width parsing moves to the i-prefix arm next to
isize.
Internal TypeId tags follow the surface (.s8/.s16/.s32/.s64 ->
.i8/.i16/.i32/.i64), as do mono-key mangle fragments (ptr_i64,
tu_i64_bool) and all display/diagnostic formatting (i{d}).
Migrated in the same sweep: stdlib + examples + issue repros + FFI C
companions (shared symbol names like ffi_id_i64), expected
stdout/stderr/ir snapshots, specs.md, readme.md, CLAUDE.md/AGENTS.md,
implementation_plan.md, docs/, issue writeups. Vendored stb_image and
historical flow state left untouched.
zig build test: 426/426; examples suite: 595/595.
54 lines
2.1 KiB
Plaintext
54 lines
2.1 KiB
Plaintext
// Phase 0 baseline (PLAN-FFI.md step 0.3): structs >16 bytes passed
|
|
// by value into a C `#foreign` fn and returned by value. Exercises
|
|
// the byval-pointer ABI path — the caller copies the struct onto its
|
|
// stack and hands a pointer to the callee; on AAPCS64 the return
|
|
// uses the indirect `x8` register; on SysV AMD64 the return is a
|
|
// hidden first arg pointer that the caller allocates.
|
|
//
|
|
// Distinct from the register-pair / [2 x i64] / HFA paths the
|
|
// small-struct baseline (ffi-02) covers. The two relevant emit_llvm
|
|
// helpers are `needsByval` (returns true when size > 16) and
|
|
// `materializeByvalArg` (alloca + store + pass pointer).
|
|
//
|
|
// Big24 — 24 B, three i64
|
|
// Big48 — 48 B, six i64
|
|
|
|
#import "modules/std.sx";
|
|
|
|
#import c {
|
|
#source "1211-ffi-03-large-struct.c";
|
|
};
|
|
|
|
Big24 :: struct { a: i64; b: i64; c: i64; }
|
|
Big48 :: struct {
|
|
a: i64; b: i64; c: i64;
|
|
d: i64; e: i64; f: i64;
|
|
}
|
|
|
|
ffi_big24_make :: (a: i64, b: i64, c: i64) -> Big24 #foreign;
|
|
ffi_big24_rotate :: (v: Big24) -> Big24 #foreign;
|
|
ffi_big24_sum :: (v: Big24) -> i64 #foreign;
|
|
|
|
ffi_big48_make :: (a: i64, b: i64, c: i64,
|
|
d: i64, e: i64, f: i64) -> Big48 #foreign;
|
|
ffi_big48_reverse :: (v: Big48) -> Big48 #foreign;
|
|
ffi_big48_sum :: (v: Big48) -> i64 #foreign;
|
|
|
|
main :: () -> i32 {
|
|
// ── Big24 (24 bytes, byval pointer) ────────────────────────────
|
|
v := ffi_big24_make(1, 2, 3);
|
|
print("big24 make = ({}, {}, {})\n", v.a, v.b, v.c);
|
|
w := ffi_big24_rotate(v);
|
|
print("big24 rotate = ({}, {}, {})\n", w.a, w.b, w.c);
|
|
print("big24 sum = {}\n", ffi_big24_sum(v));
|
|
|
|
// ── Big48 (48 bytes, byval pointer) ────────────────────────────
|
|
x := ffi_big48_make(10, 20, 30, 40, 50, 60);
|
|
print("big48 make = ({}, {}, {}, {}, {}, {})\n", x.a, x.b, x.c, x.d, x.e, x.f);
|
|
y := ffi_big48_reverse(x);
|
|
print("big48 reverse = ({}, {}, {}, {}, {}, {})\n", y.a, y.b, y.c, y.d, y.e, y.f);
|
|
print("big48 sum = {}\n", ffi_big48_sum(x));
|
|
|
|
0
|
|
}
|