Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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 common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

# Reset this number to 0 on major V8 upgrades.
# Increment by one for each non-official patch applied to deps/v8.
'v8_embedder_string': '-node.19',
'v8_embedder_string': '-node.20',

##### V8 defaults for Node.js #####

Expand Down
2 changes: 2 additions & 0 deletions deps/v8/src/codegen/external-reference.h
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,8 @@ enum class IsolateFieldId : uint8_t;
IF_WASM(V, wasm_WebAssemblyExceptionGetArg, \
"wasm::WebAssemblyExceptionGetArg") \
IF_WASM(V, wasm_WebAssemblyExceptionIs, "wasm::WebAssemblyExceptionIs") \
IF_WASM(V, wasm_WebAssemblyExceptionGetStack, \
"wasm::WebAssemblyExceptionGetStack") \
IF_WASM(V, wasm_WebAssemblyGlobal, "wasm::WebAssemblyGlobal") \
IF_WASM(V, wasm_WebAssemblyGlobalGetValue, \
"wasm::WebAssemblyGlobalGetValue") \
Expand Down
12 changes: 12 additions & 0 deletions deps/v8/src/wasm/wasm-js.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3119,6 +3119,15 @@ void WebAssemblyExceptionIsImpl(
info.GetReturnValue().Set(tag_object->tag() == *tag);
}

void WebAssemblyExceptionGetStackImpl(
const v8::FunctionCallbackInfo<v8::Value>& info) {
WasmJSApiScope js_api_scope{info, "WebAssembly.Exception.stack()"};
auto [isolate, i_isolate, thrower] = js_api_scope.isolates_and_thrower();
EXTRACT_THIS(exception, WasmExceptionPackage);

info.GetReturnValue().Set(v8::Undefined(isolate));
}

