fill: Wasm Textinstruktion
Die fill
-Speicherinstruktion setzt alle Bytes in einem Speicherbereich auf ein gegebenes Byte.
Die Instruktion gibt keinen Wert zurück. Sie verursacht eine Ausnahme, wenn der angegebene Speicherbereich außerhalb der Grenzen liegt.
Syntax
Fill innerhalb des Standardspeichers
wasm
;; Fill region at offset/range in default memory with 255
i32.const 200 ;; The pointer to the region to update
i32.const 255 ;; The value to set each byte to (must be < 256)
i32.const 100 ;; The number of bytes to update
memory.fill ;; Fill default memory
;; Fill default memory using an S-function
(memory.fill (i32.const 200) (i32.const 255) (i32.const 100))
Fill spezifizierter Speicher (wenn Multi-Memory unterstützt wird)
wasm
;; Fill specific memory referenced by its index
i32.const 200 ;; The pointer to the region to update
i32.const 255 ;; The value to set each byte to (must be < 256)
i32.const 100 ;; The number of bytes to update
memory.fill (memory 1) ;; Fill memory with index 1
;; Fill memory referenced by its name
i32.const 200 ;; The pointer to the region to update
i32.const 255 ;; The value to set each byte to (must be < 256)
i32.const 100 ;; The number of bytes to update
memory.fill (memory $memoryName) ;; Fill memory with name "$memoryName"
;; Fill same memory using an S function
(memory.fill (memory $memoryName) (i32.const 200) (i32.const 255) (i32.const 100))
Instruktionen und Opcodes
Instruktion | Binärer Opcode |
---|---|
memory.fill |
0xFC 0x0b |
Spezifikationen
Specification |
---|
Unknown specification # syntax-instr-memory |
Browser-Kompatibilität
BCD tables only load in the browser
Hinweis: Speichernutzung in Wasm-Modulen entspricht der WebAssembly.Memory
JavaScript-API.
Der multiMemory-Schlüssel zeigt Versionen an, in denen store
mit einem spezifizierten Speicher verwendet werden kann.