Skip to content

Commit aa96f54

Browse files
committed
build: remove the option to omit stage2
1 parent df507ed commit aa96f54

File tree

6 files changed

+7
-52
lines changed

6 files changed

+7
-52
lines changed

build.zig

+5-9
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ pub fn build(b: *Builder) !void {
6565
const only_install_lib_files = b.option(bool, "lib-files-only", "Only install library files") orelse false;
6666

6767
const is_stage1 = b.option(bool, "stage1", "Build the stage1 compiler, put stage2 behind a feature flag") orelse false;
68-
const omit_stage2 = b.option(bool, "omit-stage2", "Do not include stage2 behind a feature flag inside stage1") orelse false;
6968
const static_llvm = b.option(bool, "static-llvm", "Disable integration with system-installed LLVM, Clang, LLD, and libc++") orelse false;
7069
const enable_llvm = b.option(bool, "enable-llvm", "Build self-hosted compiler with LLVM backend enabled") orelse (is_stage1 or static_llvm);
7170
const llvm_has_m68k = b.option(
@@ -361,7 +360,6 @@ pub fn build(b: *Builder) !void {
361360
exe_options.addOption(bool, "enable_tracy_allocation", tracy_allocation);
362361
exe_options.addOption(bool, "value_tracing", value_tracing);
363362
exe_options.addOption(bool, "is_stage1", is_stage1);
364-
exe_options.addOption(bool, "omit_stage2", omit_stage2);
365363
if (tracy) |tracy_path| {
366364
const client_cpp = fs.path.join(
367365
b.allocator,
@@ -397,7 +395,6 @@ pub fn build(b: *Builder) !void {
397395
test_cases_options.addOption(bool, "skip_non_native", skip_non_native);
398396
test_cases_options.addOption(bool, "skip_stage1", skip_stage1);
399397
test_cases_options.addOption(bool, "is_stage1", is_stage1);
400-
test_cases_options.addOption(bool, "omit_stage2", omit_stage2);
401398
test_cases_options.addOption(bool, "have_llvm", enable_llvm);
402399
test_cases_options.addOption(bool, "llvm_has_m68k", llvm_has_m68k);
403400
test_cases_options.addOption(bool, "llvm_has_csky", llvm_has_csky);
@@ -457,7 +454,7 @@ pub fn build(b: *Builder) !void {
457454
skip_non_native,
458455
skip_libc,
459456
skip_stage1,
460-
omit_stage2,
457+
false,
461458
is_stage1,
462459
));
463460

@@ -472,7 +469,7 @@ pub fn build(b: *Builder) !void {
472469
skip_non_native,
473470
true, // skip_libc
474471
skip_stage1,
475-
omit_stage2 or true, // TODO get these all passing
472+
true, // TODO get these all passing
476473
is_stage1,
477474
));
478475

@@ -487,7 +484,7 @@ pub fn build(b: *Builder) !void {
487484
skip_non_native,
488485
true, // skip_libc
489486
skip_stage1,
490-
omit_stage2 or true, // TODO get these all passing
487+
true, // TODO get these all passing
491488
is_stage1,
492489
));
493490

@@ -499,14 +496,13 @@ pub fn build(b: *Builder) !void {
499496
skip_non_native,
500497
enable_macos_sdk,
501498
target,
502-
omit_stage2,
503499
b.enable_darling,
504500
b.enable_qemu,
505501
b.enable_rosetta,
506502
b.enable_wasmtime,
507503
b.enable_wine,
508504
));
509-
toolchain_step.dependOn(tests.addLinkTests(b, test_filter, modes, enable_macos_sdk, omit_stage2));
505+
toolchain_step.dependOn(tests.addLinkTests(b, test_filter, modes, enable_macos_sdk));
510506
toolchain_step.dependOn(tests.addStackTraceTests(b, test_filter, modes));
511507
toolchain_step.dependOn(tests.addCliTests(b, test_filter, modes));
512508
toolchain_step.dependOn(tests.addAssembleAndLinkTests(b, test_filter, modes));
@@ -528,7 +524,7 @@ pub fn build(b: *Builder) !void {
528524
skip_non_native,
529525
skip_libc,
530526
skip_stage1,
531-
omit_stage2 or true, // TODO get these all passing
527+
true, // TODO get these all passing
532528
is_stage1,
533529
);
534530

ci/azure/build.zig

-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ pub fn build(b: *Builder) !void {
3838
docs_step.dependOn(&docgen_cmd.step);
3939

4040
const is_stage1 = b.option(bool, "stage1", "Build the stage1 compiler, put stage2 behind a feature flag") orelse false;
41-
const omit_stage2 = b.option(bool, "omit-stage2", "Do not include stage2 behind a feature flag inside stage1") orelse false;
4241
const static_llvm = b.option(bool, "static-llvm", "Disable integration with system-installed LLVM, Clang, LLD, and libc++") orelse false;
4342
const enable_llvm = b.option(bool, "enable-llvm", "Build self-hosted compiler with LLVM backend enabled") orelse (is_stage1 or static_llvm);
4443
const llvm_has_m68k = b.option(
@@ -300,7 +299,6 @@ pub fn build(b: *Builder) !void {
300299
exe_options.addOption(bool, "enable_tracy_allocation", tracy_allocation);
301300
exe_options.addOption(bool, "value_tracing", value_tracing);
302301
exe_options.addOption(bool, "is_stage1", is_stage1);
303-
exe_options.addOption(bool, "omit_stage2", omit_stage2);
304302
if (tracy) |tracy_path| {
305303
const client_cpp = fs.path.join(
306304
b.allocator,

src/Compilation.zig

+2-27
Original file line numberDiff line numberDiff line change
@@ -1033,8 +1033,6 @@ pub fn create(gpa: Allocator, options: InitOptions) !*Compilation {
10331033
// Even though we may have no Zig code to compile (depending on `options.main_pkg`),
10341034
// we may need to use stage1 for building compiler-rt and other dependencies.
10351035

1036-
if (build_options.omit_stage2)
1037-
break :blk true;
10381036
if (options.use_llvm) |use_llvm| {
10391037
if (!use_llvm) {
10401038
break :blk false;
@@ -2180,8 +2178,7 @@ pub fn update(comp: *Compilation) !void {
21802178
comp.c_object_work_queue.writeItemAssumeCapacity(key);
21812179
}
21822180

2183-
const use_stage1 = build_options.omit_stage2 or
2184-
(build_options.is_stage1 and comp.bin_file.options.use_stage1);
2181+
const use_stage1 = build_options.is_stage1 and comp.bin_file.options.use_stage1;
21852182
if (comp.bin_file.options.module) |module| {
21862183
module.compile_log_text.shrinkAndFree(module.gpa, 0);
21872184
module.generation += 1;
@@ -2357,8 +2354,7 @@ fn flush(comp: *Compilation, prog_node: *std.Progress.Node) !void {
23572354
};
23582355
comp.link_error_flags = comp.bin_file.errorFlags();
23592356

2360-
const use_stage1 = build_options.omit_stage2 or
2361-
(build_options.is_stage1 and comp.bin_file.options.use_stage1);
2357+
const use_stage1 = build_options.is_stage1 and comp.bin_file.options.use_stage1;
23622358
if (!use_stage1) {
23632359
if (comp.bin_file.options.module) |module| {
23642360
try link.File.C.flushEmitH(module);
@@ -2919,9 +2915,6 @@ pub fn performAllTheWork(
29192915
fn processOneJob(comp: *Compilation, job: Job) !void {
29202916
switch (job) {
29212917
.codegen_decl => |decl_index| {
2922-
if (build_options.omit_stage2)
2923-
@panic("sadly stage2 is omitted from this build to save memory on the CI server");
2924-
29252918
const module = comp.bin_file.options.module.?;
29262919
const decl = module.declPtr(decl_index);
29272920

@@ -2956,9 +2949,6 @@ fn processOneJob(comp: *Compilation, job: Job) !void {
29562949
}
29572950
},
29582951
.codegen_func => |func| {
2959-
if (build_options.omit_stage2)
2960-
@panic("sadly stage2 is omitted from this build to save memory on the CI server");
2961-
29622952
const named_frame = tracy.namedFrame("codegen_func");
29632953
defer named_frame.end();
29642954

@@ -2969,9 +2959,6 @@ fn processOneJob(comp: *Compilation, job: Job) !void {
29692959
};
29702960
},
29712961
.emit_h_decl => |decl_index| {
2972-
if (build_options.omit_stage2)
2973-
@panic("sadly stage2 is omitted from this build to save memory on the CI server");
2974-
29752962
const module = comp.bin_file.options.module.?;
29762963
const decl = module.declPtr(decl_index);
29772964

@@ -3030,19 +3017,13 @@ fn processOneJob(comp: *Compilation, job: Job) !void {
30303017
}
30313018
},
30323019
.analyze_decl => |decl_index| {
3033-
if (build_options.omit_stage2)
3034-
@panic("sadly stage2 is omitted from this build to save memory on the CI server");
3035-
30363020
const module = comp.bin_file.options.module.?;
30373021
module.ensureDeclAnalyzed(decl_index) catch |err| switch (err) {
30383022
error.OutOfMemory => return error.OutOfMemory,
30393023
error.AnalysisFail => return,
30403024
};
30413025
},
30423026
.update_embed_file => |embed_file| {
3043-
if (build_options.omit_stage2)
3044-
@panic("sadly stage2 is omitted from this build to save memory on the CI server");
3045-
30463027
const named_frame = tracy.namedFrame("update_embed_file");
30473028
defer named_frame.end();
30483029

@@ -3053,9 +3034,6 @@ fn processOneJob(comp: *Compilation, job: Job) !void {
30533034
};
30543035
},
30553036
.update_line_number => |decl_index| {
3056-
if (build_options.omit_stage2)
3057-
@panic("sadly stage2 is omitted from this build to save memory on the CI server");
3058-
30593037
const named_frame = tracy.namedFrame("update_line_number");
30603038
defer named_frame.end();
30613039

@@ -3074,9 +3052,6 @@ fn processOneJob(comp: *Compilation, job: Job) !void {
30743052
};
30753053
},
30763054
.analyze_pkg => |pkg| {
3077-
if (build_options.omit_stage2)
3078-
@panic("sadly stage2 is omitted from this build to save memory on the CI server");
3079-
30803055
const named_frame = tracy.namedFrame("analyze_pkg");
30813056
defer named_frame.end();
30823057

src/Sema.zig

-7
Original file line numberDiff line numberDiff line change
@@ -27223,9 +27223,6 @@ pub fn resolveTypeLayout(
2722327223
src: LazySrcLoc,
2722427224
ty: Type,
2722527225
) CompileError!void {
27226-
if (build_options.omit_stage2)
27227-
@panic("sadly stage2 is omitted from this build to save memory on the CI server");
27228-
2722927226
switch (ty.zigTypeTag()) {
2723027227
.Struct => return sema.resolveStructLayout(block, src, ty),
2723127228
.Union => return sema.resolveUnionLayout(block, src, ty),
@@ -27564,8 +27561,6 @@ fn resolveUnionFully(
2756427561
}
2756527562

2756627563
pub fn resolveTypeFields(sema: *Sema, block: *Block, src: LazySrcLoc, ty: Type) CompileError!Type {
27567-
if (build_options.omit_stage2)
27568-
@panic("sadly stage2 is omitted from this build to save memory on the CI server");
2756927564
switch (ty.tag()) {
2757027565
.@"struct" => {
2757127566
const struct_obj = ty.castTag(.@"struct").?.data;
@@ -29164,8 +29159,6 @@ fn typePtrOrOptionalPtrTy(
2916429159
/// TODO merge these implementations together with the "advanced"/sema_kit pattern seen
2916529160
/// elsewhere in value.zig
2916629161
pub fn typeRequiresComptime(sema: *Sema, block: *Block, src: LazySrcLoc, ty: Type) CompileError!bool {
29167-
if (build_options.omit_stage2)
29168-
@panic("sadly stage2 is omitted from this build to save memory on the CI server");
2916929162
return switch (ty.tag()) {
2917029163
.u1,
2917129164
.u8,

src/config.zig.in

-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ pub const enable_tracy = false;
1010
pub const value_tracing = false;
1111
pub const is_stage1 = true;
1212
pub const skip_non_native = false;
13-
pub const omit_stage2: bool = @ZIG_OMIT_STAGE2_BOOL@;

test/tests.zig

-6
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,6 @@ pub fn addStandaloneTests(
462462
skip_non_native: bool,
463463
enable_macos_sdk: bool,
464464
target: std.zig.CrossTarget,
465-
omit_stage2: bool,
466465
enable_darling: bool,
467466
enable_qemu: bool,
468467
enable_rosetta: bool,
@@ -479,7 +478,6 @@ pub fn addStandaloneTests(
479478
.skip_non_native = skip_non_native,
480479
.enable_macos_sdk = enable_macos_sdk,
481480
.target = target,
482-
.omit_stage2 = omit_stage2,
483481
.enable_darling = enable_darling,
484482
.enable_qemu = enable_qemu,
485483
.enable_rosetta = enable_rosetta,
@@ -497,7 +495,6 @@ pub fn addLinkTests(
497495
test_filter: ?[]const u8,
498496
modes: []const Mode,
499497
enable_macos_sdk: bool,
500-
omit_stage2: bool,
501498
) *build.Step {
502499
const cases = b.allocator.create(StandaloneContext) catch unreachable;
503500
cases.* = StandaloneContext{
@@ -509,7 +506,6 @@ pub fn addLinkTests(
509506
.skip_non_native = true,
510507
.enable_macos_sdk = enable_macos_sdk,
511508
.target = .{},
512-
.omit_stage2 = omit_stage2,
513509
};
514510
link.addCases(cases);
515511
return cases.step;
@@ -978,7 +974,6 @@ pub const StandaloneContext = struct {
978974
skip_non_native: bool,
979975
enable_macos_sdk: bool,
980976
target: std.zig.CrossTarget,
981-
omit_stage2: bool,
982977
enable_darling: bool = false,
983978
enable_qemu: bool = false,
984979
enable_rosetta: bool = false,
@@ -1003,7 +998,6 @@ pub const StandaloneContext = struct {
1003998
const b = self.b;
1004999

10051000
if (features.requires_macos_sdk and !self.enable_macos_sdk) return;
1006-
if (features.requires_stage2 and self.omit_stage2) return;
10071001

10081002
const annotated_case_name = b.fmt("build {s}", .{build_file});
10091003
if (self.test_filter) |filter| {

0 commit comments

Comments
 (0)