MCPcopy Create free account
hub / github.com/nodejs/node / exportTable64Getter

Function exportTable64Getter

deps/v8/test/mjsunit/wasm/table64-copy.js:8–15  ·  view source on GitHub ↗
(builder, table, type)

Source from the content-addressed store, hash-verified

6d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
7
8function exportTable64Getter(builder, table, type) {
9 const table64_get_sig = makeSig([kWasmI64], [type]);
10 builder.addFunction('table64_get', table64_get_sig)
11 .addBody([
12 kExprLocalGet, 0,
13 kExprTableGet, table.index])
14 .exportFunc();
15}
16
17function exportTable64Copy(builder, table_dst, table_src) {
18 const kSig_v_lll = makeSig([kWasmI64, kWasmI64, kWasmI64], []);

Callers 1

table64-copy.jsFile · 0.70

Calls 4

makeSigFunction · 0.70
exportFuncMethod · 0.45
addBodyMethod · 0.45
addFunctionMethod · 0.45

Tested by

no test coverage detected