remove async and await keywords

Also remove `@frameSize`, closing #3654.

While the other machinery might remain depending on #23446, it is
settled that there will not be `async`/ `await` keywords in the
language.
This commit is contained in:
Andrew Kelley 2025-07-07 11:22:28 -07:00
parent 31e46be743
commit 40d11cc25a
48 changed files with 24 additions and 2913 deletions

View file

@ -4279,16 +4279,9 @@ pub fn print(self: *Writer, arg0: []const u8, arg1: i32) !void {
{#header_close#} {#header_close#}
{#header_open|Async Functions#} {#header_open|Async Functions#}
<p>Async functions regressed with the release of 0.11.0. Their future in <p>Async functions regressed with the release of 0.11.0. The current plan is to
the Zig language is unclear due to multiple unsolved problems:</p> reintroduce them as a lower level primitive that powers I/O implementations.</p>
<ul> <p>Tracking issue: <a href="https://github.com/ziglang/zig/issues/23446">Proposal: stackless coroutines as low-level primitives</a></p>
<li>LLVM's lack of ability to optimize them.</li>
<li>Third-party debuggers' lack of ability to debug them.</li>
<li><a href="https://github.com/ziglang/zig/issues/5913">The cancellation problem</a>.</li>
<li>Async function pointers preventing the stack size from being known.</li>
</ul>
<p>These problems are surmountable, but it will take time. The Zig team
is currently focused on other priorities.</p>
{#header_close#} {#header_close#}
{#header_open|Builtin Functions|2col#} {#header_open|Builtin Functions|2col#}
@ -7372,29 +7365,6 @@ fn readU32Be() u32 {}
</ul> </ul>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">
<pre>{#syntax#}async{#endsyntax#}</pre>
</th>
<td>
{#syntax#}async{#endsyntax#} can be used before a function call to get a pointer to the function's frame when it suspends.
<ul>
<li>See also {#link|Async Functions#}</li>
</ul>
</td>
</tr>
<tr>
<th scope="row">
<pre>{#syntax#}await{#endsyntax#}</pre>
</th>
<td>
{#syntax#}await{#endsyntax#} can be used to suspend the current function until the frame provided after the {#syntax#}await{#endsyntax#} completes.
{#syntax#}await{#endsyntax#} copies the value returned from the target function's frame to the caller.
<ul>
<li>See also {#link|Async Functions#}</li>
</ul>
</td>
</tr>
<tr> <tr>
<th scope="row"> <th scope="row">
<pre>{#syntax#}break{#endsyntax#}</pre> <pre>{#syntax#}break{#endsyntax#}</pre>
@ -8006,8 +7976,7 @@ TypeExpr <- PrefixTypeOp* ErrorUnionExpr
ErrorUnionExpr <- SuffixExpr (EXCLAMATIONMARK TypeExpr)? ErrorUnionExpr <- SuffixExpr (EXCLAMATIONMARK TypeExpr)?
SuffixExpr SuffixExpr
<- KEYWORD_async PrimaryTypeExpr SuffixOp* FnCallArguments <- PrimaryTypeExpr (SuffixOp / FnCallArguments)*
/ PrimaryTypeExpr (SuffixOp / FnCallArguments)*
PrimaryTypeExpr PrimaryTypeExpr
<- BUILTINIDENTIFIER FnCallArguments <- BUILTINIDENTIFIER FnCallArguments
@ -8183,7 +8152,6 @@ PrefixOp
/ MINUSPERCENT / MINUSPERCENT
/ AMPERSAND / AMPERSAND
/ KEYWORD_try / KEYWORD_try
/ KEYWORD_await
PrefixTypeOp PrefixTypeOp
<- QUESTIONMARK <- QUESTIONMARK
@ -8404,8 +8372,6 @@ KEYWORD_and <- 'and' end_of_word
KEYWORD_anyframe <- 'anyframe' end_of_word KEYWORD_anyframe <- 'anyframe' end_of_word
KEYWORD_anytype <- 'anytype' end_of_word KEYWORD_anytype <- 'anytype' end_of_word
KEYWORD_asm <- 'asm' end_of_word KEYWORD_asm <- 'asm' end_of_word
KEYWORD_async <- 'async' end_of_word
KEYWORD_await <- 'await' end_of_word
KEYWORD_break <- 'break' end_of_word KEYWORD_break <- 'break' end_of_word
KEYWORD_callconv <- 'callconv' end_of_word KEYWORD_callconv <- 'callconv' end_of_word
KEYWORD_catch <- 'catch' end_of_word KEYWORD_catch <- 'catch' end_of_word
@ -8448,8 +8414,8 @@ KEYWORD_volatile <- 'volatile' end_of_word
KEYWORD_while <- 'while' end_of_word KEYWORD_while <- 'while' end_of_word
keyword <- KEYWORD_addrspace / KEYWORD_align / KEYWORD_allowzero / KEYWORD_and keyword <- KEYWORD_addrspace / KEYWORD_align / KEYWORD_allowzero / KEYWORD_and
/ KEYWORD_anyframe / KEYWORD_anytype / KEYWORD_asm / KEYWORD_async / KEYWORD_anyframe / KEYWORD_anytype / KEYWORD_asm
/ KEYWORD_await / KEYWORD_break / KEYWORD_callconv / KEYWORD_catch / KEYWORD_break / KEYWORD_callconv / KEYWORD_catch
/ KEYWORD_comptime / KEYWORD_const / KEYWORD_continue / KEYWORD_defer / KEYWORD_comptime / KEYWORD_const / KEYWORD_continue / KEYWORD_defer
/ KEYWORD_else / KEYWORD_enum / KEYWORD_errdefer / KEYWORD_error / KEYWORD_export / KEYWORD_else / KEYWORD_enum / KEYWORD_errdefer / KEYWORD_error / KEYWORD_export
/ KEYWORD_extern / KEYWORD_fn / KEYWORD_for / KEYWORD_if / KEYWORD_extern / KEYWORD_fn / KEYWORD_for / KEYWORD_if

View file

@ -335,7 +335,6 @@ fn walkExpression(w: *Walk, node: Ast.Node.Index) Error!void {
.address_of, .address_of,
.@"try", .@"try",
.@"resume", .@"resume",
.@"await",
.deref, .deref,
=> { => {
return walkExpression(w, ast.nodeData(node).node); return walkExpression(w, ast.nodeData(node).node);
@ -379,12 +378,8 @@ fn walkExpression(w: *Walk, node: Ast.Node.Index) Error!void {
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
=> { => {
var buf: [1]Ast.Node.Index = undefined; var buf: [1]Ast.Node.Index = undefined;
return walkCall(w, ast.fullCall(&buf, node).?); return walkCall(w, ast.fullCall(&buf, node).?);

View file

@ -238,12 +238,8 @@ pub const File = struct {
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
=> { => {
var buf: [1]Ast.Node.Index = undefined; var buf: [1]Ast.Node.Index = undefined;
return categorize_call(file_index, node, ast.fullCall(&buf, node).?); return categorize_call(file_index, node, ast.fullCall(&buf, node).?);
@ -743,7 +739,6 @@ fn expr(w: *Walk, scope: *Scope, parent_decl: Decl.Index, node: Ast.Node.Index)
.@"comptime", .@"comptime",
.@"nosuspend", .@"nosuspend",
.@"suspend", .@"suspend",
.@"await",
.@"resume", .@"resume",
.@"try", .@"try",
=> try expr(w, scope, parent_decl, ast.nodeData(node).node), => try expr(w, scope, parent_decl, ast.nodeData(node).node),
@ -806,12 +801,8 @@ fn expr(w: *Walk, scope: *Scope, parent_decl: Decl.Index, node: Ast.Node.Index)
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
=> { => {
var buf: [1]Ast.Node.Index = undefined; var buf: [1]Ast.Node.Index = undefined;
const full = ast.fullCall(&buf, node).?; const full = ast.fullCall(&buf, node).?;

View file

@ -101,8 +101,6 @@ pub fn fileSourceHtml(
.keyword_align, .keyword_align,
.keyword_and, .keyword_and,
.keyword_asm, .keyword_asm,
.keyword_async,
.keyword_await,
.keyword_break, .keyword_break,
.keyword_catch, .keyword_catch,
.keyword_comptime, .keyword_comptime,

View file

@ -199,8 +199,6 @@ pub const CallingConvention = union(enum(u8)) {
pub const C: CallingConvention = .c; pub const C: CallingConvention = .c;
/// Deprecated; use `.naked`. /// Deprecated; use `.naked`.
pub const Naked: CallingConvention = .naked; pub const Naked: CallingConvention = .naked;
/// Deprecated; use `.@"async"`.
pub const Async: CallingConvention = .@"async";
/// Deprecated; use `.@"inline"`. /// Deprecated; use `.@"inline"`.
pub const Inline: CallingConvention = .@"inline"; pub const Inline: CallingConvention = .@"inline";
/// Deprecated; use `.x86_64_interrupt`, `.x86_interrupt`, or `.avr_interrupt`. /// Deprecated; use `.x86_64_interrupt`, `.x86_interrupt`, or `.avr_interrupt`.
@ -866,32 +864,23 @@ pub const WasiExecModel = enum {
pub const CallModifier = enum { pub const CallModifier = enum {
/// Equivalent to function call syntax. /// Equivalent to function call syntax.
auto, auto,
/// Equivalent to async keyword used with function call syntax.
async_kw,
/// Prevents tail call optimization. This guarantees that the return /// Prevents tail call optimization. This guarantees that the return
/// address will point to the callsite, as opposed to the callsite's /// address will point to the callsite, as opposed to the callsite's
/// callsite. If the call is otherwise required to be tail-called /// callsite. If the call is otherwise required to be tail-called
/// or inlined, a compile error is emitted instead. /// or inlined, a compile error is emitted instead.
never_tail, never_tail,
/// Guarantees that the call will not be inlined. If the call is /// Guarantees that the call will not be inlined. If the call is
/// otherwise required to be inlined, a compile error is emitted instead. /// otherwise required to be inlined, a compile error is emitted instead.
never_inline, never_inline,
/// Asserts that the function call will not suspend. This allows a /// Asserts that the function call will not suspend. This allows a
/// non-async function to call an async function. /// non-async function to call an async function.
no_async, no_suspend,
/// Guarantees that the call will be generated with tail call optimization. /// Guarantees that the call will be generated with tail call optimization.
/// If this is not possible, a compile error is emitted instead. /// If this is not possible, a compile error is emitted instead.
always_tail, always_tail,
/// Guarantees that the call will be inlined at the callsite. /// Guarantees that the call will be inlined at the callsite.
/// If this is not possible, a compile error is emitted instead. /// If this is not possible, a compile error is emitted instead.
always_inline, always_inline,
/// Evaluates the call at compile-time. If the call cannot be completed at /// Evaluates the call at compile-time. If the call cannot be completed at
/// compile-time, a compile error is emitted instead. /// compile-time, a compile error is emitted instead.
compile_time, compile_time,

View file

@ -606,7 +606,6 @@ pub fn firstToken(tree: Ast, node: Node.Index) TokenIndex {
.negation_wrap, .negation_wrap,
.address_of, .address_of,
.@"try", .@"try",
.@"await",
.optional_type, .optional_type,
.@"switch", .@"switch",
.switch_comma, .switch_comma,
@ -763,20 +762,6 @@ pub fn firstToken(tree: Ast, node: Node.Index) TokenIndex {
return main_token - end_offset; return main_token - end_offset;
}, },
.async_call_one,
.async_call_one_comma,
=> {
end_offset += 1; // async token
n = tree.nodeData(n).node_and_opt_node[0];
},
.async_call,
.async_call_comma,
=> {
end_offset += 1; // async token
n = tree.nodeData(n).node_and_extra[0];
},
.container_field_init, .container_field_init,
.container_field_align, .container_field_align,
.container_field, .container_field,
@ -903,7 +888,6 @@ pub fn lastToken(tree: Ast, node: Node.Index) TokenIndex {
.negation_wrap, .negation_wrap,
.address_of, .address_of,
.@"try", .@"try",
.@"await",
.optional_type, .optional_type,
.@"suspend", .@"suspend",
.@"resume", .@"resume",
@ -1022,7 +1006,7 @@ pub fn lastToken(tree: Ast, node: Node.Index) TokenIndex {
}; };
}, },
.call, .async_call => { .call => {
_, const extra_index = tree.nodeData(n).node_and_extra; _, const extra_index = tree.nodeData(n).node_and_extra;
const params = tree.extraData(extra_index, Node.SubRange); const params = tree.extraData(extra_index, Node.SubRange);
assert(params.start != params.end); assert(params.start != params.end);
@ -1041,7 +1025,6 @@ pub fn lastToken(tree: Ast, node: Node.Index) TokenIndex {
} }
}, },
.call_comma, .call_comma,
.async_call_comma,
.tagged_union_enum_tag_trailing, .tagged_union_enum_tag_trailing,
=> { => {
_, const extra_index = tree.nodeData(n).node_and_extra; _, const extra_index = tree.nodeData(n).node_and_extra;
@ -1122,7 +1105,6 @@ pub fn lastToken(tree: Ast, node: Node.Index) TokenIndex {
n = @enumFromInt(tree.extra_data[@intFromEnum(range.end) - 1]); // last member n = @enumFromInt(tree.extra_data[@intFromEnum(range.end) - 1]); // last member
}, },
.call_one, .call_one,
.async_call_one,
=> { => {
_, const first_param = tree.nodeData(n).node_and_opt_node; _, const first_param = tree.nodeData(n).node_and_opt_node;
end_offset += 1; // for the rparen end_offset += 1; // for the rparen
@ -1271,7 +1253,6 @@ pub fn lastToken(tree: Ast, node: Node.Index) TokenIndex {
n = first_element; n = first_element;
}, },
.call_one_comma, .call_one_comma,
.async_call_one_comma,
.struct_init_one_comma, .struct_init_one_comma,
=> { => {
_, const first_field = tree.nodeData(n).node_and_opt_node; _, const first_field = tree.nodeData(n).node_and_opt_node;
@ -1988,21 +1969,21 @@ pub fn forFull(tree: Ast, node: Node.Index) full.For {
pub fn callOne(tree: Ast, buffer: *[1]Node.Index, node: Node.Index) full.Call { pub fn callOne(tree: Ast, buffer: *[1]Node.Index, node: Node.Index) full.Call {
const fn_expr, const first_param = tree.nodeData(node).node_and_opt_node; const fn_expr, const first_param = tree.nodeData(node).node_and_opt_node;
const params = loadOptionalNodesIntoBuffer(1, buffer, .{first_param}); const params = loadOptionalNodesIntoBuffer(1, buffer, .{first_param});
return tree.fullCallComponents(.{ return .{ .ast = .{
.lparen = tree.nodeMainToken(node), .lparen = tree.nodeMainToken(node),
.fn_expr = fn_expr, .fn_expr = fn_expr,
.params = params, .params = params,
}); } };
} }
pub fn callFull(tree: Ast, node: Node.Index) full.Call { pub fn callFull(tree: Ast, node: Node.Index) full.Call {
const fn_expr, const extra_index = tree.nodeData(node).node_and_extra; const fn_expr, const extra_index = tree.nodeData(node).node_and_extra;
const params = tree.extraDataSlice(tree.extraData(extra_index, Node.SubRange), Node.Index); const params = tree.extraDataSlice(tree.extraData(extra_index, Node.SubRange), Node.Index);
return tree.fullCallComponents(.{ return .{ .ast = .{
.lparen = tree.nodeMainToken(node), .lparen = tree.nodeMainToken(node),
.fn_expr = fn_expr, .fn_expr = fn_expr,
.params = params, .params = params,
}); } };
} }
fn fullVarDeclComponents(tree: Ast, info: full.VarDecl.Components) full.VarDecl { fn fullVarDeclComponents(tree: Ast, info: full.VarDecl.Components) full.VarDecl {
@ -2336,18 +2317,6 @@ fn fullForComponents(tree: Ast, info: full.For.Components) full.For {
return result; return result;
} }
fn fullCallComponents(tree: Ast, info: full.Call.Components) full.Call {
var result: full.Call = .{
.ast = info,
.async_token = null,
};
const first_token = tree.firstToken(info.fn_expr);
if (tree.isTokenPrecededByTags(first_token, &.{.keyword_async})) {
result.async_token = first_token - 1;
}
return result;
}
pub fn fullVarDecl(tree: Ast, node: Node.Index) ?full.VarDecl { pub fn fullVarDecl(tree: Ast, node: Node.Index) ?full.VarDecl {
return switch (tree.nodeTag(node)) { return switch (tree.nodeTag(node)) {
.global_var_decl => tree.globalVarDecl(node), .global_var_decl => tree.globalVarDecl(node),
@ -2488,8 +2457,8 @@ pub fn fullAsm(tree: Ast, node: Node.Index) ?full.Asm {
pub fn fullCall(tree: Ast, buffer: *[1]Ast.Node.Index, node: Node.Index) ?full.Call { pub fn fullCall(tree: Ast, buffer: *[1]Ast.Node.Index, node: Node.Index) ?full.Call {
return switch (tree.nodeTag(node)) { return switch (tree.nodeTag(node)) {
.call, .call_comma, .async_call, .async_call_comma => tree.callFull(node), .call, .call_comma => tree.callFull(node),
.call_one, .call_one_comma, .async_call_one, .async_call_one_comma => tree.callOne(buffer, node), .call_one, .call_one_comma => tree.callOne(buffer, node),
else => null, else => null,
}; };
} }
@ -2882,7 +2851,6 @@ pub const full = struct {
pub const Call = struct { pub const Call = struct {
ast: Components, ast: Components,
async_token: ?TokenIndex,
pub const Components = struct { pub const Components = struct {
lparen: TokenIndex, lparen: TokenIndex,
@ -3301,8 +3269,6 @@ pub const Node = struct {
address_of, address_of,
/// `try expr`. The `main_token` field is the `try` token. /// `try expr`. The `main_token` field is the `try` token.
@"try", @"try",
/// `await expr`. The `main_token` field is the `await` token.
@"await",
/// `?expr`. The `main_token` field is the `?` token. /// `?expr`. The `main_token` field is the `?` token.
optional_type, optional_type,
/// `[lhs]rhs`. The `main_token` field is the `[` token. /// `[lhs]rhs`. The `main_token` field is the `[` token.
@ -3498,17 +3464,6 @@ pub const Node = struct {
/// Same as `call_one` except there is known to be a trailing comma /// Same as `call_one` except there is known to be a trailing comma
/// before the final rparen. /// before the final rparen.
call_one_comma, call_one_comma,
/// `async a(b)`, `async a()`.
///
/// The `data` field is a `.node_and_opt_node`:
/// 1. a `Node.Index` to the function expression.
/// 2. a `Node.OptionalIndex` to the first argument, if any.
///
/// The `main_token` field is the `(` token.
async_call_one,
/// Same as `async_call_one` except there is known to be a trailing
/// comma before the final rparen.
async_call_one_comma,
/// `a(b, c, d)`. /// `a(b, c, d)`.
/// ///
/// The `data` field is a `.node_and_extra`: /// The `data` field is a `.node_and_extra`:
@ -3521,18 +3476,6 @@ pub const Node = struct {
/// Same as `call` except there is known to be a trailing comma before /// Same as `call` except there is known to be a trailing comma before
/// the final rparen. /// the final rparen.
call_comma, call_comma,
/// `async a(b, c, d)`.
///
/// The `data` field is a `.node_and_extra`:
/// 1. a `Node.Index` to the function expression.
/// 2. a `ExtraIndex` to a `SubRange` that stores a `Node.Index` for
/// each argument.
///
/// The `main_token` field is the `(` token.
async_call,
/// Same as `async_call` except there is known to be a trailing comma
/// before the final rparen.
async_call_comma,
/// `switch(a) {}`. /// `switch(a) {}`.
/// ///
/// The `data` field is a `.node_and_extra`: /// The `data` field is a `.node_and_extra`:

View file

@ -510,12 +510,8 @@ fn lvalExpr(gz: *GenZir, scope: *Scope, node: Ast.Node.Index) InnerError!Zir.Ins
.number_literal, .number_literal,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.unreachable_literal, .unreachable_literal,
.@"return", .@"return",
.@"if", .@"if",
@ -547,7 +543,6 @@ fn lvalExpr(gz: *GenZir, scope: *Scope, node: Ast.Node.Index) InnerError!Zir.Ins
.merge_error_sets, .merge_error_sets,
.switch_range, .switch_range,
.for_range, .for_range,
.@"await",
.bit_not, .bit_not,
.negation, .negation,
.negation_wrap, .negation_wrap,
@ -836,12 +831,8 @@ fn expr(gz: *GenZir, scope: *Scope, ri: ResultInfo, node: Ast.Node.Index) InnerE
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
=> { => {
var buf: [1]Ast.Node.Index = undefined; var buf: [1]Ast.Node.Index = undefined;
return callExpr(gz, scope, ri, .none, node, tree.fullCall(&buf, node).?); return callExpr(gz, scope, ri, .none, node, tree.fullCall(&buf, node).?);
@ -1114,7 +1105,6 @@ fn expr(gz: *GenZir, scope: *Scope, ri: ResultInfo, node: Ast.Node.Index) InnerE
.@"nosuspend" => return nosuspendExpr(gz, scope, ri, node), .@"nosuspend" => return nosuspendExpr(gz, scope, ri, node),
.@"suspend" => return suspendExpr(gz, scope, node), .@"suspend" => return suspendExpr(gz, scope, node),
.@"await" => return awaitExpr(gz, scope, ri, node),
.@"resume" => return resumeExpr(gz, scope, ri, node), .@"resume" => return resumeExpr(gz, scope, ri, node),
.@"try" => return tryExpr(gz, scope, ri, node, tree.nodeData(node).node), .@"try" => return tryExpr(gz, scope, ri, node, tree.nodeData(node).node),
@ -1259,33 +1249,6 @@ fn suspendExpr(
return suspend_inst.toRef(); return suspend_inst.toRef();
} }
fn awaitExpr(
gz: *GenZir,
scope: *Scope,
ri: ResultInfo,
node: Ast.Node.Index,
) InnerError!Zir.Inst.Ref {
const astgen = gz.astgen;
const tree = astgen.tree;
const rhs_node = tree.nodeData(node).node;
if (gz.suspend_node.unwrap()) |suspend_node| {
return astgen.failNodeNotes(node, "cannot await inside suspend block", .{}, &[_]u32{
try astgen.errNoteNode(suspend_node, "suspend block here", .{}),
});
}
const operand = try expr(gz, scope, .{ .rl = .ref }, rhs_node);
const result = if (gz.nosuspend_node != .none)
try gz.addExtendedPayload(.await_nosuspend, Zir.Inst.UnNode{
.node = gz.nodeIndexToRelative(node),
.operand = operand,
})
else
try gz.addUnNode(.@"await", operand, node);
return rvalue(gz, ri, result, node);
}
fn resumeExpr( fn resumeExpr(
gz: *GenZir, gz: *GenZir,
scope: *Scope, scope: *Scope,
@ -2853,7 +2816,6 @@ fn addEnsureResult(gz: *GenZir, maybe_unused_result: Zir.Inst.Ref, statement: As
.tag_name, .tag_name,
.type_name, .type_name,
.frame_type, .frame_type,
.frame_size,
.int_from_float, .int_from_float,
.float_from_int, .float_from_int,
.ptr_from_int, .ptr_from_int,
@ -2887,7 +2849,6 @@ fn addEnsureResult(gz: *GenZir, maybe_unused_result: Zir.Inst.Ref, statement: As
.min, .min,
.c_import, .c_import,
.@"resume", .@"resume",
.@"await",
.ret_err_value_code, .ret_err_value_code,
.ret_ptr, .ret_ptr,
.ret_type, .ret_type,
@ -9501,7 +9462,6 @@ fn builtinCall(
.tag_name => return simpleUnOp(gz, scope, ri, node, .{ .rl = .none }, params[0], .tag_name), .tag_name => return simpleUnOp(gz, scope, ri, node, .{ .rl = .none }, params[0], .tag_name),
.type_name => return simpleUnOp(gz, scope, ri, node, .{ .rl = .none }, params[0], .type_name), .type_name => return simpleUnOp(gz, scope, ri, node, .{ .rl = .none }, params[0], .type_name),
.Frame => return simpleUnOp(gz, scope, ri, node, .{ .rl = .none }, params[0], .frame_type), .Frame => return simpleUnOp(gz, scope, ri, node, .{ .rl = .none }, params[0], .frame_type),
.frame_size => return simpleUnOp(gz, scope, ri, node, .{ .rl = .none }, params[0], .frame_size),
.int_from_float => return typeCast(gz, scope, ri, node, params[0], .int_from_float, builtin_name), .int_from_float => return typeCast(gz, scope, ri, node, params[0], .int_from_float, builtin_name),
.float_from_int => return typeCast(gz, scope, ri, node, params[0], .float_from_int, builtin_name), .float_from_int => return typeCast(gz, scope, ri, node, params[0], .float_from_int, builtin_name),
@ -9767,16 +9727,6 @@ fn builtinCall(
}); });
return rvalue(gz, ri, result, node); return rvalue(gz, ri, result, node);
}, },
.async_call => {
const result = try gz.addExtendedPayload(.builtin_async_call, Zir.Inst.AsyncCall{
.node = gz.nodeIndexToRelative(node),
.frame_buffer = try expr(gz, scope, .{ .rl = .none }, params[0]),
.result_ptr = try expr(gz, scope, .{ .rl = .none }, params[1]),
.fn_ptr = try expr(gz, scope, .{ .rl = .none }, params[2]),
.args = try expr(gz, scope, .{ .rl = .none }, params[3]),
});
return rvalue(gz, ri, result, node);
},
.Vector => { .Vector => {
const result = try gz.addPlNode(.vector_type, node, Zir.Inst.Bin{ const result = try gz.addPlNode(.vector_type, node, Zir.Inst.Bin{
.lhs = try comptimeExpr(gz, scope, .{ .rl = .{ .coerced_ty = .u32_type } }, params[0], .type), .lhs = try comptimeExpr(gz, scope, .{ .rl = .{ .coerced_ty = .u32_type } }, params[0], .type),
@ -10175,11 +10125,8 @@ fn callExpr(
const callee = try calleeExpr(gz, scope, ri.rl, override_decl_literal_type, call.ast.fn_expr); const callee = try calleeExpr(gz, scope, ri.rl, override_decl_literal_type, call.ast.fn_expr);
const modifier: std.builtin.CallModifier = blk: { const modifier: std.builtin.CallModifier = blk: {
if (call.async_token != null) {
break :blk .async_kw;
}
if (gz.nosuspend_node != .none) { if (gz.nosuspend_node != .none) {
break :blk .no_async; break :blk .no_suspend;
} }
break :blk .auto; break :blk .auto;
}; };
@ -10483,12 +10430,8 @@ fn nodeMayEvalToError(tree: *const Ast, start_node: Ast.Node.Index) BuiltinFn.Ev
.switch_comma, .switch_comma,
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
=> return .maybe, => return .maybe,
.@"return", .@"return",
@ -10613,7 +10556,6 @@ fn nodeMayEvalToError(tree: *const Ast, start_node: Ast.Node.Index) BuiltinFn.Ev
// Forward the question to the LHS sub-expression. // Forward the question to the LHS sub-expression.
.@"try", .@"try",
.@"await",
.@"comptime", .@"comptime",
.@"nosuspend", .@"nosuspend",
=> node = tree.nodeData(node).node, => node = tree.nodeData(node).node,
@ -10803,12 +10745,8 @@ fn nodeImpliesMoreThanOnePossibleValue(tree: *const Ast, start_node: Ast.Node.In
.switch_comma, .switch_comma,
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
.block_two, .block_two,
.block_two_semicolon, .block_two_semicolon,
.block, .block,
@ -10826,7 +10764,6 @@ fn nodeImpliesMoreThanOnePossibleValue(tree: *const Ast, start_node: Ast.Node.In
// Forward the question to the LHS sub-expression. // Forward the question to the LHS sub-expression.
.@"try", .@"try",
.@"await",
.@"comptime", .@"comptime",
.@"nosuspend", .@"nosuspend",
=> node = tree.nodeData(node).node, => node = tree.nodeData(node).node,
@ -11047,12 +10984,8 @@ fn nodeImpliesComptimeOnly(tree: *const Ast, start_node: Ast.Node.Index) bool {
.switch_comma, .switch_comma,
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
.block_two, .block_two,
.block_two_semicolon, .block_two_semicolon,
.block, .block,
@ -11079,7 +11012,6 @@ fn nodeImpliesComptimeOnly(tree: *const Ast, start_node: Ast.Node.Index) bool {
// Forward the question to the LHS sub-expression. // Forward the question to the LHS sub-expression.
.@"try", .@"try",
.@"await",
.@"comptime", .@"comptime",
.@"nosuspend", .@"nosuspend",
=> node = tree.nodeData(node).node, => node = tree.nodeData(node).node,

View file

@ -334,12 +334,8 @@ fn expr(astrl: *AstRlAnnotate, node: Ast.Node.Index, block: ?*Block, ri: ResultI
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
=> { => {
var buf: [1]Ast.Node.Index = undefined; var buf: [1]Ast.Node.Index = undefined;
const full = tree.fullCall(&buf, node).?; const full = tree.fullCall(&buf, node).?;
@ -353,11 +349,6 @@ fn expr(astrl: *AstRlAnnotate, node: Ast.Node.Index, block: ?*Block, ri: ResultI
.call, .call,
.call_comma, .call_comma,
=> false, // TODO: once function calls are passed result locations this will change => false, // TODO: once function calls are passed result locations this will change
.async_call_one,
.async_call_one_comma,
.async_call,
.async_call_comma,
=> ri.have_ptr, // always use result ptr for frames
else => unreachable, else => unreachable,
}; };
}, },
@ -503,7 +494,6 @@ fn expr(astrl: *AstRlAnnotate, node: Ast.Node.Index, block: ?*Block, ri: ResultI
return false; return false;
}, },
.@"try", .@"try",
.@"await",
.@"nosuspend", .@"nosuspend",
=> return astrl.expr(tree.nodeData(node).node, block, ri), => return astrl.expr(tree.nodeData(node).node, block, ri),
.grouped_expression, .grouped_expression,
@ -948,7 +938,6 @@ fn builtinCall(astrl: *AstRlAnnotate, block: ?*Block, ri: ResultInfo, node: Ast.
.tag_name, .tag_name,
.type_name, .type_name,
.Frame, .Frame,
.frame_size,
.int_from_float, .int_from_float,
.float_from_int, .float_from_int,
.ptr_from_int, .ptr_from_int,
@ -1079,13 +1068,6 @@ fn builtinCall(astrl: *AstRlAnnotate, block: ?*Block, ri: ResultInfo, node: Ast.
_ = try astrl.expr(args[3], block, ResultInfo.none); _ = try astrl.expr(args[3], block, ResultInfo.none);
return false; return false;
}, },
.async_call => {
_ = try astrl.expr(args[0], block, ResultInfo.none);
_ = try astrl.expr(args[1], block, ResultInfo.none);
_ = try astrl.expr(args[2], block, ResultInfo.none);
_ = try astrl.expr(args[3], block, ResultInfo.none);
return false; // buffer passed as arg for frame data
},
.Vector => { .Vector => {
_ = try astrl.expr(args[0], block, ResultInfo.type_only); _ = try astrl.expr(args[0], block, ResultInfo.type_only);
_ = try astrl.expr(args[1], block, ResultInfo.type_only); _ = try astrl.expr(args[1], block, ResultInfo.type_only);

View file

@ -4,7 +4,6 @@ pub const Tag = enum {
align_cast, align_cast,
align_of, align_of,
as, as,
async_call,
atomic_load, atomic_load,
atomic_rmw, atomic_rmw,
atomic_store, atomic_store,
@ -55,7 +54,6 @@ pub const Tag = enum {
frame, frame,
Frame, Frame,
frame_address, frame_address,
frame_size,
has_decl, has_decl,
has_field, has_field,
import, import,
@ -184,13 +182,6 @@ pub const list = list: {
.param_count = 2, .param_count = 2,
}, },
}, },
.{
"@asyncCall",
.{
.tag = .async_call,
.param_count = 4,
},
},
.{ .{
"@atomicLoad", "@atomicLoad",
.{ .{
@ -550,13 +541,6 @@ pub const list = list: {
.illegal_outside_function = true, .illegal_outside_function = true,
}, },
}, },
.{
"@frameSize",
.{
.tag = .frame_size,
.param_count = 1,
},
},
.{ .{
"@hasDecl", "@hasDecl",
.{ .{

View file

@ -1688,7 +1688,6 @@ fn parseExprPrecedence(p: *Parse, min_prec: i32) Error!?Node.Index {
/// / MINUSPERCENT /// / MINUSPERCENT
/// / AMPERSAND /// / AMPERSAND
/// / KEYWORD_try /// / KEYWORD_try
/// / KEYWORD_await
fn parsePrefixExpr(p: *Parse) Error!?Node.Index { fn parsePrefixExpr(p: *Parse) Error!?Node.Index {
const tag: Node.Tag = switch (p.tokenTag(p.tok_i)) { const tag: Node.Tag = switch (p.tokenTag(p.tok_i)) {
.bang => .bool_not, .bang => .bool_not,
@ -1697,7 +1696,6 @@ fn parsePrefixExpr(p: *Parse) Error!?Node.Index {
.minus_percent => .negation_wrap, .minus_percent => .negation_wrap,
.ampersand => .address_of, .ampersand => .address_of,
.keyword_try => .@"try", .keyword_try => .@"try",
.keyword_await => .@"await",
else => return p.parsePrimaryExpr(), else => return p.parsePrimaryExpr(),
}; };
return try p.addNode(.{ return try p.addNode(.{
@ -2385,62 +2383,12 @@ fn parseErrorUnionExpr(p: *Parse) !?Node.Index {
} }
/// SuffixExpr /// SuffixExpr
/// <- KEYWORD_async PrimaryTypeExpr SuffixOp* FnCallArguments /// <- PrimaryTypeExpr (SuffixOp / FnCallArguments)*
/// / PrimaryTypeExpr (SuffixOp / FnCallArguments)*
/// ///
/// FnCallArguments <- LPAREN ExprList RPAREN /// FnCallArguments <- LPAREN ExprList RPAREN
/// ///
/// ExprList <- (Expr COMMA)* Expr? /// ExprList <- (Expr COMMA)* Expr?
fn parseSuffixExpr(p: *Parse) !?Node.Index { fn parseSuffixExpr(p: *Parse) !?Node.Index {
if (p.eatToken(.keyword_async)) |_| {
var res = try p.expectPrimaryTypeExpr();
while (true) {
res = try p.parseSuffixOp(res) orelse break;
}
const lparen = p.eatToken(.l_paren) orelse {
try p.warn(.expected_param_list);
return res;
};
const scratch_top = p.scratch.items.len;
defer p.scratch.shrinkRetainingCapacity(scratch_top);
while (true) {
if (p.eatToken(.r_paren)) |_| break;
const param = try p.expectExpr();
try p.scratch.append(p.gpa, param);
switch (p.tokenTag(p.tok_i)) {
.comma => p.tok_i += 1,
.r_paren => {
p.tok_i += 1;
break;
},
.colon, .r_brace, .r_bracket => return p.failExpected(.r_paren),
// Likely just a missing comma; give error but continue parsing.
else => try p.warn(.expected_comma_after_arg),
}
}
const comma = (p.tokenTag(p.tok_i - 2)) == .comma;
const params = p.scratch.items[scratch_top..];
if (params.len <= 1) {
return try p.addNode(.{
.tag = if (comma) .async_call_one_comma else .async_call_one,
.main_token = lparen,
.data = .{ .node_and_opt_node = .{
res,
if (params.len >= 1) params[0].toOptional() else .none,
} },
});
} else {
return try p.addNode(.{
.tag = if (comma) .async_call_comma else .async_call,
.main_token = lparen,
.data = .{ .node_and_extra = .{
res,
try p.addExtra(try p.listToSpan(params)),
} },
});
}
}
var res = try p.parsePrimaryTypeExpr() orelse return null; var res = try p.parsePrimaryTypeExpr() orelse return null;
while (true) { while (true) {
const opt_suffix_op = try p.parseSuffixOp(res); const opt_suffix_op = try p.parseSuffixOp(res);

View file

@ -899,8 +899,6 @@ pub const Inst = struct {
type_name, type_name,
/// Implement builtin `@Frame`. Uses `un_node`. /// Implement builtin `@Frame`. Uses `un_node`.
frame_type, frame_type,
/// Implement builtin `@frameSize`. Uses `un_node`.
frame_size,
/// Implements the `@intFromFloat` builtin. /// Implements the `@intFromFloat` builtin.
/// Uses `pl_node` with payload `Bin`. `lhs` is dest type, `rhs` is operand. /// Uses `pl_node` with payload `Bin`. `lhs` is dest type, `rhs` is operand.
@ -1044,7 +1042,6 @@ pub const Inst = struct {
/// Implements `resume` syntax. Uses `un_node` field. /// Implements `resume` syntax. Uses `un_node` field.
@"resume", @"resume",
@"await",
/// A defer statement. /// A defer statement.
/// Uses the `defer` union field. /// Uses the `defer` union field.
@ -1241,7 +1238,6 @@ pub const Inst = struct {
.tag_name, .tag_name,
.type_name, .type_name,
.frame_type, .frame_type,
.frame_size,
.int_from_float, .int_from_float,
.float_from_int, .float_from_int,
.ptr_from_int, .ptr_from_int,
@ -1279,7 +1275,6 @@ pub const Inst = struct {
.min, .min,
.c_import, .c_import,
.@"resume", .@"resume",
.@"await",
.ret_err_value_code, .ret_err_value_code,
.extended, .extended,
.ret_ptr, .ret_ptr,
@ -1526,7 +1521,6 @@ pub const Inst = struct {
.tag_name, .tag_name,
.type_name, .type_name,
.frame_type, .frame_type,
.frame_size,
.int_from_float, .int_from_float,
.float_from_int, .float_from_int,
.ptr_from_int, .ptr_from_int,
@ -1560,7 +1554,6 @@ pub const Inst = struct {
.min, .min,
.c_import, .c_import,
.@"resume", .@"resume",
.@"await",
.ret_err_value_code, .ret_err_value_code,
.@"break", .@"break",
.break_inline, .break_inline,
@ -1791,7 +1784,6 @@ pub const Inst = struct {
.tag_name = .un_node, .tag_name = .un_node,
.type_name = .un_node, .type_name = .un_node,
.frame_type = .un_node, .frame_type = .un_node,
.frame_size = .un_node,
.int_from_float = .pl_node, .int_from_float = .pl_node,
.float_from_int = .pl_node, .float_from_int = .pl_node,
@ -1852,7 +1844,6 @@ pub const Inst = struct {
.make_ptr_const = .un_node, .make_ptr_const = .un_node,
.@"resume" = .un_node, .@"resume" = .un_node,
.@"await" = .un_node,
.@"defer" = .@"defer", .@"defer" = .@"defer",
.defer_err_code = .defer_err_code, .defer_err_code = .defer_err_code,
@ -2016,8 +2007,6 @@ pub const Inst = struct {
/// Implements the `@errorCast` builtin. /// Implements the `@errorCast` builtin.
/// `operand` is payload index to `BinNode`. `lhs` is dest type, `rhs` is operand. /// `operand` is payload index to `BinNode`. `lhs` is dest type, `rhs` is operand.
error_cast, error_cast,
/// `operand` is payload index to `UnNode`.
await_nosuspend,
/// Implements `@breakpoint`. /// Implements `@breakpoint`.
/// `operand` is `src_node: Ast.Node.Offset`. /// `operand` is `src_node: Ast.Node.Offset`.
breakpoint, breakpoint,
@ -2038,9 +2027,6 @@ pub const Inst = struct {
/// `operand` is payload index to `Reify`. /// `operand` is payload index to `Reify`.
/// `small` contains `NameStrategy`. /// `small` contains `NameStrategy`.
reify, reify,
/// Implements the `@asyncCall` builtin.
/// `operand` is payload index to `AsyncCall`.
builtin_async_call,
/// Implements the `@cmpxchgStrong` and `@cmpxchgWeak` builtins. /// Implements the `@cmpxchgStrong` and `@cmpxchgWeak` builtins.
/// `small` 0=>weak 1=>strong /// `small` 0=>weak 1=>strong
/// `operand` is payload index to `Cmpxchg`. /// `operand` is payload index to `Cmpxchg`.
@ -3771,14 +3757,6 @@ pub const Inst = struct {
b: Ref, b: Ref,
}; };
pub const AsyncCall = struct {
node: Ast.Node.Offset,
frame_buffer: Ref,
result_ptr: Ref,
fn_ptr: Ref,
args: Ref,
};
/// Trailing: inst: Index // for every body_len /// Trailing: inst: Index // for every body_len
pub const Param = struct { pub const Param = struct {
/// Null-terminated string index. /// Null-terminated string index.
@ -4297,7 +4275,6 @@ fn findTrackableInner(
.tag_name, .tag_name,
.type_name, .type_name,
.frame_type, .frame_type,
.frame_size,
.int_from_float, .int_from_float,
.float_from_int, .float_from_int,
.ptr_from_int, .ptr_from_int,
@ -4337,7 +4314,6 @@ fn findTrackableInner(
.resolve_inferred_alloc, .resolve_inferred_alloc,
.make_ptr_const, .make_ptr_const,
.@"resume", .@"resume",
.@"await",
.save_err_ret_index, .save_err_ret_index,
.restore_err_ret_index_unconditional, .restore_err_ret_index_unconditional,
.restore_err_ret_index_fn_entry, .restore_err_ret_index_fn_entry,
@ -4380,14 +4356,12 @@ fn findTrackableInner(
.prefetch, .prefetch,
.set_float_mode, .set_float_mode,
.error_cast, .error_cast,
.await_nosuspend,
.breakpoint, .breakpoint,
.disable_instrumentation, .disable_instrumentation,
.disable_intrinsics, .disable_intrinsics,
.select, .select,
.int_from_error, .int_from_error,
.error_from_int, .error_from_int,
.builtin_async_call,
.cmpxchg, .cmpxchg,
.c_va_arg, .c_va_arg,
.c_va_copy, .c_va_copy,

View file

@ -204,12 +204,8 @@ fn expr(zg: *ZonGen, node: Ast.Node.Index, dest_node: Zoir.Node.Index) Allocator
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
.@"return", .@"return",
.if_simple, .if_simple,
.@"if", .@"if",
@ -226,7 +222,6 @@ fn expr(zg: *ZonGen, node: Ast.Node.Index, dest_node: Zoir.Node.Index) Allocator
.switch_comma, .switch_comma,
.@"nosuspend", .@"nosuspend",
.@"suspend", .@"suspend",
.@"await",
.@"resume", .@"resume",
.@"try", .@"try",
.unreachable_literal, .unreachable_literal,

View file

@ -341,15 +341,6 @@ test "zig fmt: nosuspend block" {
); );
} }
test "zig fmt: nosuspend await" {
try testCanonical(
\\fn foo() void {
\\ x = nosuspend await y;
\\}
\\
);
}
test "zig fmt: container declaration, single line" { test "zig fmt: container declaration, single line" {
try testCanonical( try testCanonical(
\\const X = struct { foo: i32 }; \\const X = struct { foo: i32 };
@ -1093,18 +1084,6 @@ test "zig fmt: block in slice expression" {
); );
} }
test "zig fmt: async function" {
try testCanonical(
\\pub const Server = struct {
\\ handleRequestFn: fn (*Server, *const std.net.Address, File) callconv(.@"async") void,
\\};
\\test "hi" {
\\ var ptr: fn (i32) callconv(.@"async") void = @ptrCast(other);
\\}
\\
);
}
test "zig fmt: whitespace fixes" { test "zig fmt: whitespace fixes" {
try testTransform("test \"\" {\r\n\tconst hi = x;\r\n}\n// zig fmt: off\ntest \"\"{\r\n\tconst a = b;}\r\n", try testTransform("test \"\" {\r\n\tconst hi = x;\r\n}\n// zig fmt: off\ntest \"\"{\r\n\tconst a = b;}\r\n",
\\test "" { \\test "" {
@ -1549,17 +1528,6 @@ test "zig fmt: spaces around slice operator" {
); );
} }
test "zig fmt: async call in if condition" {
try testCanonical(
\\comptime {
\\ if (async b()) {
\\ a();
\\ }
\\}
\\
);
}
test "zig fmt: 2nd arg multiline string" { test "zig fmt: 2nd arg multiline string" {
try testCanonical( try testCanonical(
\\comptime { \\comptime {
@ -3946,27 +3914,6 @@ test "zig fmt: inline asm" {
); );
} }
test "zig fmt: async functions" {
try testCanonical(
\\fn simpleAsyncFn() void {
\\ const a = async a.b();
\\ x += 1;
\\ suspend {}
\\ x += 1;
\\ suspend {}
\\ const p: anyframe->void = async simpleAsyncFn() catch unreachable;
\\ await p;
\\}
\\
\\test "suspend, resume, await" {
\\ const p: anyframe = async testAsyncSeq();
\\ resume p;
\\ await p;
\\}
\\
);
}
test "zig fmt: nosuspend" { test "zig fmt: nosuspend" {
try testCanonical( try testCanonical(
\\const a = nosuspend foo(); \\const a = nosuspend foo();
@ -6181,29 +6128,6 @@ test "recovery: missing return type" {
}); });
} }
test "recovery: continue after invalid decl" {
try testError(
\\fn foo {
\\ inline;
\\}
\\pub test "" {
\\ async a & b;
\\}
, &[_]Error{
.expected_token,
.expected_pub_item,
.expected_param_list,
});
try testError(
\\threadlocal test "" {
\\ @a & b;
\\}
, &[_]Error{
.expected_var_decl,
.expected_param_list,
});
}
test "recovery: invalid extern/inline" { test "recovery: invalid extern/inline" {
try testError( try testError(
\\inline test "" { a & b; } \\inline test "" { a & b; }

View file

@ -591,7 +591,6 @@ fn renderExpression(r: *Render, node: Ast.Node.Index, space: Space) Error!void {
.@"try", .@"try",
.@"resume", .@"resume",
.@"await",
=> { => {
try renderToken(r, tree.nodeMainToken(node), .space); try renderToken(r, tree.nodeMainToken(node), .space);
return renderExpression(r, tree.nodeData(node).node, space); return renderExpression(r, tree.nodeData(node).node, space);
@ -635,12 +634,8 @@ fn renderExpression(r: *Render, node: Ast.Node.Index, space: Space) Error!void {
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
=> { => {
var buf: [1]Ast.Node.Index = undefined; var buf: [1]Ast.Node.Index = undefined;
return renderCall(r, tree.fullCall(&buf, node).?, space); return renderCall(r, tree.fullCall(&buf, node).?, space);
@ -2551,9 +2546,6 @@ fn renderCall(
call: Ast.full.Call, call: Ast.full.Call,
space: Space, space: Space,
) Error!void { ) Error!void {
if (call.async_token) |async_token| {
try renderToken(r, async_token, .space);
}
try renderExpression(r, call.ast.fn_expr, .none); try renderExpression(r, call.ast.fn_expr, .none);
try renderParamList(r, call.ast.lparen, call.ast.params, space); try renderParamList(r, call.ast.lparen, call.ast.params, space);
} }

View file

@ -17,8 +17,6 @@ pub const Token = struct {
.{ "anyframe", .keyword_anyframe }, .{ "anyframe", .keyword_anyframe },
.{ "anytype", .keyword_anytype }, .{ "anytype", .keyword_anytype },
.{ "asm", .keyword_asm }, .{ "asm", .keyword_asm },
.{ "async", .keyword_async },
.{ "await", .keyword_await },
.{ "break", .keyword_break }, .{ "break", .keyword_break },
.{ "callconv", .keyword_callconv }, .{ "callconv", .keyword_callconv },
.{ "catch", .keyword_catch }, .{ "catch", .keyword_catch },
@ -146,8 +144,6 @@ pub const Token = struct {
keyword_anyframe, keyword_anyframe,
keyword_anytype, keyword_anytype,
keyword_asm, keyword_asm,
keyword_async,
keyword_await,
keyword_break, keyword_break,
keyword_callconv, keyword_callconv,
keyword_catch, keyword_catch,
@ -273,8 +269,6 @@ pub const Token = struct {
.keyword_anyframe => "anyframe", .keyword_anyframe => "anyframe",
.keyword_anytype => "anytype", .keyword_anytype => "anytype",
.keyword_asm => "asm", .keyword_asm => "asm",
.keyword_async => "async",
.keyword_await => "await",
.keyword_break => "break", .keyword_break => "break",
.keyword_callconv => "callconv", .keyword_callconv => "callconv",
.keyword_catch => "catch", .keyword_catch => "catch",

View file

@ -1280,7 +1280,6 @@ fn analyzeBodyInner(
.tag_name => try sema.zirTagName(block, inst), .tag_name => try sema.zirTagName(block, inst),
.type_name => try sema.zirTypeName(block, inst), .type_name => try sema.zirTypeName(block, inst),
.frame_type => try sema.zirFrameType(block, inst), .frame_type => try sema.zirFrameType(block, inst),
.frame_size => try sema.zirFrameSize(block, inst),
.int_from_float => try sema.zirIntFromFloat(block, inst), .int_from_float => try sema.zirIntFromFloat(block, inst),
.float_from_int => try sema.zirFloatFromInt(block, inst), .float_from_int => try sema.zirFloatFromInt(block, inst),
.ptr_from_int => try sema.zirPtrFromInt(block, inst), .ptr_from_int => try sema.zirPtrFromInt(block, inst),
@ -1302,7 +1301,6 @@ fn analyzeBodyInner(
.mul_add => try sema.zirMulAdd(block, inst), .mul_add => try sema.zirMulAdd(block, inst),
.builtin_call => try sema.zirBuiltinCall(block, inst), .builtin_call => try sema.zirBuiltinCall(block, inst),
.@"resume" => try sema.zirResume(block, inst), .@"resume" => try sema.zirResume(block, inst),
.@"await" => try sema.zirAwait(block, inst),
.for_len => try sema.zirForLen(block, inst), .for_len => try sema.zirForLen(block, inst),
.validate_array_init_ref_ty => try sema.zirValidateArrayInitRefTy(block, inst), .validate_array_init_ref_ty => try sema.zirValidateArrayInitRefTy(block, inst),
.opt_eu_base_ptr_init => try sema.zirOptEuBasePtrInit(block, inst), .opt_eu_base_ptr_init => try sema.zirOptEuBasePtrInit(block, inst),
@ -1410,12 +1408,10 @@ fn analyzeBodyInner(
.wasm_memory_grow => try sema.zirWasmMemoryGrow( block, extended), .wasm_memory_grow => try sema.zirWasmMemoryGrow( block, extended),
.prefetch => try sema.zirPrefetch( block, extended), .prefetch => try sema.zirPrefetch( block, extended),
.error_cast => try sema.zirErrorCast( block, extended), .error_cast => try sema.zirErrorCast( block, extended),
.await_nosuspend => try sema.zirAwaitNosuspend( block, extended),
.select => try sema.zirSelect( block, extended), .select => try sema.zirSelect( block, extended),
.int_from_error => try sema.zirIntFromError( block, extended), .int_from_error => try sema.zirIntFromError( block, extended),
.error_from_int => try sema.zirErrorFromInt( block, extended), .error_from_int => try sema.zirErrorFromInt( block, extended),
.reify => try sema.zirReify( block, extended, inst), .reify => try sema.zirReify( block, extended, inst),
.builtin_async_call => try sema.zirBuiltinAsyncCall( block, extended),
.cmpxchg => try sema.zirCmpxchg( block, extended), .cmpxchg => try sema.zirCmpxchg( block, extended),
.c_va_arg => try sema.zirCVaArg( block, extended), .c_va_arg => try sema.zirCVaArg( block, extended),
.c_va_copy => try sema.zirCVaCopy( block, extended), .c_va_copy => try sema.zirCVaCopy( block, extended),
@ -7653,10 +7649,6 @@ fn analyzeCall(
const ip = &zcu.intern_pool; const ip = &zcu.intern_pool;
const arena = sema.arena; const arena = sema.arena;
if (modifier == .async_kw) {
return sema.failWithUseOfAsync(block, call_src);
}
const maybe_func_inst = try sema.funcDeclSrcInst(callee); const maybe_func_inst = try sema.funcDeclSrcInst(callee);
const func_ret_ty_src: LazySrcLoc = if (maybe_func_inst) |fn_decl_inst| .{ const func_ret_ty_src: LazySrcLoc = if (maybe_func_inst) |fn_decl_inst| .{
.base_node_inst = fn_decl_inst, .base_node_inst = fn_decl_inst,
@ -8048,14 +8040,13 @@ fn analyzeCall(
} }
const call_tag: Air.Inst.Tag = switch (modifier) { const call_tag: Air.Inst.Tag = switch (modifier) {
.auto, .no_async => .call, .auto, .no_suspend => .call,
.never_tail => .call_never_tail, .never_tail => .call_never_tail,
.never_inline => .call_never_inline, .never_inline => .call_never_inline,
.always_tail => .call_always_tail, .always_tail => .call_always_tail,
.always_inline, .always_inline,
.compile_time, .compile_time,
.async_kw,
=> unreachable, => unreachable,
}; };
@ -22133,12 +22124,6 @@ fn zirFrameType(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!A
return sema.failWithUseOfAsync(block, src); return sema.failWithUseOfAsync(block, src);
} }
fn zirFrameSize(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Inst.Ref {
const inst_data = sema.code.instructions.items(.data)[@intFromEnum(inst)].un_node;
const src = block.nodeOffset(inst_data.src_node);
return sema.failWithUseOfAsync(block, src);
}
fn zirIntFromFloat(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Inst.Ref { fn zirIntFromFloat(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Inst.Ref {
const pt = sema.pt; const pt = sema.pt;
const zcu = pt.zcu; const zcu = pt.zcu;
@ -24776,14 +24761,14 @@ fn zirBuiltinCall(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError
var modifier = try sema.interpretBuiltinType(block, modifier_src, modifier_val, std.builtin.CallModifier); var modifier = try sema.interpretBuiltinType(block, modifier_src, modifier_val, std.builtin.CallModifier);
switch (modifier) { switch (modifier) {
// These can be upgraded to comptime or nosuspend calls. // These can be upgraded to comptime or nosuspend calls.
.auto, .never_tail, .no_async => { .auto, .never_tail, .no_suspend => {
if (block.isComptime()) { if (block.isComptime()) {
if (modifier == .never_tail) { if (modifier == .never_tail) {
return sema.fail(block, modifier_src, "unable to perform 'never_tail' call at compile-time", .{}); return sema.fail(block, modifier_src, "unable to perform 'never_tail' call at compile-time", .{});
} }
modifier = .compile_time; modifier = .compile_time;
} else if (extra.flags.is_nosuspend) { } else if (extra.flags.is_nosuspend) {
modifier = .no_async; modifier = .no_suspend;
} }
}, },
// These can be upgraded to comptime. nosuspend bit can be safely ignored. // These can be upgraded to comptime. nosuspend bit can be safely ignored.
@ -24801,14 +24786,6 @@ fn zirBuiltinCall(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError
modifier = .compile_time; modifier = .compile_time;
} }
}, },
.async_kw => {
if (extra.flags.is_nosuspend) {
return sema.fail(block, modifier_src, "modifier 'async_kw' cannot be used inside nosuspend block", .{});
}
if (block.isComptime()) {
return sema.fail(block, modifier_src, "modifier 'async_kw' cannot be used in combination with comptime function call", .{});
}
},
.never_inline => { .never_inline => {
if (block.isComptime()) { if (block.isComptime()) {
return sema.fail(block, modifier_src, "unable to perform 'never_inline' call at compile-time", .{}); return sema.fail(block, modifier_src, "unable to perform 'never_inline' call at compile-time", .{});
@ -25797,40 +25774,12 @@ fn zirMemset(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!void
}); });
} }
fn zirBuiltinAsyncCall(sema: *Sema, block: *Block, extended: Zir.Inst.Extended.InstData) CompileError!Air.Inst.Ref {
const extra = sema.code.extraData(Zir.Inst.UnNode, extended.operand).data;
const src = block.nodeOffset(extra.node);
return sema.failWithUseOfAsync(block, src);
}
fn zirResume(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Inst.Ref { fn zirResume(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Inst.Ref {
const inst_data = sema.code.instructions.items(.data)[@intFromEnum(inst)].un_node; const inst_data = sema.code.instructions.items(.data)[@intFromEnum(inst)].un_node;
const src = block.nodeOffset(inst_data.src_node); const src = block.nodeOffset(inst_data.src_node);
return sema.failWithUseOfAsync(block, src); return sema.failWithUseOfAsync(block, src);
} }
fn zirAwait(
sema: *Sema,
block: *Block,
inst: Zir.Inst.Index,
) CompileError!Air.Inst.Ref {
const inst_data = sema.code.instructions.items(.data)[@intFromEnum(inst)].un_node;
const src = block.nodeOffset(inst_data.src_node);
return sema.failWithUseOfAsync(block, src);
}
fn zirAwaitNosuspend(
sema: *Sema,
block: *Block,
extended: Zir.Inst.Extended.InstData,
) CompileError!Air.Inst.Ref {
const extra = sema.code.extraData(Zir.Inst.UnNode, extended.operand).data;
const src = block.nodeOffset(extra.node);
return sema.failWithUseOfAsync(block, src);
}
fn zirFuncFancy(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Inst.Ref { fn zirFuncFancy(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Inst.Ref {
const tracy = trace(@src()); const tracy = trace(@src());
defer tracy.end(); defer tracy.end();

View file

@ -1443,12 +1443,8 @@ pub const SrcLoc = struct {
.field_access => tree.nodeData(node).node_and_token[1], .field_access => tree.nodeData(node).node_and_token[1],
.call_one, .call_one,
.call_one_comma, .call_one_comma,
.async_call_one,
.async_call_one_comma,
.call, .call,
.call_comma, .call_comma,
.async_call,
.async_call_comma,
=> blk: { => blk: {
const full = tree.fullCall(&buf, node).?; const full = tree.fullCall(&buf, node).?;
break :blk tree.lastToken(full.ast.fn_expr); break :blk tree.lastToken(full.ast.fn_expr);

View file

@ -5273,7 +5273,7 @@ pub const FuncGen = struct {
switch (modifier) { switch (modifier) {
.auto, .always_tail => {}, .auto, .always_tail => {},
.never_tail, .never_inline => try attributes.addFnAttr(.@"noinline", &o.builder), .never_tail, .never_inline => try attributes.addFnAttr(.@"noinline", &o.builder),
.async_kw, .no_async, .always_inline, .compile_time => unreachable, .no_suspend, .always_inline, .compile_time => unreachable,
} }
const ret_ptr = if (!sret) null else blk: { const ret_ptr = if (!sret) null else blk: {
@ -5488,7 +5488,7 @@ pub const FuncGen = struct {
.auto, .never_inline => .normal, .auto, .never_inline => .normal,
.never_tail => .notail, .never_tail => .notail,
.always_tail => .musttail, .always_tail => .musttail,
.async_kw, .no_async, .always_inline, .compile_time => unreachable, .no_suspend, .always_inline, .compile_time => unreachable,
}, },
toLlvmCallConvTag(fn_info.cc, target).?, toLlvmCallConvTag(fn_info.cc, target).?,
try attributes.finish(&o.builder), try attributes.finish(&o.builder),

View file

@ -261,14 +261,12 @@ const Writer = struct {
.tag_name, .tag_name,
.type_name, .type_name,
.frame_type, .frame_type,
.frame_size,
.clz, .clz,
.ctz, .ctz,
.pop_count, .pop_count,
.byte_swap, .byte_swap,
.bit_reverse, .bit_reverse,
.@"resume", .@"resume",
.@"await",
.make_ptr_const, .make_ptr_const,
.validate_deref, .validate_deref,
.validate_const, .validate_const,
@ -565,7 +563,6 @@ const Writer = struct {
.tuple_decl => try self.writeTupleDecl(stream, extended), .tuple_decl => try self.writeTupleDecl(stream, extended),
.await_nosuspend,
.c_undef, .c_undef,
.c_include, .c_include,
.set_float_mode, .set_float_mode,
@ -611,7 +608,6 @@ const Writer = struct {
try self.writeSrcNode(stream, inst_data.node); try self.writeSrcNode(stream, inst_data.node);
}, },
.builtin_async_call => try self.writeBuiltinAsyncCall(stream, extended),
.cmpxchg => try self.writeCmpxchg(stream, extended), .cmpxchg => try self.writeCmpxchg(stream, extended),
.ptr_cast_full => try self.writePtrCastFull(stream, extended), .ptr_cast_full => try self.writePtrCastFull(stream, extended),
.ptr_cast_no_dest => try self.writePtrCastNoDest(stream, extended), .ptr_cast_no_dest => try self.writePtrCastNoDest(stream, extended),
@ -932,19 +928,6 @@ const Writer = struct {
try self.writeSrcNode(stream, extra.src_node); try self.writeSrcNode(stream, extra.src_node);
} }
fn writeBuiltinAsyncCall(self: *Writer, stream: anytype, extended: Zir.Inst.Extended.InstData) !void {
const extra = self.code.extraData(Zir.Inst.AsyncCall, extended.operand).data;
try self.writeInstRef(stream, extra.frame_buffer);
try stream.writeAll(", ");
try self.writeInstRef(stream, extra.result_ptr);
try stream.writeAll(", ");
try self.writeInstRef(stream, extra.fn_ptr);
try stream.writeAll(", ");
try self.writeInstRef(stream, extra.args);
try stream.writeAll(") ");
try self.writeSrcNode(stream, extra.node);
}
fn writeParam(self: *Writer, stream: anytype, inst: Zir.Inst.Index) !void { fn writeParam(self: *Writer, stream: anytype, inst: Zir.Inst.Index) !void {
const inst_data = self.code.instructions.items(.data)[@intFromEnum(inst)].pl_tok; const inst_data = self.code.instructions.items(.data)[@intFromEnum(inst)].pl_tok;
const extra = self.code.extraData(Zir.Inst.Param, inst_data.payload_index); const extra = self.code.extraData(Zir.Inst.Param, inst_data.payload_index);

View file

@ -5,9 +5,7 @@ test {
_ = @import("behavior/align.zig"); _ = @import("behavior/align.zig");
_ = @import("behavior/alignof.zig"); _ = @import("behavior/alignof.zig");
_ = @import("behavior/array.zig"); _ = @import("behavior/array.zig");
_ = @import("behavior/async_fn.zig");
_ = @import("behavior/atomics.zig"); _ = @import("behavior/atomics.zig");
_ = @import("behavior/await_struct.zig");
_ = @import("behavior/basic.zig"); _ = @import("behavior/basic.zig");
_ = @import("behavior/bit_shifting.zig"); _ = @import("behavior/bit_shifting.zig");
_ = @import("behavior/bitcast.zig"); _ = @import("behavior/bitcast.zig");

View file

@ -425,30 +425,6 @@ test "struct field explicit alignment" {
try expect(@intFromPtr(&node.massive_byte) % 64 == 0); try expect(@intFromPtr(&node.massive_byte) % 64 == 0);
} }
test "align(@alignOf(T)) T does not force resolution of T" {
if (true) return error.SkipZigTest; // TODO
const S = struct {
const A = struct {
a: *align(@alignOf(A)) A,
};
fn doTheTest() void {
suspend {
resume @frame();
}
_ = bar(@Frame(doTheTest));
}
fn bar(comptime T: type) *align(@alignOf(T)) T {
ok = true;
return undefined;
}
var ok = false;
};
_ = async S.doTheTest();
try expect(S.ok);
}
test "align(N) on functions" { test "align(N) on functions" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO

File diff suppressed because it is too large Load diff

View file

@ -1,47 +0,0 @@
const std = @import("std");
const builtin = @import("builtin");
const expect = std.testing.expect;
const Foo = struct {
x: i32,
};
var await_a_promise: anyframe = undefined;
var await_final_result = Foo{ .x = 0 };
test "coroutine await struct" {
if (true) return error.SkipZigTest; // TODO
await_seq('a');
var p = async await_amain();
_ = &p;
await_seq('f');
resume await_a_promise;
await_seq('i');
try expect(await_final_result.x == 1234);
try expect(std.mem.eql(u8, &await_points, "abcdefghi"));
}
fn await_amain() callconv(.@"async") void {
await_seq('b');
var p = async await_another();
await_seq('e');
await_final_result = await p;
await_seq('h');
}
fn await_another() callconv(.@"async") Foo {
await_seq('c');
suspend {
await_seq('d');
await_a_promise = @frame();
}
await_seq('g');
return Foo{ .x = 1234 };
}
var await_points = [_]u8{0} ** "abcdefghi".len;
var await_seq_index: usize = 0;
fn await_seq(c: u8) void {
await_points[await_seq_index] = c;
await_seq_index += 1;
}

View file

@ -37,7 +37,7 @@ test "basic invocations" {
comptime { comptime {
// comptime calls with supported modifiers // comptime calls with supported modifiers
try expect(@call(.auto, foo, .{2}) == 1234); try expect(@call(.auto, foo, .{2}) == 1234);
try expect(@call(.no_async, foo, .{3}) == 1234); try expect(@call(.no_suspend, foo, .{3}) == 1234);
try expect(@call(.always_tail, foo, .{4}) == 1234); try expect(@call(.always_tail, foo, .{4}) == 1234);
try expect(@call(.always_inline, foo, .{5}) == 1234); try expect(@call(.always_inline, foo, .{5}) == 1234);
} }
@ -45,7 +45,7 @@ test "basic invocations" {
const result = @call(.compile_time, foo, .{6}) == 1234; const result = @call(.compile_time, foo, .{6}) == 1234;
comptime assert(result); comptime assert(result);
// runtime calls of comptime-known function // runtime calls of comptime-known function
try expect(@call(.no_async, foo, .{7}) == 1234); try expect(@call(.no_suspend, foo, .{7}) == 1234);
try expect(@call(.never_tail, foo, .{8}) == 1234); try expect(@call(.never_tail, foo, .{8}) == 1234);
try expect(@call(.never_inline, foo, .{9}) == 1234); try expect(@call(.never_inline, foo, .{9}) == 1234);
// CBE does not support attributes on runtime functions // CBE does not support attributes on runtime functions
@ -53,7 +53,7 @@ test "basic invocations" {
// runtime calls of non comptime-known function // runtime calls of non comptime-known function
var alias_foo = &foo; var alias_foo = &foo;
_ = &alias_foo; _ = &alias_foo;
try expect(@call(.no_async, alias_foo, .{10}) == 1234); try expect(@call(.no_suspend, alias_foo, .{10}) == 1234);
try expect(@call(.never_tail, alias_foo, .{11}) == 1234); try expect(@call(.never_tail, alias_foo, .{11}) == 1234);
try expect(@call(.never_inline, alias_foo, .{12}) == 1234); try expect(@call(.never_inline, alias_foo, .{12}) == 1234);
} }

View file

@ -1,13 +0,0 @@
export fn entry() void {
_ = async amain();
}
fn amain() callconv(.@"async") void {
var x: [@sizeOf(@Frame(amain))]u8 = undefined;
_ = &x;
}
// error
// backend=stage1
// target=native
//
// tmp.zig:4:1: error: cannot resolve '@Frame(amain)': function not fully analyzed yet

View file

@ -1,17 +0,0 @@
export fn entry() void {
_ = async amain();
}
fn amain() callconv(.@"async") void {
other();
}
fn other() void {
var x: [@sizeOf(@Frame(amain))]u8 = undefined;
_ = &x;
}
// error
// backend=stage1
// target=native
//
// tmp.zig:4:1: error: unable to determine async function frame of 'amain'
// tmp.zig:5:10: note: analysis of function 'other' depends on the frame

View file

@ -1,19 +0,0 @@
export fn a() void {
const f = async func();
resume f;
}
export fn b() void {
const f = async func();
var x: anyframe = &f;
_ = &x;
}
fn func() void {
suspend {}
}
// error
// backend=stage1
// target=native
//
// tmp.zig:3:12: error: expected type 'anyframe', found '*const @Frame(func)'
// tmp.zig:7:24: error: expected type 'anyframe', found '*const @Frame(func)'

View file

@ -1,18 +0,0 @@
export fn entry() void {
foo();
}
fn foo() void {
bar();
}
fn bar() void {
suspend {}
}
// error
// backend=stage1
// target=native
//
// tmp.zig:1:1: error: function with calling convention 'C' cannot be async
// tmp.zig:2:8: note: async function call here
// tmp.zig:5:8: note: async function call here
// tmp.zig:8:5: note: suspends here

View file

@ -1,36 +0,0 @@
var frame: ?anyframe = null;
export fn a() void {
_ = async rangeSum(10);
while (frame) |f| resume f;
}
fn rangeSum(x: i32) i32 {
suspend {
frame = @frame();
}
frame = null;
if (x == 0) return 0;
const child = rangeSumIndirect(x - 1);
return child + 1;
}
fn rangeSumIndirect(x: i32) i32 {
suspend {
frame = @frame();
}
frame = null;
if (x == 0) return 0;
const child = rangeSum(x - 1);
return child + 1;
}
// error
// backend=stage1
// target=native
//
// tmp.zig:8:1: error: '@Frame(rangeSum)' depends on itself
// tmp.zig:15:35: note: when analyzing type '@Frame(rangeSum)' here
// tmp.zig:28:25: note: when analyzing type '@Frame(rangeSumIndirect)' here

View file

@ -1,15 +0,0 @@
export fn entry() void {
var frame = async func();
var result = await frame;
_ = &result;
}
fn func() void {
suspend {}
}
// error
// backend=stage1
// target=native
//
// tmp.zig:1:1: error: function with calling convention 'C' cannot be async
// tmp.zig:3:18: note: await here is a suspend point

View file

@ -1,12 +0,0 @@
export fn entry() void {
_ = async amain();
}
fn amain() callconv(.@"async") void {
return error.ShouldBeCompileError;
}
// error
// backend=stage1
// target=native
//
// tmp.zig:5:17: error: expected type 'void', found 'error{ShouldBeCompileError}'

View file

@ -1,15 +0,0 @@
export fn entry() void {
_ = async amain();
}
fn amain() void {
var ptr = afunc;
_ = ptr();
_ = &ptr;
}
fn afunc() callconv(.@"async") void {}
// error
// backend=stage1
// target=native
//
// tmp.zig:6:12: error: function is not comptime-known; @asyncCall required

View file

@ -1,13 +0,0 @@
export fn entry() void {
var ptr = afunc;
_ = async ptr();
_ = &ptr;
}
fn afunc() callconv(.@"async") void {}
// error
// backend=stage1
// target=native
//
// tmp.zig:3:15: error: function is not comptime-known; @asyncCall required

View file

@ -1,16 +0,0 @@
export fn entry() void {
var frame: @Frame(foo) = undefined;
frame = async bar();
}
fn foo() void {
suspend {}
}
fn bar() void {
suspend {}
}
// error
// backend=stage1
// target=native
//
// tmp.zig:3:13: error: expected type '*@Frame(bar)', found '*@Frame(foo)'

View file

@ -1,16 +0,0 @@
export fn entry() void {
_ = async amain();
}
fn amain() i32 {
var frame: @Frame(foo) = undefined;
return await @asyncCall(&frame, false, foo, .{});
}
fn foo() i32 {
return 1234;
}
// error
// backend=stage1
// target=native
//
// tmp.zig:6:37: error: expected type '*i32', found 'bool'

View file

@ -1,15 +0,0 @@
export fn entry() void {
nosuspend {
const bar = async foo();
suspend {}
resume bar;
}
}
fn foo() void {}
// error
// backend=stage2
// target=native
//
// :4:9: error: suspend inside nosuspend block
// :2:5: note: nosuspend block here

View file

@ -1,15 +0,0 @@
export fn entry() void {
_ = async foo();
}
fn foo() void {
suspend {
suspend {}
}
}
// error
// backend=stage2
// target=native
//
// :6:9: error: cannot suspend inside suspend block
// :5:5: note: other suspend block here

View file

@ -1,26 +0,0 @@
const std = @import("std");
const builtin = @import("builtin");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
_ = message;
_ = stack_trace;
std.process.exit(0);
}
pub fn main() !void {
if (builtin.zig_backend == .stage1 and builtin.os.tag == .wasi) {
// TODO file a bug for this failure
std.process.exit(0); // skip the test
}
var bytes: [1]u8 align(16) = undefined;
var ptr = other;
_ = &ptr;
var frame = @asyncCall(&bytes, {}, ptr, .{});
_ = &frame;
return error.TestFailed;
}
fn other() callconv(.@"async") void {
suspend {}
}
// run
// backend=stage1
// target=native

View file

@ -1,29 +0,0 @@
const std = @import("std");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
_ = message;
_ = stack_trace;
std.process.exit(0);
}
var frame: anyframe = undefined;
pub fn main() !void {
_ = async amain();
resume frame;
return error.TestFailed;
}
fn amain() void {
var f = async func();
await f;
await f;
}
fn func() void {
suspend {
frame = @frame();
}
}
// run
// backend=stage1
// target=native

View file

@ -1,38 +0,0 @@
const std = @import("std");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
_ = message;
_ = stack_trace;
std.process.exit(0);
}
var failing_frame: @Frame(failing) = undefined;
pub fn main() !void {
const p = nonFailing();
resume p;
const p2 = async printTrace(p);
_ = p2;
return error.TestFailed;
}
fn nonFailing() anyframe->anyerror!void {
failing_frame = async failing();
return &failing_frame;
}
fn failing() anyerror!void {
suspend {}
return second();
}
fn second() callconv(.@"async") anyerror!void {
return error.Fail;
}
fn printTrace(p: anyframe->anyerror!void) void {
(await p) catch unreachable;
}
// run
// backend=stage1
// target=native

View file

@ -1,19 +0,0 @@
const std = @import("std");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
_ = message;
_ = stack_trace;
std.process.exit(0);
}
pub fn main() !void {
var p = async suspendOnce();
resume p; //ok
resume p; //bad
return error.TestFailed;
}
fn suspendOnce() void {
suspend {}
}
// run
// backend=stage1
// target=native

View file

@ -1,21 +0,0 @@
const std = @import("std");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
_ = message;
_ = stack_trace;
std.process.exit(0);
}
pub fn main() !void {
var frame = async first();
resume frame;
return error.TestFailed;
}
fn first() void {
other();
}
fn other() void {
suspend {}
}
// run
// backend=stage1
// target=native

View file

@ -1,22 +0,0 @@
const std = @import("std");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
_ = message;
_ = stack_trace;
std.process.exit(0);
}
pub fn main() !void {
var frame = async first();
resume frame;
return error.TestFailed;
}
fn first() void {
var frame = async other();
await frame;
}
fn other() void {
suspend {}
}
// run
// backend=stage1
// target=native

View file

@ -1,32 +0,0 @@
const std = @import("std");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
_ = message;
_ = stack_trace;
std.process.exit(0);
}
fn foo() void {
suspend {
global_frame = @frame();
}
var f = async bar(@frame());
_ = &f;
std.process.exit(1);
}
fn bar(frame: anyframe) void {
suspend {
resume frame;
}
std.process.exit(1);
}
var global_frame: anyframe = undefined;
pub fn main() !void {
_ = async foo();
resume global_frame;
std.process.exit(1);
}
// run
// backend=stage1
// target=native

View file

@ -1,27 +0,0 @@
const std = @import("std");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
_ = message;
_ = stack_trace;
std.process.exit(0);
}
fn foo() void {
var f = async bar(@frame());
_ = &f;
std.process.exit(1);
}
fn bar(frame: anyframe) void {
suspend {
resume frame;
}
std.process.exit(1);
}
pub fn main() !void {
_ = async foo();
return error.TestFailed;
}
// run
// backend=stage1
// target=native

View file

@ -710,8 +710,6 @@ fn tokenizeAndPrintRaw(
.keyword_align, .keyword_align,
.keyword_and, .keyword_and,
.keyword_asm, .keyword_asm,
.keyword_async,
.keyword_await,
.keyword_break, .keyword_break,
.keyword_catch, .keyword_catch,
.keyword_comptime, .keyword_comptime,

View file

@ -653,8 +653,6 @@ fn tokenizeAndPrint(arena: Allocator, out: anytype, raw_src: []const u8) !void {
.keyword_align, .keyword_align,
.keyword_and, .keyword_and,
.keyword_asm, .keyword_asm,
.keyword_async,
.keyword_await,
.keyword_break, .keyword_break,
.keyword_catch, .keyword_catch,
.keyword_comptime, .keyword_comptime,

View file

@ -50,8 +50,6 @@ zig_keywords = {
'anyframe', 'anyframe',
'anytype', 'anytype',
'asm', 'asm',
'async',
'await',
'break', 'break',
'callconv', 'callconv',
'catch', 'catch',