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).
24 lines
819 B
Plaintext
24 lines
819 B
Plaintext
// Comptime compiler API — welded compiler FUNCTIONS over the host-call bridge.
|
|
//
|
|
// `intern` / `text_of` are bound to the `compiler` library via
|
|
// `abi(.compiler)`. They have no real symbol — under the comptime
|
|
// interpreter the call dispatches to the compiler's registered Zig handler
|
|
// (the string pool), never dlsym. Comptime-only: here they run inside `#run`,
|
|
// folding to a plain string constant the runtime `main` prints.
|
|
//
|
|
// Round-trip: `text_of(intern(s)) == s` — interning a string yields a handle,
|
|
// and resolving the handle gives the text back.
|
|
|
|
#import "modules/std.sx";
|
|
|
|
|
|
StringId :: u32;
|
|
intern :: (s: string) -> StringId abi(.compiler);
|
|
text_of :: (id: StringId) -> string abi(.compiler);
|
|
|
|
greeting :: #run text_of(intern("hello, compiler"));
|
|
|
|
main :: () {
|
|
print("{}\n", greeting);
|
|
}
|