Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/fuzz_opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def is_git_repo():
'shared-absheaptype.wast',
'type-ssa-shared.wast',
'shared-ref_eq.wast',
'shared-null-no-gc.wast',
'shared-types-no-gc.wast',
]


Expand Down
22 changes: 6 additions & 16 deletions src/wasm/wasm-binary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1520,23 +1520,13 @@ void WasmBinaryWriter::writeType(Type type) {
// internally use more refined versions of those types, but we cannot emit
// those more refined types.
if (!wasm->features.hasGC()) {
if (Type::isSubType(type, Type(HeapType::func, Nullable))) {
o << S32LEB(BinaryConsts::EncodedType::funcref);
return;
}
if (Type::isSubType(type, Type(HeapType::ext, Nullable))) {
o << S32LEB(BinaryConsts::EncodedType::externref);
return;
}
if (Type::isSubType(type, Type(HeapType::exn, Nullable))) {
o << S32LEB(BinaryConsts::EncodedType::exnref);
return;
}
if (Type::isSubType(type, Type(HeapType::string, Nullable))) {
o << S32LEB(BinaryConsts::EncodedType::stringref);
return;
auto ht = type.getHeapType();
if (ht.isBasic() && ht.getBasic(Unshared) == HeapType::string) {
// Do not overgeneralize stringref to anyref.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We actually already have a couple tests for this case, and I wanted to avoid breaking them. It's admittedly a little odd (i.e. definitely wrong) that we're ok generalizing none to any even in cases where it is used for null strings, but we're not ok with generalizing stringref itself to anyref, but I don't think it's a big deal in practice since stringref effectively does not exist.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good. Please add a comment though as the special-casing here looks surprising. lgtm with that.

type = Type(HeapTypes::string.getBasic(ht.getShared()), Nullable);
} else {
type = Type(type.getHeapType().getTop(), Nullable);
}
WASM_UNREACHABLE("bad type without GC");
}
auto heapType = type.getHeapType();
if (type.isNullable() && heapType.isBasic() && !heapType.isShared()) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited.

;; Test that we can write a binary without crashing when using a shared bottom
;; type without GC enabled.
;; Test that we can write a binary without crashing when using shared reference
;; types without GC enabled.

;; RUN: wasm-opt %s --enable-reference-types --enable-shared-everything --roundtrip -S -o - | filecheck %s

(module
;; CHECK: (func $test
;; CHECK: (func $null
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (ref.null (shared nofunc))
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $test
(func $null
(drop
(ref.null (shared func))
)
)

;; CHECK: (func $signature (result (ref null (shared func)))
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
(func $signature (result (ref null (shared func)))
(unreachable)
)
)