refactor(ffi-linkage): Phase 7.1 — migrate incidental 12xx ffi examples #foreign→extern
12 plain-C examples that use #foreign incidentally (as FFI plumbing, output unchanged): 1200/1206/1209-1215/1220/1221/1222. Blanket keyword swap; all fn/global markers (no class forms in 12xx). Empty snapshot diff; corpus validates directly (all marker'd). Suite green (647 corpus / 444 unit, 0 failed). KEPT on #foreign (deferred to Phase 8 cutover): identity-#foreign feature tests (filename ffi-foreign-*: 1205/1207/1216/1218/1219), the equivalence test 1228, and the diagnostics that assert on #foreign source/message (1172/1174/1620). Comment-only provenance prose (1223/1229/1230/1231) left intact per Decision-6-recommended.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// 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
|
||||
// by value into a C `extern` 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
|
||||
@@ -25,14 +25,14 @@ Big48 :: struct {
|
||||
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_big24_make :: (a: i64, b: i64, c: i64) -> Big24 extern;
|
||||
ffi_big24_rotate :: (v: Big24) -> Big24 extern;
|
||||
ffi_big24_sum :: (v: Big24) -> i64 extern;
|
||||
|
||||
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;
|
||||
d: i64, e: i64, f: i64) -> Big48 extern;
|
||||
ffi_big48_reverse :: (v: Big48) -> Big48 extern;
|
||||
ffi_big48_sum :: (v: Big48) -> i64 extern;
|
||||
|
||||
main :: () -> i32 {
|
||||
// ── Big24 (24 bytes, byval pointer) ────────────────────────────
|
||||
|
||||
Reference in New Issue
Block a user