Bug 266127

Summary: [Wasm-GC] Local init tracking should track unreachable local.set too
Product: WebKit Reporter: Asumu Takikawa <asumu>
Component: WebAssemblyAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 247394    

Asumu Takikawa
Reported 2023-12-08 18:38:04 PST
Example test cases: ``` //@ runWebAssemblySuite("--useWebAssemblyTypedFunctionReferences=true", "--useWebAssemblyGC=true") import * as assert from "../assert.js"; import { compile } from "./wast-wrapper.js"; function testUnreachable() { // A local.set in unreachable code should still count for init. compile(` (module (type (struct)) (func (local (ref 0)) (unreachable) (local.set 0 (struct.new 0)) (local.get 0) drop)) `); compile(` (module (type (struct)) (func (local (ref 0)) (unreachable) (local.tee 0 (struct.new 0)) drop (local.get 0) drop)) `); } testUnreachable() ``` These currently fail but should validate.
Attachments
Asumu Takikawa
Comment 1 2023-12-08 18:49:53 PST
EWS
Comment 2 2023-12-11 20:45:55 PST
Committed 271910@main (025c31d1220e): <https://commits.webkit.org/271910@main> Reviewed commits have been landed. Closing PR #21555 and removing active labels.
Radar WebKit Bug Importer
Comment 3 2023-12-11 20:47:14 PST
Note You need to log in before you can comment on or make changes to this bug.