Files
sx/examples/0602-comptime-interp-cast-ptr-cmp.sx
agra 2060373c16 comptime VM arc: abi(.compiler) ABI, out as sx fn, VM-native diagnostics, BuildConfig threaded
Lands the full VM/compiler-API arc on branch reify (701/0 both gates):
- abi(.compiler) ABI replaces abi(.zig) extern compiler + the fake
  #library "compiler"; bodiless decl = compiler-API surface, bodied =
  user compiler-domain fn (lowered for VM eval, emit-skipped).
- out is a plain sx fn (libc write) — the out builtin deleted; the VM
  handles it via host-FFI. trace_resolve + interp_print_frames ported.
- 4B VM-native diagnostics: 1179/1180 render proper comptime type
  construction failed: under strict.
- S5a: build_options/set_post_link_callback on abi(.compiler) with
  BuildConfig threaded into the VM (green intermediate).
- 0522 fixed (describe(args: []Type)); regression 0638.

Strict deletion-gate down to 4 compiler_call bails (1609/1614/1615/1616)
+ 1654 (legitimate unresolvable-symbol diagnostic).
2026-06-19 07:04:10 +03:00

36 lines
1.0 KiB
Plaintext

// `cast(T) val` inside a conditional, evaluated by the IR interpreter
// during a post-link callback. The `cast` syntax lowers the type arg
// (`i64`) as a `placeholder` IR op; the interpreter treats placeholders
// as undef so the comparison runs through unchanged.
#import "modules/std.sx";
#import "modules/build.sx";
libc :: #library "c";
popen :: (cmd: [:0]u8, mode: [:0]u8) -> *void extern libc;
puts :: (s: [:0]u8) -> i32 extern libc;
R :: struct { x: i32; }
bug :: (cmd: [:0]u8) -> ?R {
f := popen(cmd, "r");
if cast(i64) f == 0 { return null; }
R.{ x = 1 }
}
post_link :: () -> bool {
if r := bug("echo hi") { puts("ok"); } else { puts("null"); }
true
}
// The registrar is itself compiler-domain (`abi(.compiler)`): it runs in the
// comptime evaluator (never the binary), so its `build_options()` /
// `set_post_link_callback()` compiler-API calls are permitted.
configure :: () abi(.compiler) {
opts := build_options();
opts.set_post_link_callback(post_link);
}
#run configure();
main :: () { print("rt\n"); }