stage2: rework AIR memory layout

This commit changes the AIR file and the documentation of the memory
layout. The actual work of modifying the surrounding code (in Sema and
codegen) is not yet done.
This commit is contained in:
Andrew Kelley
2021-07-08 20:42:47 -07:00
parent bfe2005167
commit 5d6f7b44c1
15 changed files with 392 additions and 521 deletions

View File

@@ -21,7 +21,7 @@ const Type = @import("type.zig").Type;
const TypedValue = @import("TypedValue.zig");
const Package = @import("Package.zig");
const link = @import("link.zig");
const ir = @import("air.zig");
const Air = @import("Air.zig");
const Zir = @import("Zir.zig");
const trace = @import("tracy.zig").trace;
const AstGen = @import("AstGen.zig");