Chromium Code Reviews| Index: test/mjsunit/wasm/wasm-module-builder.js |
| diff --git a/test/mjsunit/wasm/wasm-module-builder.js b/test/mjsunit/wasm/wasm-module-builder.js |
| index f0cf9d18d3570a5a6e161074f738609ff6d208b1..414b90707abdbaf736a84cbb70950549b7316509 100644 |
| --- a/test/mjsunit/wasm/wasm-module-builder.js |
| +++ b/test/mjsunit/wasm/wasm-module-builder.js |
| @@ -61,7 +61,12 @@ class Binary extends Array { |
| emit_section(section_code, content_generator) { |
| // Emit section name. |
| - this.emit_string(section_names[section_code]); |
| + if (section_code == kNameSectionCode) { |
| + this.emit_u8(kUnknownSectionCode); |
| + this.emit_string("name"); |
| + } else { |
| + this.emit_u8(section_code); |
| + } |
| // Emit the section to a temporary buffer: its full length isn't know yet. |
| let section = new Binary; |
| content_generator(section); |
| @@ -147,7 +152,7 @@ class WasmModuleBuilder { |
| addFunction(name, type) { |
| let type_index = (typeof type) == "number" ? type : this.addType(type); |
| let func = new WasmFunctionBuilder(name, type_index); |
| - func.index = this.functions.length; |
| + func.index = this.functions.length + this.imports.length; |
| this.functions.push(func); |
| return func; |
| } |
| @@ -182,7 +187,7 @@ class WasmModuleBuilder { |
| // Add type section |
| if (wasm.types.length > 0) { |
| if (debug) print("emitting types @ " + binary.length); |
| - binary.emit_section(kDeclTypes, section => { |
| + binary.emit_section(kTypeSectionCode, section => { |
| section.emit_varint(wasm.types.length); |
| for (let type of wasm.types) { |
| section.emit_u8(kWasmFunctionTypeForm); |
| @@ -198,27 +203,16 @@ class WasmModuleBuilder { |
| }); |
| } |
| - if (wasm.globals.length > 0) { |
| - if (debug) print ("emitting globals @ " + binary.length); |
| - binary.emit_section(kDeclGlobals, section => { |
| - section.emit_varint(wasm.globals.length); |
| - for (let global_type of wasm.globals) { |
| - section.emit_varint(0); // length of global name |
| - section.emit_u8(global_type); |
| - section.emit_u8(false); // we do not support exported globals |
| - } |
| - }); |
| - } |
| - |
| // Add imports section |
| if (wasm.imports.length > 0) { |
| if (debug) print("emitting imports @ " + binary.length); |
| - binary.emit_section(kDeclImports, section => { |
| + binary.emit_section(kImportSectionCode, section => { |
| section.emit_varint(wasm.imports.length); |
| for (let imp of wasm.imports) { |
| - section.emit_varint(imp.type); |
| section.emit_string(imp.module); |
| section.emit_string(imp.name || ''); |
| + section.emit_u8(kExternalFunction); |
| + section.emit_varint(imp.type); |
| } |
| }); |
| } |
| @@ -229,7 +223,7 @@ class WasmModuleBuilder { |
| let exports = 0; |
| if (wasm.functions.length > 0) { |
| if (debug) print("emitting function decls @ " + binary.length); |
| - binary.emit_section(kDeclFunctions, section => { |
| + binary.emit_section(kFunctionSectionCode, section => { |
| section.emit_varint(wasm.functions.length); |
| for (let func of wasm.functions) { |
| has_names = has_names || (func.name != undefined && |
| @@ -243,56 +237,108 @@ class WasmModuleBuilder { |
| // Add table. |
| if (wasm.table.length > 0) { |
| if (debug) print("emitting table @ " + binary.length); |
| - binary.emit_section(kDeclTable, section => { |
| + binary.emit_section(kTableSectionCode, section => { |
| + section.emit_u8(1); // one table entry |
| + section.emit_u8(kWasmAnyFunctionTypeForm); |
| + section.emit_u8(1); |
| + section.emit_varint(wasm.table.length); |
| section.emit_varint(wasm.table.length); |
| - if (wasm.pad !== null) { |
| - if (debug) print("emitting table padding @ " + binary.length); |
| - section.emit_varint(wasm.pad); |
| - } |
| - for (let index of wasm.table) { |
| - section.emit_varint(index); |
| - } |
| }); |
| } |
| // Add memory section |
| if (wasm.memory != undefined) { |
| if (debug) print("emitting memory @ " + binary.length); |
| - binary.emit_section(kDeclMemory, section => { |
| + binary.emit_section(kMemorySectionCode, section => { |
| + section.emit_u8(1); // one memory entry |
| + section.emit_varint(kResizableMaximumFlag); |
| section.emit_varint(wasm.memory.min); |
| section.emit_varint(wasm.memory.max); |
| - section.emit_u8(wasm.memory.exp ? 1 : 0); |
| }); |
| } |
| + // Add global section. |
| + if (wasm.globals.length > 0) { |
| + if (debug) print ("emitting globals @ " + binary.length); |
| + binary.emit_section(kGlobalSectionCode, section => { |
| + section.emit_varint(wasm.globals.length); |
| + for (let global_type of wasm.globals) { |
| + section.emit_u8(global_type); |
| + section.emit_u8(true); // mutable |
| + switch (global_type) { |
|
ahaas
2016/09/19 11:02:38
What about kGlobalIndex? Isn't that also a potenti
titzer
2016/09/19 11:37:03
Ah, kGlobalIndex is a member of the WasmExternalKi
|
| + case kAstI32: |
| + section.emit_u8(kExprI32Const); |
| + section.emit_u8(0); |
| + break; |
| + case kAstI64: |
| + section.emit_u8(kExprI64Const); |
| + section.emit_u8(0); |
| + break; |
| + case kAstF32: |
| + section.emit_u8(kExprF32Const); |
| + section.emit_u32(0); |
| + break; |
| + case kAstF64: |
| + section.emit_u8(kExprI32Const); |
| + section.emit_u32(0); |
| + section.emit_u32(0); |
| + break; |
| + } |
| + section.emit_u8(kExprEnd); // end of init expression |
| + } |
| + }); |
| + } |
| // Add export table. |
| - if (exports > 0) { |
| + var mem_export = (wasm.memory != undefined && wasm.memory.exp); |
| + if (exports > 0 || mem_export) { |
| if (debug) print("emitting exports @ " + binary.length); |
| - binary.emit_section(kDeclExports, section => { |
| - section.emit_varint(exports); |
| + binary.emit_section(kExportSectionCode, section => { |
| + section.emit_varint(exports + (mem_export ? 1 : 0)); |
| for (let func of wasm.functions) { |
| for (let exp of func.exports) { |
| - section.emit_varint(func.index); |
| section.emit_string(exp); |
| + section.emit_u8(kExternalFunction); |
| + section.emit_varint(func.index); |
| } |
| } |
| + if (mem_export) { |
| + section.emit_string("memory"); |
| + section.emit_u8(kExternalMemory); |
| + section.emit_u8(0); |
| + } |
| }); |
| } |
| // Add start function section. |
| if (wasm.start_index != undefined) { |
| if (debug) print("emitting start function @ " + binary.length); |
| - binary.emit_section(kDeclStart, section => { |
| + binary.emit_section(kStartSectionCode, section => { |
| section.emit_varint(wasm.start_index); |
| }); |
| } |
| + // Add table elements. |
| + if (wasm.table.length > 0) { |
| + if (debug) print("emitting table @ " + binary.length); |
| + binary.emit_section(kElementSectionCode, section => { |
| + section.emit_u8(1); |
| + section.emit_u8(0); // table index |
| + section.emit_u8(kExprI32Const); |
| + section.emit_u8(0); |
| + section.emit_u8(kExprEnd); |
| + section.emit_varint(wasm.table.length); |
| + for (let index of wasm.table) { |
| + section.emit_varint(index); |
| + } |
| + }); |
| + } |
| + |
| // Add function bodies. |
| if (wasm.functions.length > 0) { |
| // emit function bodies |
| if (debug) print("emitting code @ " + binary.length); |
| - binary.emit_section(kDeclCode, section => { |
| + binary.emit_section(kCodeSectionCode, section => { |
| section.emit_varint(wasm.functions.length); |
| for (let func of wasm.functions) { |
| // Function body length will be patched later. |
| @@ -331,10 +377,13 @@ class WasmModuleBuilder { |
| // Add data segments. |
| if (wasm.segments.length > 0) { |
| if (debug) print("emitting data segments @ " + binary.length); |
| - binary.emit_section(kDeclData, section => { |
| + binary.emit_section(kDataSectionCode, section => { |
| section.emit_varint(wasm.segments.length); |
| for (let seg of wasm.segments) { |
| + section.emit_u8(0); // linear memory index 0 |
| + section.emit_u8(kExprI32Const); |
| section.emit_varint(seg.addr); |
| + section.emit_u8(kExprEnd); |
| section.emit_varint(seg.data.length); |
| section.emit_bytes(seg.data); |
| } |
| @@ -350,7 +399,7 @@ class WasmModuleBuilder { |
| // Add function names. |
| if (has_names) { |
| if (debug) print("emitting names @ " + binary.length); |
| - binary.emit_section(kDeclNames, section => { |
| + binary.emit_section(kNameSectionCode, section => { |
| section.emit_varint(wasm.functions.length); |
| for (let func of wasm.functions) { |
| var name = func.name == undefined ? "" : func.name; |