1. WebAssembly
  2. Reference
  3. WebAssembly control flow instructions
  4. br

br

The br statement branches to a loop, a block, or an if statement.

Other variants of br include br_if and br_table.

Try it

(module
 ;; Import the browser console object, which you'll need to pass in from JavaScript
 (import "console" "log" (func $log (param i32)))
 (func
 (block $my_block
 ;; Break out of the block
 ;; If this is removed, the code will throw an error when it reaches `unreachable`
 br $my_block
 ;; The code will never reach this point since we broke out of the block
 unreachable
 )
 )
 (start 1) ;; run the first function automatically
)
const url = "{%wasm-url%}";
await WebAssembly.instantiateStreaming(fetch(url), { console });

Syntax

wat
;; label the loop so that it can be branched to
(loop $my_loop
 ;; branch to the loop.
 ;; most of the time you'll want to put this in an if statement and only branch on condition,
 ;; otherwise you have an infinite loop.
 br $my_loop
)
Instruction Binary opcode
br 0x0c

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.

AltStyle によって変換されたページ (->オリジナル) /