Sema: handle inferred error set tail call

When Sema sees a store_node instruction, it now checks for
the possibility of this pattern:
  %a = ret_ptr
  %b = store(%a, %c)
Where %c is an error union. In such case we need to add to the
current function's inferred error set, if any.

Coercion from error union to error union will be handled ideally if the
operand is comptime known. In such case it does the appropriate
unwrapping, then wraps again.

In the future, coercion from error union to error union should do the
same thing for a runtime value; emitting a runtime branch to check if
the value is an error or not.

`Value.arrayLen` for structs returns the number of fields. This is so
that Liveness can use it for the `vector_init` instruction (soon to be
renamed to `aggregate_init`).
This commit is contained in:
Andrew Kelley
2022-02-09 00:10:53 -07:00
parent f4fa32a632
commit 97019bc56d
4 changed files with 73 additions and 22 deletions

View File

@@ -3547,7 +3547,7 @@ pub fn semaFile(mod: *Module, file: *File) SemaError!void {
.code = file.zir,
.owner_decl = new_decl,
.func = null,
.fn_ret_ty = Type.initTag(.void),
.fn_ret_ty = Type.void,
.owner_func = null,
};
defer sema.deinit();
@@ -3628,7 +3628,7 @@ fn semaDecl(mod: *Module, decl: *Decl) !bool {
.code = zir,
.owner_decl = decl,
.func = null,
.fn_ret_ty = Type.initTag(.void),
.fn_ret_ty = Type.void,
.owner_func = null,
};
defer sema.deinit();