stage2: implement @setRuntimeSafety

This commit is contained in:
Jacob G-W
2021-06-23 14:32:21 -04:00
committed by Veikka Tuominen
parent 4adcd560ce
commit 2d2a6ed1a4
2 changed files with 11 additions and 4 deletions

View File

@@ -1151,6 +1151,9 @@ pub const Scope = struct {
is_comptime: bool,
/// when null, it is determined by build mode, changed by @setRuntimeSafety
want_safety: ?bool = null,
/// This `Block` maps a block ZIR instruction to the corresponding
/// AIR instruction for break instruction analysis.
pub const Label = struct {
@@ -1195,12 +1198,12 @@ pub const Scope = struct {
.runtime_cond = parent.runtime_cond,
.runtime_loop = parent.runtime_loop,
.runtime_index = parent.runtime_index,
.want_safety = parent.want_safety,
};
}
pub fn wantSafety(block: *const Block) bool {
// TODO take into account scope's safety overrides
return switch (block.sema.mod.optimizeMode()) {
return block.want_safety orelse switch (block.sema.mod.optimizeMode()) {
.Debug => true,
.ReleaseSafe => true,
.ReleaseFast => false,