@@ -3844,6 +3844,25 @@ pub fn main() void {
3844
3844
{#header_open|@ArgType#}
3845
3845
<p>TODO</p>
3846
3846
{#header_close#}
3847
+ {#header_open|@atomicRmw#}
3848
+ <pre><code class="zig">@atomicRmw(comptime T: type, ptr: &T, comptime op: builtin.AtomicRmwOp, operand: T, comptime ordering: builtin.AtomicOrder) -> 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#}
3847
3866
{#header_open|@bitCast#}
3848
3867
<pre><code class="zig">@bitCast(comptime DestType: type, value: var) -> DestType</code></pre>
3849
3868
<p>
@@ -5714,7 +5733,7 @@ UseDecl = "use" Expression ";"
5714
5733
5715
5734
ExternDecl = "extern" option(String) (FnProto | VariableDeclaration) ";"
5716
5735
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
5718
5737
5719
5738
FnDef = option("inline" | "export") FnProto Block
5720
5739
@@ -5732,7 +5751,7 @@ ErrorSetExpr = (PrefixOpExpression "!" PrefixOpExpression) | PrefixOpExpression
5732
5751
5733
5752
BlockOrExpression = Block | Expression
5734
5753
5735
- Expression = TryExpression | ReturnExpression | BreakExpression | AssignmentExpression
5754
+ Expression = TryExpression | ReturnExpression | BreakExpression | AssignmentExpression | CancelExpression | ResumeExpression
5736
5755
5737
5756
AsmExpression = "asm" option("volatile") "(" String option(AsmOutput) ")"
5738
5757
@@ -5756,7 +5775,7 @@ AssignmentExpression = UnwrapExpression AssignmentOperator UnwrapExpression | Un
5756
5775
5757
5776
AssignmentOperator = "=" | "*=" | "/=" | "%=" | "+=" | "-=" | "<<=" | ">>=" | "&=" | "^=" | "|=" | "*%=" | "+%=" | "-%="
5758
5777
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)
5760
5779
5761
5780
CompTimeExpression(body) = "comptime" body
5762
5781
@@ -5774,12 +5793,20 @@ ReturnExpression = "return" option(Expression)
5774
5793
5775
5794
TryExpression = "try" Expression
5776
5795
5796
+ AwaitExpression = "await" Expression
5797
+
5777
5798
BreakExpression = "break" option(":" Symbol) option(Expression)
5778
5799
5800
+ CancelExpression = "cancel" Expression;
5801
+
5802
+ ResumeExpression = "resume" Expression;
5803
+
5779
5804
Defer(body) = ("defer" | "deferror") body
5780
5805
5781
5806
IfExpression(body) = "if" "(" Expression ")" body option("else" BlockExpression(body))
5782
5807
5808
+ SuspendExpression(body) = "suspend" option(("|" Symbol "|" body))
5809
+
5783
5810
IfErrorExpression(body) = "if" "(" Expression ")" option("|" option("*") Symbol "|") body "else" "|" Symbol "|" BlockExpression(body)
5784
5811
5785
5812
TestExpression(body) = "if" "(" Expression ")" option("|" option("*") Symbol "|") body option("else" BlockExpression(body))
@@ -5814,7 +5841,7 @@ MultiplyOperator = "||" | "*" | "/" | "%" | "**" | "*%"
5814
5841
5815
5842
PrefixOpExpression = PrefixOp ErrorSetExpr | SuffixOpExpression
5816
5843
5817
- SuffixOpExpression = PrimaryExpression option(FnCallExpression | ArrayAccessExpression | FieldAccessExpression | SliceExpression)
5844
+ SuffixOpExpression = ("async" option("(" Expression ")") PrimaryExpression FnCallExpression) | PrimaryExpression option(FnCallExpression | ArrayAccessExpression | FieldAccessExpression | SliceExpression)
5818
5845
5819
5846
FieldAccessExpression = "." Symbol
5820
5847
@@ -5830,15 +5857,15 @@ ContainerInitBody = list(StructLiteralField, ",") | list(Expression, ",")
5830
5857
5831
5858
StructLiteralField = "." Symbol "=" Expression
5832
5859
5833
- PrefixOp = "!" | "-" | "~" | "*" | ("&" option("align" "(" Expression option(":" Integer ":" Integer) ")" ) option("const") option("volatile")) | "?" | "??" | "-%" | "try"
5860
+ PrefixOp = "!" | "-" | "~" | "*" | ("&" option("align" "(" Expression option(":" Integer ":" Integer) ")" ) option("const") option("volatile")) | "?" | "??" | "-%" | "try" | "await"
5834
5861
5835
5862
PrimaryExpression = Integer | Float | String | CharLiteral | KeywordLiteral | GroupedExpression | BlockExpression(BlockOrExpression) | Symbol | ("@" Symbol FnCallExpression) | ArrayType | FnProto | AsmExpression | ContainerDecl | ("continue" option(":" Symbol)) | ErrorSetDecl
5836
5863
5837
5864
ArrayType : "[" option(Expression) "]" option("align" "(" Expression option(":" Integer ":" Integer) ")")) option("const") option("volatile") TypeExpr
5838
5865
5839
5866
GroupedExpression = "(" Expression ")"
5840
5867
5841
- KeywordLiteral = "true" | "false" | "null" | "undefined" | "error" | "this" | "unreachable"
5868
+ KeywordLiteral = "true" | "false" | "null" | "undefined" | "error" | "this" | "unreachable" | "suspend"
5842
5869
5843
5870
ErrorSetDecl = "error" "{" list(Symbol, ",") "}"
5844
5871
@@ -5922,7 +5949,7 @@ hljs.registerLanguage("zig", function(t) {
5922
5949
a = t.IR + "\\s*\\(",
5923
5950
c = {
5924
5951
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 ",
5926
5953
literal: "true false null undefined"
5927
5954
},
5928
5955
n = [e, t.CLCM, t.CBCM, s, r];
0 commit comments