2020-02-13 19:37:35 +00:00
|
|
|
// Copyright 2020 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-06-01 12:46:36 +00:00
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js')
|
2020-02-13 19:37:35 +00:00
|
|
|
|
|
|
|
let binary = new Binary();
|
|
|
|
binary.emit_header();
|
|
|
|
binary.emit_bytes([kTypeSectionCode, 4, 1, kWasmFunctionTypeForm, 0, 0]);
|
|
|
|
binary.emit_bytes([kFunctionSectionCode, 2, 1, 0]);
|
|
|
|
binary.emit_bytes([kCodeSectionCode, 6, 1, 4]);
|
|
|
|
binary.emit_bytes([kUnknownSectionCode, 2, 1, 0]);
|
|
|
|
binary.emit_bytes([kUnknownSectionCode, 2, 1, 0]);
|
|
|
|
binary.emit_bytes([kUnknownSectionCode, 2, 1, 0]);
|
|
|
|
binary.emit_bytes([ kExprEnd]);
|
|
|
|
let buffer = binary.trunc_buffer();
|
2020-06-23 14:45:51 +00:00
|
|
|
WebAssembly.compile(buffer).then(
|
|
|
|
() => assertUnreachable(), () => {/* ignore */});
|