Skip to content

Commit 7d494b3

Browse files
committed
Merge branch 'async'
closes #727
2 parents 6568be5 + de5c0c9 commit 7d494b3

18 files changed

+2913
-160
lines changed

doc/langref.html.in

+34-7
Original file line numberDiff line numberDiff line change
@@ -3844,6 +3844,25 @@ pub fn main() void {
38443844
{#header_open|@ArgType#}
38453845
<p>TODO</p>
38463846
{#header_close#}
3847+
{#header_open|@atomicRmw#}
3848+
<pre><code class="zig">@atomicRmw(comptime T: type, ptr: &amp;T, comptime op: builtin.AtomicRmwOp, operand: T, comptime ordering: builtin.AtomicOrder) -&gt; T</code></pre>
3849+
<p>
3850+
This builtin function atomically modifies memory and then returns the previous value.
3851+
</p>
3852+
<p>
3853+
<code>T</code> must be a pointer type, a <code>bool</code>,
3854+
or an integer whose bit count meets these requirements:
3855+
</p>
3856+
<ul>
3857+
<li>At least 8</li>
3858+
<li>At most the same as usize</li>
3859+
<li>Power of 2</li>
3860+
</ul>
3861+
<p>
3862+
TODO right now bool is not accepted. Also I think we could make non powers of 2 work fine, maybe
3863+
we can remove this restriction
3864+
</p>
3865+
{#header_close#}
38473866
{#header_open|@bitCast#}
38483867
<pre><code class="zig">@bitCast(comptime DestType: type, value: var) -&gt; DestType</code></pre>
38493868
<p>
@@ -5714,7 +5733,7 @@ UseDecl = "use" Expression ";"
57145733

57155734
ExternDecl = "extern" option(String) (FnProto | VariableDeclaration) ";"
57165735

5717-
FnProto = option("nakedcc" | "stdcallcc" | "extern") "fn" option(Symbol) ParamDeclList option("align" "(" Expression ")") option("section" "(" Expression ")") option("!") TypeExpr
5736+
FnProto = option("nakedcc" | "stdcallcc" | "extern" | ("async" option("(" Expression ")"))) "fn" option(Symbol) ParamDeclList option("align" "(" Expression ")") option("section" "(" Expression ")") option("!") TypeExpr
57185737

57195738
FnDef = option("inline" | "export") FnProto Block
57205739

@@ -5732,7 +5751,7 @@ ErrorSetExpr = (PrefixOpExpression "!" PrefixOpExpression) | PrefixOpExpression
57325751

57335752
BlockOrExpression = Block | Expression
57345753

5735-
Expression = TryExpression | ReturnExpression | BreakExpression | AssignmentExpression
5754+
Expression = TryExpression | ReturnExpression | BreakExpression | AssignmentExpression | CancelExpression | ResumeExpression
57365755

57375756
AsmExpression = "asm" option("volatile") "(" String option(AsmOutput) ")"
57385757

@@ -5756,7 +5775,7 @@ AssignmentExpression = UnwrapExpression AssignmentOperator UnwrapExpression | Un
57565775

57575776
AssignmentOperator = "=" | "*=" | "/=" | "%=" | "+=" | "-=" | "&lt;&lt;=" | "&gt;&gt;=" | "&amp;=" | "^=" | "|=" | "*%=" | "+%=" | "-%="
57585777

5759-
BlockExpression(body) = Block | IfExpression(body) | IfErrorExpression(body) | TestExpression(body) | WhileExpression(body) | ForExpression(body) | SwitchExpression | CompTimeExpression(body)
5778+
BlockExpression(body) = Block | IfExpression(body) | IfErrorExpression(body) | TestExpression(body) | WhileExpression(body) | ForExpression(body) | SwitchExpression | CompTimeExpression(body) | SuspendExpression(body)
57605779

57615780
CompTimeExpression(body) = "comptime" body
57625781

@@ -5774,12 +5793,20 @@ ReturnExpression = "return" option(Expression)
57745793

57755794
TryExpression = "try" Expression
57765795

5796+
AwaitExpression = "await" Expression
5797+
57775798
BreakExpression = "break" option(":" Symbol) option(Expression)
57785799

5800+
CancelExpression = "cancel" Expression;
5801+
5802+
ResumeExpression = "resume" Expression;
5803+
57795804
Defer(body) = ("defer" | "deferror") body
57805805

57815806
IfExpression(body) = "if" "(" Expression ")" body option("else" BlockExpression(body))
57825807

5808+
SuspendExpression(body) = "suspend" option(("|" Symbol "|" body))
5809+
57835810
IfErrorExpression(body) = "if" "(" Expression ")" option("|" option("*") Symbol "|") body "else" "|" Symbol "|" BlockExpression(body)
57845811

57855812
TestExpression(body) = "if" "(" Expression ")" option("|" option("*") Symbol "|") body option("else" BlockExpression(body))
@@ -5814,7 +5841,7 @@ MultiplyOperator = "||" | "*" | "/" | "%" | "**" | "*%"
58145841

58155842
PrefixOpExpression = PrefixOp ErrorSetExpr | SuffixOpExpression
58165843

5817-
SuffixOpExpression = PrimaryExpression option(FnCallExpression | ArrayAccessExpression | FieldAccessExpression | SliceExpression)
5844+
SuffixOpExpression = ("async" option("(" Expression ")") PrimaryExpression FnCallExpression) | PrimaryExpression option(FnCallExpression | ArrayAccessExpression | FieldAccessExpression | SliceExpression)
58185845

58195846
FieldAccessExpression = "." Symbol
58205847

@@ -5830,15 +5857,15 @@ ContainerInitBody = list(StructLiteralField, ",") | list(Expression, ",")
58305857

58315858
StructLiteralField = "." Symbol "=" Expression
58325859

5833-
PrefixOp = "!" | "-" | "~" | "*" | ("&amp;" option("align" "(" Expression option(":" Integer ":" Integer) ")" ) option("const") option("volatile")) | "?" | "??" | "-%" | "try"
5860+
PrefixOp = "!" | "-" | "~" | "*" | ("&amp;" option("align" "(" Expression option(":" Integer ":" Integer) ")" ) option("const") option("volatile")) | "?" | "??" | "-%" | "try" | "await"
58345861

58355862
PrimaryExpression = Integer | Float | String | CharLiteral | KeywordLiteral | GroupedExpression | BlockExpression(BlockOrExpression) | Symbol | ("@" Symbol FnCallExpression) | ArrayType | FnProto | AsmExpression | ContainerDecl | ("continue" option(":" Symbol)) | ErrorSetDecl
58365863

58375864
ArrayType : "[" option(Expression) "]" option("align" "(" Expression option(":" Integer ":" Integer) ")")) option("const") option("volatile") TypeExpr
58385865

58395866
GroupedExpression = "(" Expression ")"
58405867

5841-
KeywordLiteral = "true" | "false" | "null" | "undefined" | "error" | "this" | "unreachable"
5868+
KeywordLiteral = "true" | "false" | "null" | "undefined" | "error" | "this" | "unreachable" | "suspend"
58425869

58435870
ErrorSetDecl = "error" "{" list(Symbol, ",") "}"
58445871

@@ -5922,7 +5949,7 @@ hljs.registerLanguage("zig", function(t) {
59225949
a = t.IR + "\\s*\\(",
59235950
c = {
59245951
keyword: "const align var extern stdcallcc nakedcc volatile export pub noalias inline struct packed enum union break return try catch test continue unreachable comptime and or asm defer errdefer if else switch while for fn use bool f32 f64 void type noreturn error i8 u8 i16 u16 i32 u32 i64 u64 isize usize i8w u8w i16w i32w u32w i64w u64w isizew usizew c_short c_ushort c_int c_uint c_long c_ulong c_longlong c_ulonglong",
5925-
built_in: "breakpoint returnAddress frameAddress fieldParentPtr setFloatMode IntType OpaqueType compileError compileLog setCold setRuntimeSafety setEvalBranchQuota offsetOf memcpy inlineCall setGlobalLinkage setGlobalSection divTrunc divFloor enumTagName intToPtr ptrToInt panic canImplicitCast ptrCast bitCast rem mod memset sizeOf alignOf alignCast maxValue minValue memberCount memberName memberType typeOf addWithOverflow subWithOverflow mulWithOverflow shlWithOverflow shlExact shrExact cInclude cDefine cUndef ctz clz import cImport errorName embedFile cmpxchg fence divExact truncate",
5952+
built_in: "breakpoint returnAddress frameAddress fieldParentPtr setFloatMode IntType OpaqueType compileError compileLog setCold setRuntimeSafety setEvalBranchQuota offsetOf memcpy inlineCall setGlobalLinkage setGlobalSection divTrunc divFloor enumTagName intToPtr ptrToInt panic canImplicitCast ptrCast bitCast rem mod memset sizeOf alignOf alignCast maxValue minValue memberCount memberName memberType typeOf addWithOverflow subWithOverflow mulWithOverflow shlWithOverflow shlExact shrExact cInclude cDefine cUndef ctz clz import cImport errorName embedFile cmpxchg fence divExact truncate atomicRmw",
59265953
literal: "true false null undefined"
59275954
},
59285955
n = [e, t.CLCM, t.CBCM, s, r];

0 commit comments

Comments
 (0)