void WebAssemblyGlobalGetValueCommon(WasmJSApiScope& js_api_scope) {
auto [isolate, i_isolate, thrower] = js_api_scope.isolates_and_thrower();
auto& info = js_api_scope.callback_info(); // Needed by EXTRACT_THIS.
Expand Down Expand Up @@ -3562,6 +3571,7 @@ void WasmJs::PrepareForSnapshot(Isolate* isolate) {
{
DirectHandle<JSFunction> exception_constructor = InstallConstructorFunc(
isolate, webassembly, "Exception", wasm::WebAssemblyException);
exception_constructor->shared()->set_length(2);
SetDummyInstanceTemplate(isolate, exception_constructor);
DirectHandle<JSObject> exception_proto = SetupConstructor(
isolate, exception_constructor, WASM_EXCEPTION_PACKAGE_TYPE,
Expand All @@ -3571,6 +3581,8 @@ void WasmJs::PrepareForSnapshot(Isolate* isolate) {
wasm::WebAssemblyExceptionGetArg, 2);
InstallFunc(isolate, exception_proto, "is", wasm::WebAssemblyExceptionIs,
1);
InstallGetter(isolate, exception_proto, "stack",
wasm::WebAssemblyExceptionGetStack);
native_context->set_wasm_exception_constructor(*exception_constructor);

DirectHandle<Map> initial_map(exception_constructor->initial_map(),
Expand Down
1 change: 1 addition & 0 deletions deps/v8/src/wasm/wasm-js.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ V8_EXPORT_PRIVATE std::unique_ptr<WasmStreaming> StartStreamingForTesting(
V(WebAssemblyCompile) \
V(WebAssemblyException) \
V(WebAssemblyExceptionGetArg) \
V(WebAssemblyExceptionGetStack) \
V(WebAssemblyExceptionIs) \
V(WebAssemblyGlobal) \
V(WebAssemblyGlobalGetValue) \
Expand Down
10 changes: 10 additions & 0 deletions deps/v8/test/mjsunit/wasm/exceptions-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,19 @@ d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
print(arguments.callee.name);
let tag = new WebAssembly.Tag({parameters: []});
let exn = new WebAssembly.Exception(tag, []);
assertTrue('stack' in exn);
assertEquals(undefined, exn.stack);
exn = new WebAssembly.Exception(tag, [], {traceStack: false});
assertTrue('stack' in exn);
assertEquals(undefined, exn.stack);
exn = new WebAssembly.Exception(tag, [], {traceStack: true});
assertTrue(exn.stack.indexOf(arguments.callee.name) > 0);
assertThrows(() => new WebAssembly.Exception(tag, [], 0), TypeError,
/Argument 2 is not an object/);
// The stack getter may only be used with a receiver that is a
// WebAssembly.Exception.
let proto = WebAssembly.Exception.prototype;
assertThrows(() => proto.stack, TypeError);
})();

(function TestCatchJSException() {
Expand Down Expand Up @@ -319,3 +325,7 @@ function TestGetArgHelper(types_str, types, values) {
// Don't catch with implicit wrapping.
assertThrowsEquals(() => instance.exports.test(obj), obj);
})();

(function TestExceptionConstructorLength() {
assertEquals(2, WebAssembly.Exception.length);
})();
4 changes: 4 additions & 0 deletions deps/v8/test/wasm-js/wasm-js.status
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
'wpt/table/type.tentative': [FAIL],
'wpt/tag/type.tentative': [FAIL],

# TODO(mliedtke): This requires synchronizing the spec-tests with their newest version.
'wpt/exception/constructor.tentative': [FAIL],
'exception/constructor.tentative': [FAIL],

# Broken test (forgot to define JS function 'nulls()').
'table/grow-memory64': [FAIL],

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/wpt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Last update:
- url: https://github.com/web-platform-tests/wpt/tree/258f285de0/url
- urlpattern: https://github.com/web-platform-tests/wpt/tree/f07c03cbed/urlpattern
- user-timing: https://github.com/web-platform-tests/wpt/tree/5ae85bf826/user-timing
- wasm/jsapi: https://github.com/web-platform-tests/wpt/tree/65a2134d50/wasm/jsapi
- wasm/jsapi: https://github.com/web-platform-tests/wpt/tree/288c467d35/wasm/jsapi
- wasm/webapi: https://github.com/web-platform-tests/wpt/tree/fd1b23eeaa/wasm/webapi
- web-locks: https://github.com/web-platform-tests/wpt/tree/10a122a6bc/web-locks
- WebCryptoAPI: https://github.com/web-platform-tests/wpt/tree/2cb332d710/WebCryptoAPI
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/wpt/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"path": "user-timing"
},
"wasm/jsapi": {
"commit": "65a2134d50",
"commit": "288c467d350ec4b8e4fbc7f2ccb6119293186611",
"path": "wasm/jsapi"
},
"wasm/webapi": {
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
(module
(import "wasm:js/string-constants" "" (global $empty externref))
(import "wasm:js/string-constants" "\00" (global $null_byte externref))
(import "wasm:js/string-constants" "hello" (global $hello externref))
(import "wasm:js/string-constants" "\f0\9f\98\80" (global $emoji externref))

(export "empty" (global $empty))
(export "nullByte" (global $null_byte))
(export "hello" (global $hello))
(export "emoji" (global $emoji))
)
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ promise_test(async () => {

assert_equals(imports.length, 0);
}, "Source phase import should handle string builtin import reflection correctly");

Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// META: global=window,dedicatedworker,jsshell,shadowrealm

promise_test(async () => {
const wasmModuleSource = await import.source("./resources/js-string-constants.wasm");

const instance = new WebAssembly.Instance(wasmModuleSource, {});

assert_equals(instance.exports.empty.value, "");
assert_equals(instance.exports.nullByte.value, "\0");
assert_equals(instance.exports.hello.value, "hello");
assert_equals(instance.exports.emoji.value, "\u{1F600}");
}, "String constants from wasm:js/string-constants should be supported in source phase imports");

promise_test(async () => {
const wasmModuleSource = await import.source("./resources/js-string-constants.wasm");

const exports = WebAssembly.Module.exports(wasmModuleSource);
const exportNames = exports.map((exp) => exp.name);

assert_true(exportNames.includes("empty"));
assert_true(exportNames.includes("nullByte"));
assert_true(exportNames.includes("hello"));
assert_true(exportNames.includes("emoji"));
}, "Source phase import should properly expose string constants exports");

promise_test(async () => {
const wasmModuleSource = await import.source("./resources/js-string-constants.wasm");

const imports = WebAssembly.Module.imports(wasmModuleSource);

assert_equals(imports.length, 0);
}, "Source phase import should handle string constants import reflection correctly");
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ promise_test(async () => {
assert_equals(wasmModule.testString("hello"), 1);
assert_equals(wasmModule.testString(42), 0);
}, "String builtins should be supported in imports in ESM integration");

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// META: global=window,dedicatedworker,jsshell,shadowrealm

promise_test(async () => {
const wasmModule = await import("./resources/js-string-constants.wasm");

assert_equals(wasmModule.empty, "");
assert_equals(wasmModule.nullByte, "\0");
assert_equals(wasmModule.hello, "hello");
assert_equals(wasmModule.emoji, "\u{1F600}");
}, "String constants from wasm:js/string-constants should be supported in ESM integration");
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
function assert_throws_wasm(fn, message) {
try {
fn();
assert_not_reached(`expected to throw with ${message}`);
assert_unreached(`expected to throw with ${message}`);
} catch (e) {
assert_true(e instanceof WebAssembly.Exception, `Error should be a WebAssembly.Exception with ${message}`);
// According to the spec discussion, the current `WebAssembly.Exception` does not have `[[ErrorData]]` semantically.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test(() => {
}, "name");

test(() => {
assert_function_length(WebAssembly.Exception, 1, "WebAssembly.Exception");
assert_function_length(WebAssembly.Exception, 2, "WebAssembly.Exception");
}, "length");

test(() => {
Expand Down
13 changes: 13 additions & 0 deletions test/fixtures/wpt/wasm/jsapi/js-string/basic.any.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,19 @@ test(() => {
a, a
), a !== null && !isString, WebAssembly.RuntimeError);

if (a !== null && !isString) {
assert_throws_if(() => assert_same_behavior(
builtinExports['equals'],
polyfillExports['equals'],
null, a
), true, WebAssembly.RuntimeError);
assert_throws_if(() => assert_same_behavior(
builtinExports['equals'],
polyfillExports['equals'],
a, null
), true, WebAssembly.RuntimeError);
}

assert_throws_if(() => assert_same_behavior(
builtinExports['compare'],
polyfillExports['compare'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ test(() => {
const toStringTag = Object.getOwnPropertyDescriptor(AbstractModuleSource.prototype, Symbol.toStringTag).get;

assert_equals(toStringTag.call(module), "WebAssembly.Module");
assert_throws_js(TypeError, () => toStringTag.call({}));
assert_equals(toStringTag.call({}), undefined);
}, "AbstractModuleSourceProto toStringTag brand check");
Loading