Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: src/wasm/wasm-module.cc

Issue 2395133002: Revert of [wasm] Refactor import handling for 0xC. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/wasm/wasm-module.h ('k') | src/wasm/wasm-module-builder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <memory> 5 #include <memory>
6 6
7 #include "src/base/atomic-utils.h" 7 #include "src/base/atomic-utils.h"
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 9
10 #include "src/macro-assembler.h" 10 #include "src/macro-assembler.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // TODO(clemensh): Remove function name array, extract names from module 58 // TODO(clemensh): Remove function name array, extract names from module
59 // bytes. 59 // bytes.
60 kWasmFunctionNamesArray, 60 kWasmFunctionNamesArray,
61 kWasmModuleBytesString, 61 kWasmModuleBytesString,
62 kWasmDebugInfo, 62 kWasmDebugInfo,
63 kWasmNumImportedFunctions, 63 kWasmNumImportedFunctions,
64 kWasmModuleInternalFieldCount 64 kWasmModuleInternalFieldCount
65 }; 65 };
66 66
67 enum WasmImportData { 67 enum WasmImportData {
68 kImportKind, // Smi. an ExternalKind
69 kImportGlobalType, // Smi. Type for globals.
70 kImportIndex, // Smi. index for the import.
71 kModuleName, // String 68 kModuleName, // String
72 kFunctionName, // maybe String 69 kFunctionName, // maybe String
73 kOutputCount, // Smi. an uint32_t 70 kOutputCount, // Smi. an uint32_t
74 kSignature, // ByteArray. A copy of the data in FunctionSig 71 kSignature, // ByteArray. A copy of the data in FunctionSig
75 kWasmImportDataSize // Sentinel value. 72 kWasmImportDataSize // Sentinel value.
76 }; 73 };
77 74
78 enum WasmExportData { 75 enum WasmExportData {
79 kExportKind, // Smi. an ExternalKind 76 kExportName, // String
80 kExportGlobalType, // Smi. Type for globals. 77 kExportArity, // Smi, an int
81 kExportName, // String 78 kExportedFunctionIndex, // Smi, an uint32_t
82 kExportArity, // Smi, an int 79 kExportedSignature, // ByteArray. A copy of the data in FunctionSig
83 kExportIndex, // Smi, an uint32_t 80 kWasmExportDataSize // Sentinel value.
84 kExportedSignature, // ByteArray. A copy of the data in FunctionSig
85 kWasmExportDataSize // Sentinel value.
86 };
87
88 enum WasmGlobalInitData {
89 kGlobalInitKind, // 0 = constant, 1 = global index
90 kGlobalInitType, // Smi. Type for globals.
91 kGlobalInitIndex, // Smi, an uint32_t
92 kGlobalInitValue, // Number.
93 kWasmGlobalInitDataSize
94 }; 81 };
95 82
96 enum WasmSegmentInfo { 83 enum WasmSegmentInfo {
97 kDestInitKind, // 0 = constant, 1 = global index 84 kDestAddr, // Smi. an uint32_t
98 kDestAddrValue, // Smi. an uint32_t
99 kSourceSize, // Smi. an uint32_t 85 kSourceSize, // Smi. an uint32_t
100 kWasmSegmentInfoSize // Sentinel value. 86 kWasmSegmentInfoSize // Sentinel value.
101 }; 87 };
102 88
103 enum WasmIndirectFunctionTableData { 89 enum WasmIndirectFunctionTableData {
104 kSize, // Smi. an uint32_t 90 kSize, // Smi. an uint32_t
105 kTable, // FixedArray of indirect function table 91 kTable, // FixedArray of indirect function table
106 kWasmIndirectFunctionTableDataSize // Sentinel value. 92 kWasmIndirectFunctionTableDataSize // Sentinel value.
107 }; 93 };
108 94
109 byte* raw_buffer_ptr(MaybeHandle<JSArrayBuffer> buffer, int offset) {
110 return static_cast<byte*>(buffer.ToHandleChecked()->backing_store()) + offset;
111 }
112
113 uint32_t GetMinModuleMemSize(const WasmModule* module) { 95 uint32_t GetMinModuleMemSize(const WasmModule* module) {
114 return WasmModule::kPageSize * module->min_mem_pages; 96 return WasmModule::kPageSize * module->min_mem_pages;
115 } 97 }
116 98
99 void LoadDataSegments(Handle<WasmCompiledModule> compiled_module,
100 Address mem_addr, size_t mem_size) {
101 CHECK(compiled_module->has_data_segments() ==
102 compiled_module->has_data_segments_info());
103
104 // If we have neither, we're done.
105 if (!compiled_module->has_data_segments()) return;
106
107 Handle<ByteArray> data = compiled_module->data_segments();
108 Handle<FixedArray> segments = compiled_module->data_segments_info();
109
110 uint32_t last_extraction_pos = 0;
111 for (int i = 0; i < segments->length(); ++i) {
112 Handle<ByteArray> segment =
113 Handle<ByteArray>(ByteArray::cast(segments->get(i)));
114 uint32_t dest_addr = static_cast<uint32_t>(segment->get_int(kDestAddr));
115 uint32_t source_size = static_cast<uint32_t>(segment->get_int(kSourceSize));
116 CHECK_LT(dest_addr, mem_size);
117 CHECK_LE(source_size, mem_size);
118 CHECK_LE(dest_addr, mem_size - source_size);
119 byte* addr = mem_addr + dest_addr;
120 data->copy_out(last_extraction_pos, addr, source_size);
121 last_extraction_pos += source_size;
122 }
123 }
124
117 void SaveDataSegmentInfo(Factory* factory, const WasmModule* module, 125 void SaveDataSegmentInfo(Factory* factory, const WasmModule* module,
118 Handle<WasmCompiledModule> compiled_module) { 126 Handle<WasmCompiledModule> compiled_module) {
119 Handle<FixedArray> segments = factory->NewFixedArray( 127 Handle<FixedArray> segments = factory->NewFixedArray(
120 static_cast<int>(module->data_segments.size()), TENURED); 128 static_cast<int>(module->data_segments.size()), TENURED);
121 uint32_t data_size = 0; 129 uint32_t data_size = 0;
122 for (const WasmDataSegment& segment : module->data_segments) { 130 for (const WasmDataSegment& segment : module->data_segments) {
123 if (segment.source_size == 0) continue; 131 if (segment.source_size == 0) continue;
124 data_size += segment.source_size; 132 data_size += segment.source_size;
125 } 133 }
126 Handle<ByteArray> data = factory->NewByteArray(data_size, TENURED); 134 Handle<ByteArray> data = factory->NewByteArray(data_size, TENURED);
127 135
128 uint32_t last_insertion_pos = 0; 136 uint32_t last_insertion_pos = 0;
129 for (uint32_t i = 0; i < module->data_segments.size(); ++i) { 137 for (uint32_t i = 0; i < module->data_segments.size(); ++i) {
130 const WasmDataSegment& segment = module->data_segments[i]; 138 const WasmDataSegment& segment = module->data_segments[i];
131 if (segment.source_size == 0) continue; 139 if (segment.source_size == 0) continue;
132 Handle<ByteArray> js_segment = 140 Handle<ByteArray> js_segment =
133 factory->NewByteArray(kWasmSegmentInfoSize * sizeof(uint32_t), TENURED); 141 factory->NewByteArray(kWasmSegmentInfoSize * sizeof(uint32_t), TENURED);
134 // TODO(titzer): add support for global offsets for dest_addr 142 // TODO(titzer): add support for global offsets for dest_addr
135 CHECK_EQ(WasmInitExpr::kI32Const, segment.dest_addr.kind); 143 CHECK_EQ(WasmInitExpr::kI32Const, segment.dest_addr.kind);
136 js_segment->set_int(kDestAddrValue, segment.dest_addr.val.i32_const); 144 js_segment->set_int(kDestAddr, segment.dest_addr.val.i32_const);
137 js_segment->set_int(kSourceSize, segment.source_size); 145 js_segment->set_int(kSourceSize, segment.source_size);
138 segments->set(i, *js_segment); 146 segments->set(i, *js_segment);
139 data->copy_in(last_insertion_pos, 147 data->copy_in(last_insertion_pos,
140 module->module_start + segment.source_offset, 148 module->module_start + segment.source_offset,
141 segment.source_size); 149 segment.source_size);
142 last_insertion_pos += segment.source_size; 150 last_insertion_pos += segment.source_size;
143 } 151 }
144 compiled_module->set_data_segments_info(segments); 152 compiled_module->set_data_segments_info(segments);
145 compiled_module->set_data_segments(data); 153 compiled_module->set_data_segments(data);
146 } 154 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 AllowDeferredHandleDereference embedding_raw_address; 198 AllowDeferredHandleDereference embedding_raw_address;
191 int mask = (1 << RelocInfo::WASM_MEMORY_REFERENCE) | 199 int mask = (1 << RelocInfo::WASM_MEMORY_REFERENCE) |
192 (1 << RelocInfo::WASM_MEMORY_SIZE_REFERENCE); 200 (1 << RelocInfo::WASM_MEMORY_SIZE_REFERENCE);
193 for (RelocIterator it(*function, mask); !it.done(); it.next()) { 201 for (RelocIterator it(*function, mask); !it.done(); it.next()) {
194 it.rinfo()->update_wasm_memory_reference(old_start, start, prev_size, 202 it.rinfo()->update_wasm_memory_reference(old_start, start, prev_size,
195 new_size); 203 new_size);
196 } 204 }
197 } 205 }
198 } 206 }
199 207
208 // Allocate memory for a module instance as a new JSArrayBuffer.
209 Handle<JSArrayBuffer> AllocateMemory(ErrorThrower* thrower, Isolate* isolate,
210 uint32_t min_mem_pages) {
211 if (min_mem_pages > WasmModule::kMaxMemPages) {
212 thrower->Error("Out of memory: wasm memory too large");
213 return Handle<JSArrayBuffer>::null();
214 }
215 Handle<JSArrayBuffer> mem_buffer =
216 NewArrayBuffer(isolate, min_mem_pages * WasmModule::kPageSize);
217
218 if (mem_buffer.is_null()) {
219 thrower->Error("Out of memory: wasm memory");
220 }
221 return mem_buffer;
222 }
223
200 void RelocateGlobals(Handle<JSObject> instance, Address old_start, 224 void RelocateGlobals(Handle<JSObject> instance, Address old_start,
201 Address globals_start) { 225 Address globals_start) {
202 Handle<FixedArray> functions = Handle<FixedArray>( 226 Handle<FixedArray> functions = Handle<FixedArray>(
203 FixedArray::cast(instance->GetInternalField(kWasmModuleCodeTable))); 227 FixedArray::cast(instance->GetInternalField(kWasmModuleCodeTable)));
204 uint32_t function_count = static_cast<uint32_t>(functions->length()); 228 uint32_t function_count = static_cast<uint32_t>(functions->length());
205 for (uint32_t i = 0; i < function_count; ++i) { 229 for (uint32_t i = 0; i < function_count; ++i) {
206 Handle<Code> function = Handle<Code>(Code::cast(functions->get(i))); 230 Handle<Code> function = Handle<Code>(Code::cast(functions->get(i)));
207 AllowDeferredHandleDereference embedding_raw_address; 231 AllowDeferredHandleDereference embedding_raw_address;
208 int mask = 1 << RelocInfo::WASM_GLOBAL_REFERENCE; 232 int mask = 1 << RelocInfo::WASM_GLOBAL_REFERENCE;
209 for (RelocIterator it(*function, mask); !it.done(); it.next()) { 233 for (RelocIterator it(*function, mask); !it.done(); it.next()) {
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 JSObject* owner) { 368 JSObject* owner) {
345 Address old_address = nullptr; 369 Address old_address = nullptr;
346 Object* stored_value = owner->GetInternalField(kWasmGlobalsArrayBuffer); 370 Object* stored_value = owner->GetInternalField(kWasmGlobalsArrayBuffer);
347 if (stored_value != undefined) { 371 if (stored_value != undefined) {
348 old_address = static_cast<Address>( 372 old_address = static_cast<Address>(
349 JSArrayBuffer::cast(stored_value)->backing_store()); 373 JSArrayBuffer::cast(stored_value)->backing_store());
350 } 374 }
351 return old_address; 375 return old_address;
352 } 376 }
353 377
354 Handle<FixedArray> EncodeImports(Factory* factory, const WasmModule* module) { 378 Handle<FixedArray> GetImportsData(Factory* factory, const WasmModule* module) {
355 Handle<FixedArray> ret = factory->NewFixedArray( 379 Handle<FixedArray> ret = factory->NewFixedArray(
356 static_cast<int>(module->import_table.size()), TENURED); 380 static_cast<int>(module->import_table.size()), TENURED);
357
358 for (size_t i = 0; i < module->import_table.size(); ++i) { 381 for (size_t i = 0; i < module->import_table.size(); ++i) {
359 const WasmImport& import = module->import_table[i]; 382 const WasmImport& import = module->import_table[i];
360 Handle<FixedArray> encoded_import = 383 if (import.kind != kExternalFunction) continue;
361 factory->NewFixedArray(kWasmImportDataSize, TENURED);
362 encoded_import->set(kImportKind, Smi::FromInt(import.kind));
363 encoded_import->set(kImportIndex, Smi::FromInt(import.index));
364
365 // Add the module and function name.
366 WasmName module_name = module->GetNameOrNull(import.module_name_offset, 384 WasmName module_name = module->GetNameOrNull(import.module_name_offset,
367 import.module_name_length); 385 import.module_name_length);
368 WasmName function_name = module->GetNameOrNull(import.field_name_offset, 386 WasmName function_name = module->GetNameOrNull(import.field_name_offset,
369 import.field_name_length); 387 import.field_name_length);
370 388
371 Handle<String> module_name_string = 389 Handle<String> module_name_string =
372 factory->InternalizeUtf8String(module_name); 390 factory->InternalizeUtf8String(module_name);
391 Handle<String> function_name_string =
392 function_name.is_empty()
393 ? Handle<String>::null()
394 : factory->InternalizeUtf8String(function_name);
395 FunctionSig* fsig = module->functions[import.index].sig;
396 Handle<ByteArray> sig = factory->NewByteArray(
397 static_cast<int>(fsig->parameter_count() + fsig->return_count()),
398 TENURED);
399 sig->copy_in(0, reinterpret_cast<const byte*>(fsig->raw_data()),
400 sig->length());
401 Handle<FixedArray> encoded_import =
402 factory->NewFixedArray(kWasmImportDataSize, TENURED);
373 encoded_import->set(kModuleName, *module_name_string); 403 encoded_import->set(kModuleName, *module_name_string);
374 if (!function_name.is_empty()) { 404 if (!function_name_string.is_null()) {
375 Handle<String> function_name_string =
376 factory->InternalizeUtf8String(function_name);
377 encoded_import->set(kFunctionName, *function_name_string); 405 encoded_import->set(kFunctionName, *function_name_string);
378 } 406 }
379 407 encoded_import->set(kOutputCount,
380 switch (import.kind) { 408 Smi::FromInt(static_cast<int>(fsig->return_count())));
381 case kExternalFunction: { 409 encoded_import->set(kSignature, *sig);
382 // Encode the signature into the import.
383 FunctionSig* fsig = module->functions[import.index].sig;
384 Handle<ByteArray> sig = factory->NewByteArray(
385 static_cast<int>(fsig->parameter_count() + fsig->return_count()),
386 TENURED);
387 sig->copy_in(0, reinterpret_cast<const byte*>(fsig->raw_data()),
388 sig->length());
389 encoded_import->set(
390 kOutputCount, Smi::FromInt(static_cast<int>(fsig->return_count())));
391 encoded_import->set(kSignature, *sig);
392 break;
393 }
394 case kExternalTable:
395 // Nothing extra required for imported tables.
396 break;
397 case kExternalMemory:
398 // Nothing extra required for imported memories.
399 break;
400 case kExternalGlobal: {
401 // Encode the offset and the global type into the import.
402 const WasmGlobal& global = module->globals[import.index];
403 TRACE("import[%zu].type = %s\n", i, WasmOpcodes::TypeName(global.type));
404 encoded_import->set(
405 kImportGlobalType,
406 Smi::FromInt(WasmOpcodes::LocalTypeCodeFor(global.type)));
407 encoded_import->set(kImportIndex, Smi::FromInt(global.offset));
408 break;
409 }
410 }
411 ret->set(static_cast<int>(i), *encoded_import); 410 ret->set(static_cast<int>(i), *encoded_import);
412 } 411 }
413 return ret; 412 return ret;
414 } 413 }
415 414
415 static MaybeHandle<JSFunction> ReportFFIError(
416 ErrorThrower* thrower, const char* error, uint32_t index,
417 Handle<String> module_name, MaybeHandle<String> function_name) {
418 Handle<String> function_name_handle;
419 if (function_name.ToHandle(&function_name_handle)) {
420 thrower->Error("Import #%d module=\"%.*s\" function=\"%.*s\" error: %s",
421 index, module_name->length(), module_name->ToCString().get(),
422 function_name_handle->length(),
423 function_name_handle->ToCString().get(), error);
424 } else {
425 thrower->Error("Import #%d module=\"%.*s\" error: %s", index,
426 module_name->length(), module_name->ToCString().get(),
427 error);
428 }
429 thrower->Error("Import ");
430 return MaybeHandle<JSFunction>();
431 }
432
433 static MaybeHandle<JSReceiver> LookupFunction(
434 ErrorThrower* thrower, Factory* factory, Handle<JSReceiver> ffi,
435 uint32_t index, Handle<String> module_name,
436 MaybeHandle<String> function_name) {
437 if (ffi.is_null()) {
438 return ReportFFIError(thrower, "FFI is not an object", index, module_name,
439 function_name);
440 }
441
442 // Look up the module first.
443 MaybeHandle<Object> result = Object::GetProperty(ffi, module_name);
444 if (result.is_null()) {
445 return ReportFFIError(thrower, "module not found", index, module_name,
446 function_name);
447 }
448
449 Handle<Object> module = result.ToHandleChecked();
450
451 if (!module->IsJSReceiver()) {
452 return ReportFFIError(thrower, "module is not an object or function", index,
453 module_name, function_name);
454 }
455
456 Handle<Object> function;
457 if (!function_name.is_null()) {
458 // Look up the function in the module.
459 MaybeHandle<Object> result =
460 Object::GetProperty(module, function_name.ToHandleChecked());
461 if (result.is_null()) {
462 return ReportFFIError(thrower, "function not found", index, module_name,
463 function_name);
464 }
465 function = result.ToHandleChecked();
466 } else {
467 // No function specified. Use the "default export".
468 function = module;
469 }
470
471 if (!function->IsCallable()) {
472 return ReportFFIError(thrower, "not a callable", index, module_name,
473 function_name);
474 }
475
476 return Handle<JSReceiver>::cast(function);
477 }
478
479 Handle<Code> CompileImportWrapper(Isolate* isolate,
480 const Handle<JSReceiver> ffi, int index,
481 Handle<FixedArray> import_data,
482 ErrorThrower* thrower) {
483 Handle<FixedArray> data =
484 import_data->GetValueChecked<FixedArray>(isolate, index);
485 Handle<String> module_name =
486 data->GetValueChecked<String>(isolate, kModuleName);
487 MaybeHandle<String> function_name =
488 data->GetValue<String>(isolate, kFunctionName);
489
490 // TODO(mtrofin): this is an uint32_t, actually. We should rationalize
491 // it when we rationalize signed/unsigned stuff.
492 int ret_count = Smi::cast(data->get(kOutputCount))->value();
493 CHECK_GE(ret_count, 0);
494 Handle<ByteArray> sig_data =
495 data->GetValueChecked<ByteArray>(isolate, kSignature);
496 int sig_data_size = sig_data->length();
497 int param_count = sig_data_size - ret_count;
498 CHECK(param_count >= 0);
499
500 MaybeHandle<JSReceiver> function = LookupFunction(
501 thrower, isolate->factory(), ffi, index, module_name, function_name);
502 if (function.is_null()) return Handle<Code>::null();
503 Handle<Code> code;
504 Handle<JSReceiver> target = function.ToHandleChecked();
505 bool isMatch = false;
506 Handle<Code> export_wrapper_code;
507 if (target->IsJSFunction()) {
508 Handle<JSFunction> func = Handle<JSFunction>::cast(target);
509 export_wrapper_code = handle(func->code());
510 if (export_wrapper_code->kind() == Code::JS_TO_WASM_FUNCTION) {
511 int exported_param_count =
512 Smi::cast(func->GetInternalField(kInternalArity))->value();
513 Handle<ByteArray> exportedSig = Handle<ByteArray>(
514 ByteArray::cast(func->GetInternalField(kInternalSignature)));
515 if (exported_param_count == param_count &&
516 exportedSig->length() == sig_data->length() &&
517 memcmp(exportedSig->GetDataStartAddress(),
518 sig_data->GetDataStartAddress(), exportedSig->length()) == 0) {
519 isMatch = true;
520 }
521 }
522 }
523 if (isMatch) {
524 int wasm_count = 0;
525 int const mask = RelocInfo::ModeMask(RelocInfo::CODE_TARGET);
526 for (RelocIterator it(*export_wrapper_code, mask); !it.done(); it.next()) {
527 RelocInfo* rinfo = it.rinfo();
528 Address target_address = rinfo->target_address();
529 Code* target = Code::GetCodeFromTargetAddress(target_address);
530 if (target->kind() == Code::WASM_FUNCTION) {
531 ++wasm_count;
532 code = handle(target);
533 }
534 }
535 DCHECK(wasm_count == 1);
536 return code;
537 } else {
538 // Copy the signature to avoid a raw pointer into a heap object when
539 // GC can happen.
540 Zone zone(isolate->allocator());
541 MachineRepresentation* reps =
542 zone.NewArray<MachineRepresentation>(sig_data_size);
543 memcpy(reps, sig_data->GetDataStartAddress(),
544 sizeof(MachineRepresentation) * sig_data_size);
545 FunctionSig sig(ret_count, param_count, reps);
546
547 return compiler::CompileWasmToJSWrapper(isolate, target, &sig, index,
548 module_name, function_name);
549 }
550 }
551
416 void InitializeParallelCompilation( 552 void InitializeParallelCompilation(
417 Isolate* isolate, const std::vector<WasmFunction>& functions, 553 Isolate* isolate, const std::vector<WasmFunction>& functions,
418 std::vector<compiler::WasmCompilationUnit*>& compilation_units, 554 std::vector<compiler::WasmCompilationUnit*>& compilation_units,
419 ModuleEnv& module_env, ErrorThrower* thrower) { 555 ModuleEnv& module_env, ErrorThrower* thrower) {
420 for (uint32_t i = FLAG_skip_compiling_wasm_funcs; i < functions.size(); ++i) { 556 for (uint32_t i = FLAG_skip_compiling_wasm_funcs; i < functions.size(); ++i) {
421 const WasmFunction* func = &functions[i]; 557 const WasmFunction* func = &functions[i];
422 compilation_units[i] = 558 compilation_units[i] =
423 func->imported ? nullptr : new compiler::WasmCompilationUnit( 559 func->imported ? nullptr : new compiler::WasmCompilationUnit(
424 thrower, isolate, &module_env, func, i); 560 thrower, isolate, &module_env, func, i);
425 } 561 }
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 max_mem_pages(0), 1001 max_mem_pages(0),
866 mem_export(false), 1002 mem_export(false),
867 start_function_index(-1), 1003 start_function_index(-1),
868 origin(kWasmOrigin), 1004 origin(kWasmOrigin),
869 globals_size(0), 1005 globals_size(0),
870 num_imported_functions(0), 1006 num_imported_functions(0),
871 num_declared_functions(0), 1007 num_declared_functions(0),
872 num_exported_functions(0), 1008 num_exported_functions(0),
873 pending_tasks(new base::Semaphore(0)) {} 1009 pending_tasks(new base::Semaphore(0)) {}
874 1010
875 void EncodeInit(const WasmModule* module, Factory* factory,
876 Handle<FixedArray> entry, int kind_index, int value_index,
877 const WasmInitExpr& expr) {
878 entry->set(kind_index, Smi::FromInt(0));
879
880 Handle<Object> value;
881 switch (expr.kind) {
882 case WasmInitExpr::kGlobalIndex: {
883 TRACE(" kind = 1, global index %u\n", expr.val.global_index);
884 entry->set(kind_index, Smi::FromInt(1));
885 uint32_t offset = module->globals[expr.val.global_index].offset;
886 entry->set(value_index, Smi::FromInt(offset));
887 return;
888 }
889 case WasmInitExpr::kI32Const:
890 TRACE(" kind = 0, i32 = %d\n", expr.val.i32_const);
891 value = factory->NewNumber(expr.val.i32_const);
892 break;
893 case WasmInitExpr::kI64Const:
894 // TODO(titzer): implement initializers for i64 globals.
895 UNREACHABLE();
896 break;
897 case WasmInitExpr::kF32Const:
898 TRACE(" kind = 0, f32 = %f\n", expr.val.f32_const);
899 value = factory->NewNumber(expr.val.f32_const);
900 break;
901 case WasmInitExpr::kF64Const:
902 TRACE(" kind = 0, f64 = %lf\n", expr.val.f64_const);
903 value = factory->NewNumber(expr.val.f64_const);
904 break;
905 default:
906 UNREACHABLE();
907 }
908 entry->set(value_index, *value);
909 }
910
911 MaybeHandle<WasmCompiledModule> WasmModule::CompileFunctions( 1011 MaybeHandle<WasmCompiledModule> WasmModule::CompileFunctions(
912 Isolate* isolate, ErrorThrower* thrower) const { 1012 Isolate* isolate, ErrorThrower* thrower) const {
913 Factory* factory = isolate->factory(); 1013 Factory* factory = isolate->factory();
914 1014
915 MaybeHandle<WasmCompiledModule> nothing; 1015 MaybeHandle<WasmCompiledModule> nothing;
916 1016
917 WasmModuleInstance temp_instance(this); 1017 WasmModuleInstance temp_instance(this);
918 temp_instance.context = isolate->native_context(); 1018 temp_instance.context = isolate->native_context();
919 temp_instance.mem_size = GetMinModuleMemSize(this); 1019 temp_instance.mem_size = GetMinModuleMemSize(this);
920 temp_instance.mem_start = nullptr; 1020 temp_instance.mem_start = nullptr;
(...skipping 24 matching lines...) Expand all
945 module_env.origin = origin; 1045 module_env.origin = origin;
946 1046
947 // The {code_table} array contains import wrappers and functions (which 1047 // The {code_table} array contains import wrappers and functions (which
948 // are both included in {functions.size()}, and export wrappers. 1048 // are both included in {functions.size()}, and export wrappers.
949 int code_table_size = 1049 int code_table_size =
950 static_cast<int>(functions.size() + num_exported_functions); 1050 static_cast<int>(functions.size() + num_exported_functions);
951 Handle<FixedArray> code_table = 1051 Handle<FixedArray> code_table =
952 factory->NewFixedArray(static_cast<int>(code_table_size), TENURED); 1052 factory->NewFixedArray(static_cast<int>(code_table_size), TENURED);
953 1053
954 // Initialize the code table with placeholders. 1054 // Initialize the code table with placeholders.
955 for (uint32_t i = 0; i < functions.size(); ++i) { 1055 for (uint32_t i = 0; i < functions.size(); i++) {
956 Code::Kind kind = Code::WASM_FUNCTION; 1056 Code::Kind kind = Code::WASM_FUNCTION;
957 if (i < num_imported_functions) kind = Code::WASM_TO_JS_FUNCTION; 1057 if (i < num_imported_functions) kind = Code::WASM_TO_JS_FUNCTION;
958 Handle<Code> placeholder = CreatePlaceholder(factory, i, kind); 1058 Handle<Code> placeholder = CreatePlaceholder(factory, i, kind);
959 code_table->set(static_cast<int>(i), *placeholder); 1059 code_table->set(static_cast<int>(i), *placeholder);
960 temp_instance.function_code[i] = placeholder; 1060 temp_instance.function_code[i] = placeholder;
961 } 1061 }
962 1062
963 isolate->counters()->wasm_functions_per_module()->AddSample( 1063 isolate->counters()->wasm_functions_per_module()->AddSample(
964 static_cast<int>(functions.size())); 1064 static_cast<int>(functions.size()));
965 if (!FLAG_trace_wasm_decoder && FLAG_wasm_num_compilation_tasks != 0) { 1065 if (!FLAG_trace_wasm_decoder && FLAG_wasm_num_compilation_tasks != 0) {
966 // Avoid a race condition by collecting results into a second vector. 1066 // Avoid a race condition by collecting results into a second vector.
967 std::vector<Handle<Code>> results; 1067 std::vector<Handle<Code>> results;
968 results.reserve(temp_instance.function_code.size()); 1068 results.reserve(temp_instance.function_code.size());
969 for (size_t i = 0; i < temp_instance.function_code.size(); ++i) { 1069 for (size_t i = 0; i < temp_instance.function_code.size(); i++) {
970 results.push_back(temp_instance.function_code[i]); 1070 results.push_back(temp_instance.function_code[i]);
971 } 1071 }
972 CompileInParallel(isolate, this, results, thrower, &module_env); 1072 CompileInParallel(isolate, this, results, thrower, &module_env);
973 1073
974 for (size_t i = 0; i < results.size(); ++i) { 1074 for (size_t i = 0; i < results.size(); i++) {
975 temp_instance.function_code[i] = results[i]; 1075 temp_instance.function_code[i] = results[i];
976 } 1076 }
977 } else { 1077 } else {
978 CompileSequentially(isolate, this, temp_instance.function_code, thrower, 1078 CompileSequentially(isolate, this, temp_instance.function_code, thrower,
979 &module_env); 1079 &module_env);
980 } 1080 }
981 if (thrower->error()) return nothing; 1081 if (thrower->error()) return nothing;
982 1082
983 // At this point, compilation has completed. Update the code table. 1083 // At this point, compilation has completed. Update the code table.
984 for (size_t i = FLAG_skip_compiling_wasm_funcs; 1084 for (size_t i = FLAG_skip_compiling_wasm_funcs;
(...skipping 11 matching lines...) Expand all
996 // TODO(mtrofin): do we need to flush the cache here? 1096 // TODO(mtrofin): do we need to flush the cache here?
997 Assembler::FlushICache(isolate, code->instruction_start(), 1097 Assembler::FlushICache(isolate, code->instruction_start(),
998 code->instruction_size()); 1098 code->instruction_size());
999 } 1099 }
1000 } 1100 }
1001 1101
1002 // Create the compiled module object, and populate with compiled functions 1102 // Create the compiled module object, and populate with compiled functions
1003 // and information needed at instantiation time. This object needs to be 1103 // and information needed at instantiation time. This object needs to be
1004 // serializable. Instantiation may occur off a deserialized version of this 1104 // serializable. Instantiation may occur off a deserialized version of this
1005 // object. 1105 // object.
1006 Handle<WasmCompiledModule> ret = 1106 Handle<WasmCompiledModule> ret = WasmCompiledModule::New(
1007 WasmCompiledModule::New(isolate, min_mem_pages, globals_size, origin); 1107 isolate, min_mem_pages, globals_size, mem_export, origin);
1008 ret->set_code_table(code_table); 1108 ret->set_code_table(code_table);
1009 if (!indirect_table.is_null()) { 1109 if (!indirect_table.is_null()) {
1010 ret->set_indirect_function_tables(indirect_table.ToHandleChecked()); 1110 ret->set_indirect_function_tables(indirect_table.ToHandleChecked());
1011 } 1111 }
1112 Handle<FixedArray> import_data = GetImportsData(factory, this);
1113 ret->set_import_data(import_data);
1012 1114
1013 // Create and set import data. 1115 // Compile exported function wrappers.
1014 ret->set_imports(EncodeImports(factory, this)); 1116 int export_size = static_cast<int>(num_exported_functions);
1015
1016 // Create and set export data.
1017 int export_size = static_cast<int>(export_table.size());
1018 if (export_size > 0) { 1117 if (export_size > 0) {
1019 Handle<FixedArray> exports = factory->NewFixedArray(export_size, TENURED); 1118 Handle<FixedArray> exports = factory->NewFixedArray(export_size, TENURED);
1020 int index = 0; 1119 int index = -1;
1021 int func_index = 0;
1022 1120
1023 for (const WasmExport& exp : export_table) { 1121 for (const WasmExport& exp : export_table) {
1024 if (thrower->error()) return nothing; 1122 if (exp.kind != kExternalFunction)
1025 Handle<FixedArray> encoded_export = 1123 continue; // skip non-function exports.
1124 index++;
1125 Handle<FixedArray> export_data =
1026 factory->NewFixedArray(kWasmExportDataSize, TENURED); 1126 factory->NewFixedArray(kWasmExportDataSize, TENURED);
1127 FunctionSig* funcSig = functions[exp.index].sig;
1128 Handle<ByteArray> exportedSig =
1129 factory->NewByteArray(static_cast<int>(funcSig->parameter_count() +
1130 funcSig->return_count()),
1131 TENURED);
1132 exportedSig->copy_in(0,
1133 reinterpret_cast<const byte*>(funcSig->raw_data()),
1134 exportedSig->length());
1135 export_data->set(kExportedSignature, *exportedSig);
1027 WasmName str = GetName(exp.name_offset, exp.name_length); 1136 WasmName str = GetName(exp.name_offset, exp.name_length);
1028 Handle<String> name = factory->InternalizeUtf8String(str); 1137 Handle<String> name = factory->InternalizeUtf8String(str);
1029 encoded_export->set(kExportKind, Smi::FromInt(exp.kind)); 1138 Handle<Code> code = code_table->GetValueChecked<Code>(isolate, exp.index);
1030 encoded_export->set(kExportName, *name); 1139 Handle<Code> export_code = compiler::CompileJSToWasmWrapper(
1031 encoded_export->set(kExportIndex, 1140 isolate, &module_env, code, exp.index);
1032 Smi::FromInt(static_cast<int>(exp.index))); 1141 if (thrower->error()) return nothing;
1033 exports->set(index, *encoded_export); 1142 export_data->set(kExportName, *name);
1034 1143 export_data->set(kExportArity,
1035 switch (exp.kind) { 1144 Smi::FromInt(static_cast<int>(
1036 case kExternalFunction: { 1145 functions[exp.index].sig->parameter_count())));
1037 // Copy the signature and arity. 1146 export_data->set(kExportedFunctionIndex,
1038 FunctionSig* funcSig = functions[exp.index].sig; 1147 Smi::FromInt(static_cast<int>(exp.index)));
1039 Handle<ByteArray> exportedSig = factory->NewByteArray( 1148 exports->set(index, *export_data);
1040 static_cast<int>(funcSig->parameter_count() + 1149 code_table->set(static_cast<int>(functions.size() + index), *export_code);
1041 funcSig->return_count()),
1042 TENURED);
1043 exportedSig->copy_in(
1044 0, reinterpret_cast<const byte*>(funcSig->raw_data()),
1045 exportedSig->length());
1046 encoded_export->set(kExportedSignature, *exportedSig);
1047 encoded_export->set(
1048 kExportArity,
1049 Smi::FromInt(static_cast<int>(funcSig->parameter_count())));
1050
1051 // Compile a wrapper for an exported function.
1052 Handle<Code> code =
1053 code_table->GetValueChecked<Code>(isolate, exp.index);
1054 Handle<Code> export_code = compiler::CompileJSToWasmWrapper(
1055 isolate, &module_env, code, exp.index);
1056 int code_table_index =
1057 static_cast<int>(functions.size() + func_index);
1058 code_table->set(code_table_index, *export_code);
1059 encoded_export->set(kExportIndex, Smi::FromInt(code_table_index));
1060 ++func_index;
1061 }
1062 case kExternalTable:
1063 // Nothing special about exported tables.
1064 break;
1065 case kExternalMemory:
1066 // Nothing special about exported tables.
1067 break;
1068 case kExternalGlobal: {
1069 // Encode the global type and the global offset.
1070 const WasmGlobal& global = globals[exp.index];
1071 encoded_export->set(
1072 kExportGlobalType,
1073 Smi::FromInt(WasmOpcodes::LocalTypeCodeFor(global.type)));
1074 encoded_export->set(kExportIndex, Smi::FromInt(global.offset));
1075 break;
1076 }
1077 }
1078 ++index;
1079 } 1150 }
1080 ret->set_exports(exports); 1151 ret->set_exports(exports);
1081 } 1152 }
1082 1153
1083 // Create and set init data.
1084 int init_size = static_cast<int>(globals.size());
1085 if (init_size > 0) {
1086 Handle<FixedArray> inits = factory->NewFixedArray(init_size, TENURED);
1087 int index = 0;
1088 for (const WasmGlobal& global : globals) {
1089 // Skip globals that have no initializer (e.g. imported ones).
1090 if (global.init.kind == WasmInitExpr::kNone) continue;
1091
1092 Handle<FixedArray> encoded_init =
1093 factory->NewFixedArray(kWasmGlobalInitDataSize, TENURED);
1094 inits->set(index, *encoded_init);
1095 TRACE("init[%d].type = %s\n", index, WasmOpcodes::TypeName(global.type));
1096
1097 encoded_init->set(
1098 kGlobalInitType,
1099 Smi::FromInt(WasmOpcodes::LocalTypeCodeFor(global.type)));
1100 encoded_init->set(kGlobalInitIndex, Smi::FromInt(global.offset));
1101 EncodeInit(this, factory, encoded_init, kGlobalInitKind, kGlobalInitValue,
1102 global.init);
1103 ++index;
1104 }
1105 inits->Shrink(index);
1106 ret->set_inits(inits);
1107 }
1108
1109 // Record data for startup function. 1154 // Record data for startup function.
1110 if (start_function_index >= 0) { 1155 if (start_function_index >= 0) {
1111 HandleScope scope(isolate); 1156 HandleScope scope(isolate);
1112 Handle<FixedArray> startup_data = 1157 Handle<FixedArray> startup_data =
1113 factory->NewFixedArray(kWasmExportDataSize, TENURED); 1158 factory->NewFixedArray(kWasmExportDataSize, TENURED);
1114 startup_data->set(kExportArity, Smi::FromInt(0)); 1159 startup_data->set(kExportArity, Smi::FromInt(0));
1115 startup_data->set(kExportIndex, Smi::FromInt(start_function_index)); 1160 startup_data->set(kExportedFunctionIndex,
1161 Smi::FromInt(start_function_index));
1116 ret->set_startup_function(startup_data); 1162 ret->set_startup_function(startup_data);
1117 } 1163 }
1118 1164
1119 // TODO(wasm): saving the module bytes for debugging is wasteful. We should 1165 // TODO(wasm): saving the module bytes for debugging is wasteful. We should
1120 // consider downloading this on-demand. 1166 // consider downloading this on-demand.
1121 { 1167 {
1122 size_t module_bytes_len = module_end - module_start; 1168 size_t module_bytes_len = module_end - module_start;
1123 DCHECK_LE(module_bytes_len, static_cast<size_t>(kMaxInt)); 1169 DCHECK_LE(module_bytes_len, static_cast<size_t>(kMaxInt));
1124 Vector<const uint8_t> module_bytes_vec(module_start, 1170 Vector<const uint8_t> module_bytes_vec(module_start,
1125 static_cast<int>(module_bytes_len)); 1171 static_cast<int>(module_bytes_len));
1126 Handle<String> module_bytes_string = 1172 Handle<String> module_bytes_string =
1127 factory->NewStringFromOneByte(module_bytes_vec, TENURED) 1173 factory->NewStringFromOneByte(module_bytes_vec, TENURED)
1128 .ToHandleChecked(); 1174 .ToHandleChecked();
1129 ret->set_module_bytes(module_bytes_string); 1175 ret->set_module_bytes(module_bytes_string);
1130 } 1176 }
1131 1177
1132 Handle<ByteArray> function_name_table = 1178 Handle<ByteArray> function_name_table =
1133 BuildFunctionNamesTable(isolate, module_env.module); 1179 BuildFunctionNamesTable(isolate, module_env.module);
1134 ret->set_function_names(function_name_table); 1180 ret->set_function_names(function_name_table);
1135 if (data_segments.size() > 0) SaveDataSegmentInfo(factory, this, ret); 1181 if (data_segments.size() > 0) SaveDataSegmentInfo(factory, this, ret);
1136 DCHECK_EQ(ret->default_mem_size(), temp_instance.mem_size); 1182 DCHECK_EQ(ret->default_mem_size(), temp_instance.mem_size);
1137 return ret; 1183 return ret;
1138 } 1184 }
1139 1185
1140 // A helper class to simplify instantiating a module from a compiled module.
1141 // It closes over the {Isolate}, the {ErrorThrower}, the {WasmCompiledModule},
1142 // etc.
1143 class WasmInstanceBuilder {
1144 public:
1145 WasmInstanceBuilder(Isolate* isolate, ErrorThrower* thrower,
1146 Handle<JSObject> module_object, Handle<JSReceiver> ffi,
1147 Handle<JSArrayBuffer> memory)
1148 : isolate_(isolate),
1149 thrower_(thrower),
1150 module_object_(module_object),
1151 ffi_(ffi),
1152 memory_(memory) {}
1153
1154 // Build an instance, in all of its glory.
1155 MaybeHandle<JSObject> Build() {
1156 MaybeHandle<JSObject> nothing;
1157 HistogramTimerScope wasm_instantiate_module_time_scope(
1158 isolate_->counters()->wasm_instantiate_module_time());
1159 Factory* factory = isolate_->factory();
1160
1161 //--------------------------------------------------------------------------
1162 // Reuse the compiled module (if no owner), otherwise clone.
1163 //--------------------------------------------------------------------------
1164 Handle<FixedArray> code_table;
1165 Handle<FixedArray> old_code_table;
1166 Handle<JSObject> owner;
1167 // If we don't clone, this will be null(). Otherwise, this will
1168 // be a weak link to the original. If we lose the original to GC,
1169 // this will be a cleared. We'll link the instances chain last.
1170 MaybeHandle<WeakCell> link_to_original;
1171
1172 TRACE("Starting new module instantiation\n");
1173 {
1174 Handle<WasmCompiledModule> original(
1175 WasmCompiledModule::cast(module_object_->GetInternalField(0)),
1176 isolate_);
1177 // Always make a new copy of the code_table, since the old_code_table
1178 // may still have placeholders for imports.
1179 old_code_table = original->code_table();
1180 code_table = factory->CopyFixedArray(old_code_table);
1181
1182 if (original->has_weak_owning_instance()) {
1183 WeakCell* tmp = original->ptr_to_weak_owning_instance();
1184 DCHECK(!tmp->cleared());
1185 // There is already an owner, clone everything.
1186 owner = Handle<JSObject>(JSObject::cast(tmp->value()), isolate_);
1187 // Insert the latest clone in front.
1188 TRACE("Cloning from %d\n", original->instance_id());
1189 compiled_module_ = WasmCompiledModule::Clone(isolate_, original);
1190 // Replace the strong reference to point to the new instance here.
1191 // This allows any of the other instances, including the original,
1192 // to be collected.
1193 module_object_->SetInternalField(0, *compiled_module_);
1194 compiled_module_->set_weak_module_object(
1195 original->weak_module_object());
1196 link_to_original = factory->NewWeakCell(original);
1197 // Don't link to original here. We remember the original
1198 // as a weak link. If that link isn't clear by the time we finish
1199 // instantiating this instance, then we link it at that time.
1200 compiled_module_->reset_weak_next_instance();
1201
1202 // Clone the code for WASM functions and exports.
1203 for (int i = 0; i < code_table->length(); ++i) {
1204 Handle<Code> orig_code =
1205 code_table->GetValueChecked<Code>(isolate_, i);
1206 switch (orig_code->kind()) {
1207 case Code::WASM_TO_JS_FUNCTION:
1208 // Imports will be overwritten with newly compiled wrappers.
1209 break;
1210 case Code::JS_TO_WASM_FUNCTION:
1211 case Code::WASM_FUNCTION: {
1212 Handle<Code> code = factory->CopyCode(orig_code);
1213 code_table->set(i, *code);
1214 break;
1215 }
1216 default:
1217 UNREACHABLE();
1218 }
1219 }
1220 RecordStats(isolate_, code_table);
1221 } else {
1222 // There was no owner, so we can reuse the original.
1223 compiled_module_ = original;
1224 TRACE("Reusing existing instance %d\n",
1225 compiled_module_->instance_id());
1226 }
1227 compiled_module_->set_code_table(code_table);
1228 }
1229
1230 //--------------------------------------------------------------------------
1231 // Allocate the instance object.
1232 //--------------------------------------------------------------------------
1233 Handle<Map> map = factory->NewMap(
1234 JS_OBJECT_TYPE,
1235 JSObject::kHeaderSize + kWasmModuleInternalFieldCount * kPointerSize);
1236 Handle<JSObject> instance = factory->NewJSObjectFromMap(map, TENURED);
1237 instance->SetInternalField(kWasmModuleCodeTable, *code_table);
1238
1239 //--------------------------------------------------------------------------
1240 // Set up the memory for the new instance.
1241 //--------------------------------------------------------------------------
1242 MaybeHandle<JSArrayBuffer> old_memory;
1243 // TODO(titzer): handle imported memory properly.
1244
1245 uint32_t min_mem_pages = compiled_module_->min_memory_pages();
1246 isolate_->counters()->wasm_min_mem_pages_count()->AddSample(min_mem_pages);
1247 // TODO(wasm): re-enable counter for max_mem_pages when we use that field.
1248
1249 if (memory_.is_null() && min_mem_pages > 0) {
1250 memory_ = AllocateMemory(min_mem_pages);
1251 if (memory_.is_null()) return nothing; // failed to allocate memory
1252 }
1253
1254 if (!memory_.is_null()) {
1255 instance->SetInternalField(kWasmMemArrayBuffer, *memory_);
1256 Address mem_start = static_cast<Address>(memory_->backing_store());
1257 uint32_t mem_size =
1258 static_cast<uint32_t>(memory_->byte_length()->Number());
1259 LoadDataSegments(mem_start, mem_size);
1260
1261 uint32_t old_mem_size = compiled_module_->has_heap()
1262 ? compiled_module_->mem_size()
1263 : compiled_module_->default_mem_size();
1264 Address old_mem_start =
1265 compiled_module_->has_heap()
1266 ? static_cast<Address>(compiled_module_->heap()->backing_store())
1267 : nullptr;
1268 RelocateInstanceCode(instance, old_mem_start, mem_start, old_mem_size,
1269 mem_size);
1270 compiled_module_->set_heap(memory_);
1271 }
1272
1273 //--------------------------------------------------------------------------
1274 // Set up the globals for the new instance.
1275 //--------------------------------------------------------------------------
1276 MaybeHandle<JSArrayBuffer> old_globals;
1277 MaybeHandle<JSArrayBuffer> globals;
1278 uint32_t globals_size = compiled_module_->globals_size();
1279 if (globals_size > 0) {
1280 Handle<JSArrayBuffer> global_buffer =
1281 NewArrayBuffer(isolate_, globals_size);
1282 globals = global_buffer;
1283 if (globals.is_null()) {
1284 thrower_->Error("Out of memory: wasm globals");
1285 return nothing;
1286 }
1287 Address old_address =
1288 owner.is_null() ? nullptr : GetGlobalStartAddressFromCodeTemplate(
1289 *factory->undefined_value(),
1290 JSObject::cast(*owner));
1291 RelocateGlobals(instance, old_address,
1292 static_cast<Address>(global_buffer->backing_store()));
1293 instance->SetInternalField(kWasmGlobalsArrayBuffer, *global_buffer);
1294 }
1295
1296 //--------------------------------------------------------------------------
1297 // Process the imports for the module.
1298 //--------------------------------------------------------------------------
1299 int num_imported_functions = ProcessImports(globals, code_table);
1300 if (num_imported_functions < 0) return nothing;
1301
1302 //--------------------------------------------------------------------------
1303 // Process the initialization for the module's globals.
1304 //--------------------------------------------------------------------------
1305 ProcessInits(globals);
1306
1307 //--------------------------------------------------------------------------
1308 // Set up the debug support for the new instance.
1309 //--------------------------------------------------------------------------
1310 // TODO(wasm): avoid referencing this stuff from the instance, use it off
1311 // the compiled module instead. See the following 3 assignments:
1312 if (compiled_module_->has_module_bytes()) {
1313 instance->SetInternalField(kWasmModuleBytesString,
1314 compiled_module_->ptr_to_module_bytes());
1315 }
1316
1317 if (compiled_module_->has_function_names()) {
1318 instance->SetInternalField(kWasmFunctionNamesArray,
1319 compiled_module_->ptr_to_function_names());
1320 }
1321
1322 {
1323 Handle<Object> handle = factory->NewNumber(num_imported_functions);
1324 instance->SetInternalField(kWasmNumImportedFunctions, *handle);
1325 }
1326
1327 //--------------------------------------------------------------------------
1328 // Set up the runtime support for the new instance.
1329 //--------------------------------------------------------------------------
1330 Handle<WeakCell> weak_link = factory->NewWeakCell(instance);
1331
1332 for (int i = num_imported_functions + FLAG_skip_compiling_wasm_funcs;
1333 i < code_table->length(); ++i) {
1334 Handle<Code> code = code_table->GetValueChecked<Code>(isolate_, i);
1335 if (code->kind() == Code::WASM_FUNCTION) {
1336 Handle<FixedArray> deopt_data = factory->NewFixedArray(2, TENURED);
1337 deopt_data->set(0, *weak_link);
1338 deopt_data->set(1, Smi::FromInt(static_cast<int>(i)));
1339 deopt_data->set_length(2);
1340 code->set_deoptimization_data(*deopt_data);
1341 }
1342 }
1343
1344 //--------------------------------------------------------------------------
1345 // Set up the indirect function tables for the new instance.
1346 //--------------------------------------------------------------------------
1347 {
1348 std::vector<Handle<Code>> functions(
1349 static_cast<size_t>(code_table->length()));
1350 for (int i = 0; i < code_table->length(); ++i) {
1351 functions[i] = code_table->GetValueChecked<Code>(isolate_, i);
1352 }
1353
1354 if (compiled_module_->has_indirect_function_tables()) {
1355 Handle<FixedArray> indirect_tables_template =
1356 compiled_module_->indirect_function_tables();
1357 Handle<FixedArray> to_replace =
1358 owner.is_null() ? indirect_tables_template
1359 : handle(FixedArray::cast(owner->GetInternalField(
1360 kWasmModuleFunctionTable)));
1361 Handle<FixedArray> indirect_tables = SetupIndirectFunctionTable(
1362 isolate_, code_table, indirect_tables_template, to_replace);
1363 for (int i = 0; i < indirect_tables->length(); ++i) {
1364 Handle<FixedArray> metadata =
1365 indirect_tables->GetValueChecked<FixedArray>(isolate_, i);
1366 uint32_t size = Smi::cast(metadata->get(kSize))->value();
1367 Handle<FixedArray> table =
1368 metadata->GetValueChecked<FixedArray>(isolate_, kTable);
1369 PopulateFunctionTable(table, size, &functions);
1370 }
1371 instance->SetInternalField(kWasmModuleFunctionTable, *indirect_tables);
1372 }
1373 }
1374
1375 //--------------------------------------------------------------------------
1376 // Set up the exports object for the new instance.
1377 //--------------------------------------------------------------------------
1378 ProcessExports(globals, code_table, instance);
1379
1380 if (num_imported_functions > 0 || !owner.is_null()) {
1381 // If the code was cloned, or new imports were compiled, patch.
1382 PatchDirectCalls(old_code_table, code_table, num_imported_functions);
1383 }
1384
1385 FlushICache(isolate_, code_table);
1386
1387 //--------------------------------------------------------------------------
1388 // Run the start function if one was specified.
1389 //--------------------------------------------------------------------------
1390 if (compiled_module_->has_startup_function()) {
1391 Handle<FixedArray> startup_data = compiled_module_->startup_function();
1392 HandleScope scope(isolate_);
1393 int32_t start_index =
1394 startup_data->GetValueChecked<Smi>(isolate_, kExportIndex)->value();
1395 Handle<Code> startup_code =
1396 code_table->GetValueChecked<Code>(isolate_, start_index);
1397 int arity = Smi::cast(startup_data->get(kExportArity))->value();
1398 MaybeHandle<ByteArray> startup_signature =
1399 startup_data->GetValue<ByteArray>(isolate_, kExportedSignature);
1400 Handle<JSFunction> startup_fct = WrapExportCodeAsJSFunction(
1401 isolate_, startup_code, factory->InternalizeUtf8String("start"),
1402 arity, startup_signature, instance);
1403 RecordStats(isolate_, *startup_code);
1404 // Call the JS function.
1405 Handle<Object> undefined = factory->undefined_value();
1406 MaybeHandle<Object> retval =
1407 Execution::Call(isolate_, startup_fct, undefined, 0, nullptr);
1408
1409 if (retval.is_null()) {
1410 thrower_->Error("WASM.instantiateModule(): start function failed");
1411 return nothing;
1412 }
1413 }
1414
1415 DCHECK(wasm::IsWasmObject(*instance));
1416
1417 {
1418 Handle<WeakCell> link_to_owner = factory->NewWeakCell(instance);
1419
1420 Handle<Object> global_handle =
1421 isolate_->global_handles()->Create(*instance);
1422 Handle<WeakCell> link_to_clone = factory->NewWeakCell(compiled_module_);
1423 {
1424 DisallowHeapAllocation no_gc;
1425 compiled_module_->set_weak_owning_instance(link_to_owner);
1426 Handle<WeakCell> next;
1427 if (link_to_original.ToHandle(&next) && !next->cleared()) {
1428 WasmCompiledModule* original =
1429 WasmCompiledModule::cast(next->value());
1430 DCHECK(original->has_weak_owning_instance());
1431 DCHECK(!original->weak_owning_instance()->cleared());
1432 compiled_module_->set_weak_next_instance(next);
1433 original->set_weak_prev_instance(link_to_clone);
1434 }
1435
1436 compiled_module_->set_weak_owning_instance(link_to_owner);
1437 instance->SetInternalField(kWasmCompiledModule, *compiled_module_);
1438 GlobalHandles::MakeWeak(global_handle.location(),
1439 global_handle.location(), &InstanceFinalizer,
1440 v8::WeakCallbackType::kFinalizer);
1441 }
1442 }
1443 TRACE("Finishing instance %d\n", compiled_module_->instance_id());
1444 TRACE_CHAIN(WasmCompiledModule::cast(module_object_->GetInternalField(0)));
1445 return instance;
1446 }
1447
1448 private:
1449 Isolate* isolate_;
1450 ErrorThrower* thrower_;
1451 Handle<JSObject> module_object_;
1452 Handle<JSReceiver> ffi_;
1453 Handle<JSArrayBuffer> memory_;
1454 Handle<WasmCompiledModule> compiled_module_;
1455
1456 // Helper routine to print out errors with imports (FFI).
1457 MaybeHandle<JSFunction> ReportFFIError(const char* error, uint32_t index,
1458 Handle<String> module_name,
1459 MaybeHandle<String> function_name) {
1460 Handle<String> function_name_handle;
1461 if (function_name.ToHandle(&function_name_handle)) {
1462 thrower_->Error("Import #%d module=\"%.*s\" function=\"%.*s\" error: %s",
1463 index, module_name->length(),
1464 module_name->ToCString().get(),
1465 function_name_handle->length(),
1466 function_name_handle->ToCString().get(), error);
1467 } else {
1468 thrower_->Error("Import #%d module=\"%.*s\" error: %s", index,
1469 module_name->length(), module_name->ToCString().get(),
1470 error);
1471 }
1472 thrower_->Error("Import ");
1473 return MaybeHandle<JSFunction>();
1474 }
1475
1476 // Look up an import value in the {ffi_} object.
1477 MaybeHandle<Object> LookupImport(uint32_t index, Handle<String> module_name,
1478 MaybeHandle<String> import_name) {
1479 if (ffi_.is_null()) {
1480 return ReportFFIError("FFI is not an object", index, module_name,
1481 import_name);
1482 }
1483
1484 // Look up the module first.
1485 MaybeHandle<Object> result = Object::GetProperty(ffi_, module_name);
1486 if (result.is_null()) {
1487 return ReportFFIError("module not found", index, module_name,
1488 import_name);
1489 }
1490
1491 Handle<Object> module = result.ToHandleChecked();
1492
1493 if (!import_name.is_null()) {
1494 // Look up the value in the module.
1495 if (!module->IsJSReceiver()) {
1496 return ReportFFIError("module is not an object or function", index,
1497 module_name, import_name);
1498 }
1499
1500 result = Object::GetProperty(module, import_name.ToHandleChecked());
1501 if (result.is_null()) {
1502 return ReportFFIError("import not found", index, module_name,
1503 import_name);
1504 }
1505 } else {
1506 // No function specified. Use the "default export".
1507 result = module;
1508 }
1509
1510 return result;
1511 }
1512
1513 // Load data segments into the memory.
1514 void LoadDataSegments(Address mem_addr, size_t mem_size) {
1515 CHECK(compiled_module_->has_data_segments() ==
1516 compiled_module_->has_data_segments_info());
1517
1518 // If we have neither, we're done.
1519 if (!compiled_module_->has_data_segments()) return;
1520
1521 Handle<ByteArray> data = compiled_module_->data_segments();
1522 Handle<FixedArray> segments = compiled_module_->data_segments_info();
1523
1524 uint32_t last_extraction_pos = 0;
1525 for (int i = 0; i < segments->length(); ++i) {
1526 Handle<ByteArray> segment =
1527 Handle<ByteArray>(ByteArray::cast(segments->get(i)));
1528 uint32_t dest_addr =
1529 static_cast<uint32_t>(segment->get_int(kDestAddrValue));
1530 uint32_t source_size =
1531 static_cast<uint32_t>(segment->get_int(kSourceSize));
1532 CHECK_LT(dest_addr, mem_size);
1533 CHECK_LE(source_size, mem_size);
1534 CHECK_LE(dest_addr, mem_size - source_size);
1535 byte* addr = mem_addr + dest_addr;
1536 data->copy_out(last_extraction_pos, addr, source_size);
1537 last_extraction_pos += source_size;
1538 }
1539 }
1540
1541 Handle<Code> CompileImportWrapper(int index, Handle<FixedArray> data,
1542 Handle<JSReceiver> target,
1543 Handle<String> module_name,
1544 MaybeHandle<String> import_name) {
1545 // TODO(mtrofin): this is an uint32_t, actually. We should rationalize
1546 // it when we rationalize signed/unsigned stuff.
1547 int ret_count = Smi::cast(data->get(kOutputCount))->value();
1548 CHECK_GE(ret_count, 0);
1549 Handle<ByteArray> sig_data =
1550 data->GetValueChecked<ByteArray>(isolate_, kSignature);
1551 int sig_data_size = sig_data->length();
1552 int param_count = sig_data_size - ret_count;
1553 CHECK(param_count >= 0);
1554
1555 Handle<Code> code;
1556 bool isMatch = false;
1557 Handle<Code> export_wrapper_code;
1558 if (target->IsJSFunction()) {
1559 Handle<JSFunction> func = Handle<JSFunction>::cast(target);
1560 export_wrapper_code = handle(func->code());
1561 if (export_wrapper_code->kind() == Code::JS_TO_WASM_FUNCTION) {
1562 int exported_param_count =
1563 Smi::cast(func->GetInternalField(kInternalArity))->value();
1564 Handle<ByteArray> exportedSig = Handle<ByteArray>(
1565 ByteArray::cast(func->GetInternalField(kInternalSignature)));
1566 if (exported_param_count == param_count &&
1567 exportedSig->length() == sig_data->length() &&
1568 memcmp(exportedSig->GetDataStartAddress(),
1569 sig_data->GetDataStartAddress(),
1570 exportedSig->length()) == 0) {
1571 isMatch = true;
1572 }
1573 }
1574 }
1575 if (isMatch) {
1576 int wasm_count = 0;
1577 int const mask = RelocInfo::ModeMask(RelocInfo::CODE_TARGET);
1578 for (RelocIterator it(*export_wrapper_code, mask); !it.done();
1579 it.next()) {
1580 RelocInfo* rinfo = it.rinfo();
1581 Address target_address = rinfo->target_address();
1582 Code* target = Code::GetCodeFromTargetAddress(target_address);
1583 if (target->kind() == Code::WASM_FUNCTION) {
1584 ++wasm_count;
1585 code = handle(target);
1586 }
1587 }
1588 DCHECK(wasm_count == 1);
1589 return code;
1590 } else {
1591 // Copy the signature to avoid a raw pointer into a heap object when
1592 // GC can happen.
1593 Zone zone(isolate_->allocator());
1594 MachineRepresentation* reps =
1595 zone.NewArray<MachineRepresentation>(sig_data_size);
1596 memcpy(reps, sig_data->GetDataStartAddress(),
1597 sizeof(MachineRepresentation) * sig_data_size);
1598 FunctionSig sig(ret_count, param_count, reps);
1599
1600 return compiler::CompileWasmToJSWrapper(isolate_, target, &sig, index,
1601 module_name, import_name);
1602 }
1603 }
1604
1605 void WriteGlobalValue(MaybeHandle<JSArrayBuffer> globals, uint32_t offset,
1606 Handle<Object> value, int type) {
1607 double num = 0;
1608 if (value->IsSmi()) {
1609 num = Smi::cast(*value)->value();
1610 } else if (value->IsHeapNumber()) {
1611 num = HeapNumber::cast(*value)->value();
1612 } else {
1613 UNREACHABLE();
1614 }
1615 TRACE("init [globals+%u] = %lf, type = %d\n", offset, num, type);
1616 byte* ptr = raw_buffer_ptr(globals, offset);
1617 switch (type) {
1618 case kLocalI32:
1619 *reinterpret_cast<int32_t*>(ptr) = static_cast<int32_t>(num);
1620 break;
1621 case kLocalI64:
1622 // TODO(titzer): initialization of imported i64 globals.
1623 UNREACHABLE();
1624 break;
1625 case kLocalF32:
1626 *reinterpret_cast<float*>(ptr) = static_cast<float>(num);
1627 break;
1628 case kLocalF64:
1629 *reinterpret_cast<double*>(ptr) = num;
1630 break;
1631 default:
1632 UNREACHABLE();
1633 }
1634 }
1635
1636 // Process the imports, including functions, tables, globals, and memory, in
1637 // order, loading them from the {ffi_} object. Returns the number of imported
1638 // functions.
1639 int ProcessImports(MaybeHandle<JSArrayBuffer> globals,
1640 Handle<FixedArray> code_table) {
1641 int num_imported_functions = 0;
1642 if (!compiled_module_->has_imports()) return num_imported_functions;
1643
1644 Handle<FixedArray> imports = compiled_module_->imports();
1645 for (int index = 0; index < imports->length(); ++index) {
1646 Handle<FixedArray> data =
1647 imports->GetValueChecked<FixedArray>(isolate_, index);
1648
1649 Handle<String> module_name =
1650 data->GetValueChecked<String>(isolate_, kModuleName);
1651 MaybeHandle<String> function_name =
1652 data->GetValue<String>(isolate_, kFunctionName);
1653
1654 MaybeHandle<Object> result =
1655 LookupImport(index, module_name, function_name);
1656 if (thrower_->error()) return -1;
1657
1658 WasmExternalKind kind = static_cast<WasmExternalKind>(
1659 Smi::cast(data->get(kImportKind))->value());
1660 switch (kind) {
1661 case kExternalFunction: {
1662 // Function imports must be callable.
1663 Handle<Object> function = result.ToHandleChecked();
1664 if (!function->IsCallable()) {
1665 ReportFFIError("function import requires a callable", index,
1666 module_name, function_name);
1667 return -1;
1668 }
1669
1670 Handle<Code> import_wrapper = CompileImportWrapper(
1671 index, data, Handle<JSReceiver>::cast(function), module_name,
1672 function_name);
1673 int func_index = Smi::cast(data->get(kImportIndex))->value();
1674 code_table->set(func_index, *import_wrapper);
1675 RecordStats(isolate_, *import_wrapper);
1676 num_imported_functions++;
1677 break;
1678 }
1679 case kExternalTable:
1680 // TODO(titzer): Table imports must be a WebAssembly.Table.
1681 break;
1682 case kExternalMemory:
1683 // TODO(titzer): Memory imports must be a WebAssembly.Memory.
1684 break;
1685 case kExternalGlobal: {
1686 // Global imports are converted to numbers and written into the
1687 // {globals} array buffer.
1688 Handle<Object> object = result.ToHandleChecked();
1689 MaybeHandle<Object> number = Object::ToNumber(object);
1690 if (number.is_null()) {
1691 ReportFFIError("global import could not be converted to number",
1692 index, module_name, function_name);
1693 return -1;
1694 }
1695 Handle<Object> val = number.ToHandleChecked();
1696 int offset = Smi::cast(data->get(kImportIndex))->value();
1697 int type = Smi::cast(data->get(kImportGlobalType))->value();
1698 WriteGlobalValue(globals, offset, val, type);
1699 break;
1700 }
1701 default:
1702 UNREACHABLE();
1703 break;
1704 }
1705 }
1706 return num_imported_functions;
1707 }
1708
1709 // Process initialization of globals.
1710 void ProcessInits(MaybeHandle<JSArrayBuffer> globals) {
1711 if (!compiled_module_->has_inits()) return;
1712
1713 Handle<FixedArray> inits = compiled_module_->inits();
1714 for (int index = 0; index < inits->length(); ++index) {
1715 Handle<FixedArray> data =
1716 inits->GetValueChecked<FixedArray>(isolate_, index);
1717
1718 int offset = Smi::cast(data->get(kGlobalInitIndex))->value();
1719 Handle<Object> val(data->get(kGlobalInitValue), isolate_);
1720 int type = Smi::cast(data->get(kGlobalInitType))->value();
1721 if (Smi::cast(data->get(kGlobalInitKind))->value() == 0) {
1722 // Initialize with a constant.
1723 WriteGlobalValue(globals, offset, val, type);
1724 } else {
1725 // Initialize with another global.
1726 int old_offset = Smi::cast(*val)->value();
1727 TRACE("init [globals+%u] = [globals+%d]\n", offset, old_offset);
1728 int size = sizeof(int32_t);
1729 if (type == kLocalI64 || type == kLocalF64) size = sizeof(double);
1730 memcpy(raw_buffer_ptr(globals, offset),
1731 raw_buffer_ptr(globals, old_offset), size);
1732 }
1733 }
1734 }
1735
1736 // Allocate memory for a module instance as a new JSArrayBuffer.
1737 Handle<JSArrayBuffer> AllocateMemory(uint32_t min_mem_pages) {
1738 if (min_mem_pages > WasmModule::kMaxMemPages) {
1739 thrower_->Error("Out of memory: wasm memory too large");
1740 return Handle<JSArrayBuffer>::null();
1741 }
1742 Handle<JSArrayBuffer> mem_buffer =
1743 NewArrayBuffer(isolate_, min_mem_pages * WasmModule::kPageSize);
1744
1745 if (mem_buffer.is_null()) {
1746 thrower_->Error("Out of memory: wasm memory");
1747 }
1748 return mem_buffer;
1749 }
1750
1751 // Process the exports, creating wrappers for functions, tables, memories,
1752 // and globals.
1753 void ProcessExports(MaybeHandle<JSArrayBuffer> globals,
1754 Handle<FixedArray> code_table,
1755 Handle<JSObject> instance) {
1756 if (!compiled_module_->has_exports()) return;
1757
1758 Handle<JSObject> exports_object = instance;
1759 if (compiled_module_->origin() == kWasmOrigin) {
1760 // Create the "exports" object.
1761 Handle<JSFunction> object_function = Handle<JSFunction>(
1762 isolate_->native_context()->object_function(), isolate_);
1763 exports_object =
1764 isolate_->factory()->NewJSObject(object_function, TENURED);
1765 Handle<String> exports_name =
1766 isolate_->factory()->InternalizeUtf8String("exports");
1767 JSObject::AddProperty(instance, exports_name, exports_object, READ_ONLY);
1768 }
1769
1770 PropertyDescriptor desc;
1771 desc.set_writable(false);
1772
1773 Handle<FixedArray> exports = compiled_module_->exports();
1774
1775 for (int i = 0; i < exports->length(); ++i) {
1776 Handle<FixedArray> export_data =
1777 exports->GetValueChecked<FixedArray>(isolate_, i);
1778 Handle<String> name =
1779 export_data->GetValueChecked<String>(isolate_, kExportName);
1780 WasmExternalKind kind = static_cast<WasmExternalKind>(
1781 Smi::cast(export_data->get(kExportKind))->value());
1782 switch (kind) {
1783 case kExternalFunction: {
1784 // Wrap and export the code as a JSFunction.
1785 int code_table_index =
1786 Smi::cast(export_data->get(kExportIndex))->value();
1787 Handle<Code> export_code =
1788 code_table->GetValueChecked<Code>(isolate_, code_table_index);
1789 int arity = Smi::cast(export_data->get(kExportArity))->value();
1790 MaybeHandle<ByteArray> signature =
1791 export_data->GetValue<ByteArray>(isolate_, kExportedSignature);
1792 desc.set_value(WrapExportCodeAsJSFunction(
1793 isolate_, export_code, name, arity, signature, instance));
1794 break;
1795 }
1796 case kExternalTable:
1797 // TODO(titzer): create a WebAssembly.Table instance.
1798 // TODO(titzer): should it have the same identity as an import?
1799 break;
1800 case kExternalMemory: {
1801 // TODO(titzer): should memory have the same identity as an
1802 // import?
1803 Handle<JSArrayBuffer> buffer =
1804 Handle<JSArrayBuffer>(JSArrayBuffer::cast(
1805 instance->GetInternalField(kWasmMemArrayBuffer)));
1806 desc.set_value(
1807 WasmJs::CreateWasmMemoryObject(isolate_, buffer, false, 0));
1808 break;
1809 }
1810 case kExternalGlobal: {
1811 // Export the value of the global variable as a number.
1812 int offset = Smi::cast(export_data->get(kExportIndex))->value();
1813 byte* ptr = raw_buffer_ptr(globals, offset);
1814 double num = 0;
1815 switch (Smi::cast(export_data->get(kExportGlobalType))->value()) {
1816 case kLocalI32:
1817 num = *reinterpret_cast<int32_t*>(ptr);
1818 break;
1819 case kLocalF32:
1820 num = *reinterpret_cast<float*>(ptr);
1821 break;
1822 case kLocalF64:
1823 num = *reinterpret_cast<double*>(ptr);
1824 break;
1825 default:
1826 UNREACHABLE();
1827 }
1828 desc.set_value(isolate_->factory()->NewNumber(num));
1829 break;
1830 }
1831 default:
1832 UNREACHABLE();
1833 break;
1834 }
1835
1836 Maybe<bool> status = JSReceiver::DefineOwnProperty(
1837 isolate_, exports_object, name, &desc, Object::THROW_ON_ERROR);
1838 if (!status.IsJust()) {
1839 thrower_->Error("export of %.*s failed.", name->length(),
1840 name->ToCString().get());
1841 return;
1842 }
1843 }
1844 }
1845 };
1846
1847 // Instantiates a WASM module, creating a WebAssembly.Instance from a 1186 // Instantiates a WASM module, creating a WebAssembly.Instance from a
1848 // WebAssembly.Module. 1187 // WebAssembly.Module.
1849 MaybeHandle<JSObject> WasmModule::Instantiate(Isolate* isolate, 1188 MaybeHandle<JSObject> WasmModule::Instantiate(Isolate* isolate,
1850 ErrorThrower* thrower, 1189 ErrorThrower* thrower,
1851 Handle<JSObject> module_object, 1190 Handle<JSObject> module_object,
1852 Handle<JSReceiver> ffi, 1191 Handle<JSReceiver> ffi,
1853 Handle<JSArrayBuffer> memory) { 1192 Handle<JSArrayBuffer> memory) {
1854 WasmInstanceBuilder builder(isolate, thrower, module_object, ffi, memory); 1193 MaybeHandle<JSObject> nothing;
1855 return builder.Build(); 1194 HistogramTimerScope wasm_instantiate_module_time_scope(
1195 isolate->counters()->wasm_instantiate_module_time());
1196 Factory* factory = isolate->factory();
1197
1198 //--------------------------------------------------------------------------
1199 // Reuse the compiled module (if no owner), otherwise clone.
1200 //--------------------------------------------------------------------------
1201 Handle<WasmCompiledModule> compiled_module;
1202 Handle<FixedArray> code_table;
1203 Handle<FixedArray> old_code_table;
1204 Handle<JSObject> owner;
1205 // If we don't clone, this will be null(). Otherwise, this will
1206 // be a weak link to the original. If we lose the original to GC,
1207 // this will be a cleared. We'll link the instances chain last.
1208 MaybeHandle<WeakCell> link_to_original;
1209
1210 TRACE("Starting new module instantiation\n");
1211 {
1212 Handle<WasmCompiledModule> original(
1213 WasmCompiledModule::cast(module_object->GetInternalField(0)), isolate);
1214 // Always make a new copy of the code_table, since the old_code_table
1215 // may still have placeholders for imports.
1216 old_code_table = original->code_table();
1217 code_table = factory->CopyFixedArray(old_code_table);
1218
1219 if (original->has_weak_owning_instance()) {
1220 WeakCell* tmp = original->ptr_to_weak_owning_instance();
1221 DCHECK(!tmp->cleared());
1222 // There is already an owner, clone everything.
1223 owner = Handle<JSObject>(JSObject::cast(tmp->value()), isolate);
1224 // Insert the latest clone in front.
1225 TRACE("Cloning from %d\n", original->instance_id());
1226 compiled_module = WasmCompiledModule::Clone(isolate, original);
1227 // Replace the strong reference to point to the new instance here.
1228 // This allows any of the other instances, including the original,
1229 // to be collected.
1230 module_object->SetInternalField(0, *compiled_module);
1231 compiled_module->set_weak_module_object(original->weak_module_object());
1232 link_to_original = factory->NewWeakCell(original);
1233 // Don't link to original here. We remember the original
1234 // as a weak link. If that link isn't clear by the time we finish
1235 // instantiating this instance, then we link it at that time.
1236 compiled_module->reset_weak_next_instance();
1237
1238 // Clone the code for WASM functions and exports.
1239 for (int i = 0; i < code_table->length(); ++i) {
1240 Handle<Code> orig_code = code_table->GetValueChecked<Code>(isolate, i);
1241 switch (orig_code->kind()) {
1242 case Code::WASM_TO_JS_FUNCTION:
1243 // Imports will be overwritten with newly compiled wrappers.
1244 break;
1245 case Code::JS_TO_WASM_FUNCTION:
1246 case Code::WASM_FUNCTION: {
1247 Handle<Code> code = factory->CopyCode(orig_code);
1248 code_table->set(i, *code);
1249 break;
1250 }
1251 default:
1252 UNREACHABLE();
1253 }
1254 }
1255 RecordStats(isolate, code_table);
1256 } else {
1257 // There was no owner, so we can reuse the original.
1258 compiled_module = original;
1259 TRACE("Reusing existing instance %d\n", compiled_module->instance_id());
1260 }
1261 compiled_module->set_code_table(code_table);
1262 }
1263
1264 //--------------------------------------------------------------------------
1265 // Allocate the instance object.
1266 //--------------------------------------------------------------------------
1267 Handle<Map> map = factory->NewMap(
1268 JS_OBJECT_TYPE,
1269 JSObject::kHeaderSize + kWasmModuleInternalFieldCount * kPointerSize);
1270 Handle<JSObject> instance = factory->NewJSObjectFromMap(map, TENURED);
1271 instance->SetInternalField(kWasmModuleCodeTable, *code_table);
1272
1273 //--------------------------------------------------------------------------
1274 // Set up the memory for the new instance.
1275 //--------------------------------------------------------------------------
1276 MaybeHandle<JSArrayBuffer> old_memory;
1277 // TODO(titzer): handle imported memory properly.
1278
1279 uint32_t min_mem_pages = compiled_module->min_memory_pages();
1280 isolate->counters()->wasm_min_mem_pages_count()->AddSample(min_mem_pages);
1281 // TODO(wasm): re-enable counter for max_mem_pages when we use that field.
1282
1283 if (memory.is_null() && min_mem_pages > 0) {
1284 memory = AllocateMemory(thrower, isolate, min_mem_pages);
1285 if (memory.is_null()) return nothing; // failed to allocate memory
1286 }
1287
1288 if (!memory.is_null()) {
1289 instance->SetInternalField(kWasmMemArrayBuffer, *memory);
1290 Address mem_start = static_cast<Address>(memory->backing_store());
1291 uint32_t mem_size = static_cast<uint32_t>(memory->byte_length()->Number());
1292 LoadDataSegments(compiled_module, mem_start, mem_size);
1293
1294 uint32_t old_mem_size = compiled_module->has_heap()
1295 ? compiled_module->mem_size()
1296 : compiled_module->default_mem_size();
1297 Address old_mem_start =
1298 compiled_module->has_heap()
1299 ? static_cast<Address>(compiled_module->heap()->backing_store())
1300 : nullptr;
1301 RelocateInstanceCode(instance, old_mem_start, mem_start, old_mem_size,
1302 mem_size);
1303 compiled_module->set_heap(memory);
1304 }
1305
1306 //--------------------------------------------------------------------------
1307 // Set up the globals for the new instance.
1308 //--------------------------------------------------------------------------
1309 MaybeHandle<JSArrayBuffer> old_globals;
1310 MaybeHandle<JSArrayBuffer> globals;
1311 uint32_t globals_size = compiled_module->globals_size();
1312 if (globals_size > 0) {
1313 Handle<JSArrayBuffer> global_buffer = NewArrayBuffer(isolate, globals_size);
1314 globals = global_buffer;
1315 if (globals.is_null()) {
1316 thrower->Error("Out of memory: wasm globals");
1317 return nothing;
1318 }
1319 Address old_address =
1320 owner.is_null() ? nullptr : GetGlobalStartAddressFromCodeTemplate(
1321 *isolate->factory()->undefined_value(),
1322 JSObject::cast(*owner));
1323 RelocateGlobals(instance, old_address,
1324 static_cast<Address>(global_buffer->backing_store()));
1325 instance->SetInternalField(kWasmGlobalsArrayBuffer, *global_buffer);
1326 }
1327
1328 //--------------------------------------------------------------------------
1329 // Compile the import wrappers for the new instance.
1330 //--------------------------------------------------------------------------
1331 // TODO(titzer): handle imported globals and function tables.
1332 int num_imported_functions = 0;
1333 if (compiled_module->has_import_data()) {
1334 Handle<FixedArray> import_data = compiled_module->import_data();
1335 num_imported_functions = import_data->length();
1336 for (int index = 0; index < num_imported_functions; index++) {
1337 Handle<Code> import_wrapper =
1338 CompileImportWrapper(isolate, ffi, index, import_data, thrower);
1339 if (thrower->error()) return nothing;
1340 code_table->set(index, *import_wrapper);
1341 RecordStats(isolate, *import_wrapper);
1342 }
1343 }
1344
1345 //--------------------------------------------------------------------------
1346 // Set up the debug support for the new instance.
1347 //--------------------------------------------------------------------------
1348 // TODO(wasm): avoid referencing this stuff from the instance, use it off
1349 // the compiled module instead. See the following 3 assignments:
1350 if (compiled_module->has_module_bytes()) {
1351 instance->SetInternalField(kWasmModuleBytesString,
1352 compiled_module->ptr_to_module_bytes());
1353 }
1354
1355 if (compiled_module->has_function_names()) {
1356 instance->SetInternalField(kWasmFunctionNamesArray,
1357 compiled_module->ptr_to_function_names());
1358 }
1359
1360 {
1361 Handle<Object> handle = factory->NewNumber(num_imported_functions);
1362 instance->SetInternalField(kWasmNumImportedFunctions, *handle);
1363 }
1364
1365 //--------------------------------------------------------------------------
1366 // Set up the runtime support for the new instance.
1367 //--------------------------------------------------------------------------
1368 Handle<WeakCell> weak_link = isolate->factory()->NewWeakCell(instance);
1369
1370 for (int i = num_imported_functions + FLAG_skip_compiling_wasm_funcs;
1371 i < code_table->length(); ++i) {
1372 Handle<Code> code = code_table->GetValueChecked<Code>(isolate, i);
1373 if (code->kind() == Code::WASM_FUNCTION) {
1374 Handle<FixedArray> deopt_data =
1375 isolate->factory()->NewFixedArray(2, TENURED);
1376 deopt_data->set(0, *weak_link);
1377 deopt_data->set(1, Smi::FromInt(static_cast<int>(i)));
1378 deopt_data->set_length(2);
1379 code->set_deoptimization_data(*deopt_data);
1380 }
1381 }
1382
1383 //--------------------------------------------------------------------------
1384 // Set up the indirect function tables for the new instance.
1385 //--------------------------------------------------------------------------
1386 {
1387 std::vector<Handle<Code>> functions(
1388 static_cast<size_t>(code_table->length()));
1389 for (int i = 0; i < code_table->length(); ++i) {
1390 functions[i] = code_table->GetValueChecked<Code>(isolate, i);
1391 }
1392
1393 if (compiled_module->has_indirect_function_tables()) {
1394 Handle<FixedArray> indirect_tables_template =
1395 compiled_module->indirect_function_tables();
1396 Handle<FixedArray> to_replace =
1397 owner.is_null() ? indirect_tables_template
1398 : handle(FixedArray::cast(owner->GetInternalField(
1399 kWasmModuleFunctionTable)));
1400 Handle<FixedArray> indirect_tables = SetupIndirectFunctionTable(
1401 isolate, code_table, indirect_tables_template, to_replace);
1402 for (int i = 0; i < indirect_tables->length(); ++i) {
1403 Handle<FixedArray> metadata =
1404 indirect_tables->GetValueChecked<FixedArray>(isolate, i);
1405 uint32_t size = Smi::cast(metadata->get(kSize))->value();
1406 Handle<FixedArray> table =
1407 metadata->GetValueChecked<FixedArray>(isolate, kTable);
1408 PopulateFunctionTable(table, size, &functions);
1409 }
1410 instance->SetInternalField(kWasmModuleFunctionTable, *indirect_tables);
1411 }
1412 }
1413
1414 //--------------------------------------------------------------------------
1415 // Set up the exports object for the new instance.
1416 //--------------------------------------------------------------------------
1417 bool mem_export = compiled_module->export_memory();
1418 ModuleOrigin origin = compiled_module->origin();
1419
1420 if (compiled_module->has_exports() || mem_export) {
1421 PropertyDescriptor desc;
1422 desc.set_writable(false);
1423
1424 Handle<JSObject> exports_object = instance;
1425 if (origin == kWasmOrigin) {
1426 // Create the "exports" object.
1427 Handle<JSFunction> object_function = Handle<JSFunction>(
1428 isolate->native_context()->object_function(), isolate);
1429 exports_object = factory->NewJSObject(object_function, TENURED);
1430 Handle<String> exports_name = factory->InternalizeUtf8String("exports");
1431 JSObject::AddProperty(instance, exports_name, exports_object, READ_ONLY);
1432 }
1433 int first_export = -1;
1434 // TODO(wasm): another iteration over the code objects.
1435 for (int i = 0; i < code_table->length(); i++) {
1436 Handle<Code> code = code_table->GetValueChecked<Code>(isolate, i);
1437 if (code->kind() == Code::JS_TO_WASM_FUNCTION) {
1438 first_export = i;
1439 break;
1440 }
1441 }
1442 if (compiled_module->has_exports()) {
1443 Handle<FixedArray> exports = compiled_module->exports();
1444 int export_size = exports->length();
1445 for (int i = 0; i < export_size; ++i) {
1446 Handle<FixedArray> export_data =
1447 exports->GetValueChecked<FixedArray>(isolate, i);
1448 Handle<String> name =
1449 export_data->GetValueChecked<String>(isolate, kExportName);
1450 int arity = Smi::cast(export_data->get(kExportArity))->value();
1451 MaybeHandle<ByteArray> signature =
1452 export_data->GetValue<ByteArray>(isolate, kExportedSignature);
1453 Handle<Code> export_code =
1454 code_table->GetValueChecked<Code>(isolate, first_export + i);
1455 Handle<JSFunction> function = WrapExportCodeAsJSFunction(
1456 isolate, export_code, name, arity, signature, instance);
1457 desc.set_value(function);
1458 Maybe<bool> status = JSReceiver::DefineOwnProperty(
1459 isolate, exports_object, name, &desc, Object::THROW_ON_ERROR);
1460 if (!status.IsJust()) {
1461 thrower->Error("export of %.*s failed.", name->length(),
1462 name->ToCString().get());
1463 return nothing;
1464 }
1465 }
1466 }
1467 if (mem_export) {
1468 // Export the memory as a named property.
1469 Handle<JSArrayBuffer> buffer = Handle<JSArrayBuffer>(
1470 JSArrayBuffer::cast(instance->GetInternalField(kWasmMemArrayBuffer)));
1471 Handle<Object> memory_object =
1472 WasmJs::CreateWasmMemoryObject(isolate, buffer, false, 0);
1473 // TODO(titzer): export the memory with the correct name.
1474 Handle<String> name = factory->InternalizeUtf8String("memory");
1475 JSObject::AddProperty(exports_object, name, memory_object, READ_ONLY);
1476 }
1477 }
1478
1479 if (num_imported_functions > 0 || !owner.is_null()) {
1480 // If the code was cloned, or new imports were compiled, patch.
1481 PatchDirectCalls(old_code_table, code_table, num_imported_functions);
1482 }
1483
1484 FlushICache(isolate, code_table);
1485
1486 //--------------------------------------------------------------------------
1487 // Run the start function if one was specified.
1488 //--------------------------------------------------------------------------
1489 if (compiled_module->has_startup_function()) {
1490 Handle<FixedArray> startup_data = compiled_module->startup_function();
1491 HandleScope scope(isolate);
1492 int32_t start_index =
1493 startup_data->GetValueChecked<Smi>(isolate, kExportedFunctionIndex)
1494 ->value();
1495 Handle<Code> startup_code =
1496 code_table->GetValueChecked<Code>(isolate, start_index);
1497 int arity = Smi::cast(startup_data->get(kExportArity))->value();
1498 MaybeHandle<ByteArray> startup_signature =
1499 startup_data->GetValue<ByteArray>(isolate, kExportedSignature);
1500 Handle<JSFunction> startup_fct = WrapExportCodeAsJSFunction(
1501 isolate, startup_code, factory->InternalizeUtf8String("start"), arity,
1502 startup_signature, instance);
1503 RecordStats(isolate, *startup_code);
1504 // Call the JS function.
1505 Handle<Object> undefined = isolate->factory()->undefined_value();
1506 MaybeHandle<Object> retval =
1507 Execution::Call(isolate, startup_fct, undefined, 0, nullptr);
1508
1509 if (retval.is_null()) {
1510 thrower->Error("WASM.instantiateModule(): start function failed");
1511 return nothing;
1512 }
1513 }
1514
1515 DCHECK(wasm::IsWasmObject(*instance));
1516
1517 {
1518 Handle<WeakCell> link_to_owner = factory->NewWeakCell(instance);
1519
1520 Handle<Object> global_handle = isolate->global_handles()->Create(*instance);
1521 Handle<WeakCell> link_to_clone = factory->NewWeakCell(compiled_module);
1522 {
1523 DisallowHeapAllocation no_gc;
1524 compiled_module->set_weak_owning_instance(link_to_owner);
1525 Handle<WeakCell> next;
1526 if (link_to_original.ToHandle(&next) && !next->cleared()) {
1527 WasmCompiledModule* original = WasmCompiledModule::cast(next->value());
1528 DCHECK(original->has_weak_owning_instance());
1529 DCHECK(!original->weak_owning_instance()->cleared());
1530 compiled_module->set_weak_next_instance(next);
1531 original->set_weak_prev_instance(link_to_clone);
1532 }
1533
1534 compiled_module->set_weak_owning_instance(link_to_owner);
1535 instance->SetInternalField(kWasmCompiledModule, *compiled_module);
1536 GlobalHandles::MakeWeak(global_handle.location(),
1537 global_handle.location(), &InstanceFinalizer,
1538 v8::WeakCallbackType::kFinalizer);
1539 }
1540 }
1541 TRACE("Finishing instance %d\n", compiled_module->instance_id());
1542 TRACE_CHAIN(WasmCompiledModule::cast(module_object->GetInternalField(0)));
1543 return instance;
1856 } 1544 }
1857 1545
1546 #if DEBUG
1547 uint32_t WasmCompiledModule::instance_id_counter_ = 0;
1548 #endif
1549
1858 Handle<WasmCompiledModule> WasmCompiledModule::New(Isolate* isolate, 1550 Handle<WasmCompiledModule> WasmCompiledModule::New(Isolate* isolate,
1859 uint32_t min_memory_pages, 1551 uint32_t min_memory_pages,
1860 uint32_t globals_size, 1552 uint32_t globals_size,
1553 bool export_memory,
1861 ModuleOrigin origin) { 1554 ModuleOrigin origin) {
1862 Handle<FixedArray> ret = 1555 Handle<FixedArray> ret =
1863 isolate->factory()->NewFixedArray(PropertyIndices::Count, TENURED); 1556 isolate->factory()->NewFixedArray(PropertyIndices::Count, TENURED);
1864 // Globals size is expected to fit into an int without overflow. This is not 1557 // Globals size is expected to fit into an int without overflow. This is not
1865 // supported by the spec at the moment, however, we don't support array 1558 // supported by the spec at the moment, however, we don't support array
1866 // buffer sizes over 1g, so, for now, we avoid alocating a HeapNumber for 1559 // buffer sizes over 1g, so, for now, we avoid alocating a HeapNumber for
1867 // the globals size. The CHECK guards this assumption. 1560 // the globals size. The CHECK guards this assumption.
1868 CHECK_GE(static_cast<int>(globals_size), 0); 1561 CHECK_GE(static_cast<int>(globals_size), 0);
1869 ret->set(kID_min_memory_pages, 1562 ret->set(kID_min_memory_pages,
1870 Smi::FromInt(static_cast<int>(min_memory_pages))); 1563 Smi::FromInt(static_cast<int>(min_memory_pages)));
1871 ret->set(kID_globals_size, Smi::FromInt(static_cast<int>(globals_size))); 1564 ret->set(kID_globals_size, Smi::FromInt(static_cast<int>(globals_size)));
1565 ret->set(kID_export_memory, Smi::FromInt(static_cast<int>(export_memory)));
1872 ret->set(kID_origin, Smi::FromInt(static_cast<int>(origin))); 1566 ret->set(kID_origin, Smi::FromInt(static_cast<int>(origin)));
1873 WasmCompiledModule::cast(*ret)->Init(); 1567 WasmCompiledModule::cast(*ret)->Init();
1874 return handle(WasmCompiledModule::cast(*ret)); 1568 return handle(WasmCompiledModule::cast(*ret));
1875 } 1569 }
1876 1570
1877 void WasmCompiledModule::Init() { 1571 void WasmCompiledModule::Init() {
1878 #if DEBUG 1572 #if DEBUG
1879 static uint32_t instance_id_counter = 0; 1573 set(kID_instance_id, Smi::FromInt(instance_id_counter_++));
1880 set(kID_instance_id, Smi::FromInt(instance_id_counter++));
1881 TRACE("New compiled module id: %d\n", instance_id()); 1574 TRACE("New compiled module id: %d\n", instance_id());
1882 #endif 1575 #endif
1883 } 1576 }
1884 1577
1885 void WasmCompiledModule::PrintInstancesChain() { 1578 void WasmCompiledModule::PrintInstancesChain() {
1886 #if DEBUG 1579 #if DEBUG
1887 if (!FLAG_trace_wasm_instances) return; 1580 if (!FLAG_trace_wasm_instances) return;
1888 for (WasmCompiledModule* current = this; current != nullptr;) { 1581 for (WasmCompiledModule* current = this; current != nullptr;) {
1889 PrintF("->%d", current->instance_id()); 1582 PrintF("->%d", current->instance_id());
1890 if (current->ptr_to_weak_next_instance() == nullptr) break; 1583 if (current->ptr_to_weak_next_instance() == nullptr) break;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
1974 if (!IsWasmObject(*object)) { 1667 if (!IsWasmObject(*object)) {
1975 return false; 1668 return false;
1976 } 1669 }
1977 1670
1978 // Get code table associated with the module js_object 1671 // Get code table associated with the module js_object
1979 Object* obj = object->GetInternalField(kWasmModuleCodeTable); 1672 Object* obj = object->GetInternalField(kWasmModuleCodeTable);
1980 Handle<FixedArray> code_table(FixedArray::cast(obj)); 1673 Handle<FixedArray> code_table(FixedArray::cast(obj));
1981 1674
1982 // Iterate through the code objects in the code table and update relocation 1675 // Iterate through the code objects in the code table and update relocation
1983 // information 1676 // information
1984 for (int i = 0; i < code_table->length(); ++i) { 1677 for (int i = 0; i < code_table->length(); i++) {
1985 obj = code_table->get(i); 1678 obj = code_table->get(i);
1986 Handle<Code> code(Code::cast(obj)); 1679 Handle<Code> code(Code::cast(obj));
1987 1680
1988 int mode_mask = RelocInfo::ModeMask(RelocInfo::WASM_MEMORY_REFERENCE) | 1681 int mode_mask = RelocInfo::ModeMask(RelocInfo::WASM_MEMORY_REFERENCE) |
1989 RelocInfo::ModeMask(RelocInfo::WASM_MEMORY_SIZE_REFERENCE); 1682 RelocInfo::ModeMask(RelocInfo::WASM_MEMORY_SIZE_REFERENCE);
1990 for (RelocIterator it(*code, mode_mask); !it.done(); it.next()) { 1683 for (RelocIterator it(*code, mode_mask); !it.done(); it.next()) {
1991 RelocInfo::Mode mode = it.rinfo()->rmode(); 1684 RelocInfo::Mode mode = it.rinfo()->rmode();
1992 if (RelocInfo::IsWasmMemoryReference(mode) || 1685 if (RelocInfo::IsWasmMemoryReference(mode) ||
1993 RelocInfo::IsWasmMemorySizeReference(mode)) { 1686 RelocInfo::IsWasmMemorySizeReference(mode)) {
1994 it.rinfo()->update_wasm_memory_reference(old_start, new_start, old_size, 1687 it.rinfo()->update_wasm_memory_reference(old_start, new_start, old_size,
(...skipping 14 matching lines...) Expand all
2009 for (uint32_t i = 0; i < table->size; ++i) { 1702 for (uint32_t i = 0; i < table->size; ++i) {
2010 const WasmFunction* function = &module->functions[table->values[i]]; 1703 const WasmFunction* function = &module->functions[table->values[i]];
2011 values->set(i, Smi::FromInt(function->sig_index)); 1704 values->set(i, Smi::FromInt(function->sig_index));
2012 values->set(i + table->max_size, Smi::FromInt(table->values[i])); 1705 values->set(i + table->max_size, Smi::FromInt(table->values[i]));
2013 } 1706 }
2014 // Set the remaining elements to -1 (instead of "undefined"). These 1707 // Set the remaining elements to -1 (instead of "undefined"). These
2015 // elements are accessed directly as SMIs (without a check). On 64-bit 1708 // elements are accessed directly as SMIs (without a check). On 64-bit
2016 // platforms, it is possible to have the top bits of "undefined" take 1709 // platforms, it is possible to have the top bits of "undefined" take
2017 // small integer values (or zero), which are more likely to be equal to 1710 // small integer values (or zero), which are more likely to be equal to
2018 // the signature index we check against. 1711 // the signature index we check against.
2019 for (uint32_t i = table->size; i < table->max_size; ++i) { 1712 for (uint32_t i = table->size; i < table->max_size; i++) {
2020 values->set(i, Smi::FromInt(-1)); 1713 values->set(i, Smi::FromInt(-1));
2021 } 1714 }
2022 return values; 1715 return values;
2023 } 1716 }
2024 1717
2025 void PopulateFunctionTable(Handle<FixedArray> table, uint32_t table_size, 1718 void PopulateFunctionTable(Handle<FixedArray> table, uint32_t table_size,
2026 const std::vector<Handle<Code>>* code_table) { 1719 const std::vector<Handle<Code>>* code_table) {
2027 uint32_t max_size = table->length() / 2; 1720 uint32_t max_size = table->length() / 2;
2028 for (uint32_t i = max_size; i < max_size + table_size; ++i) { 1721 for (uint32_t i = max_size; i < max_size + table_size; ++i) {
2029 int index = Smi::cast(table->get(static_cast<int>(i)))->value(); 1722 int index = Smi::cast(table->get(static_cast<int>(i)))->value();
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
2223 WasmCompiledModule* compiled_module = 1916 WasmCompiledModule* compiled_module =
2224 WasmCompiledModule::cast(instance->GetInternalField(kWasmCompiledModule)); 1917 WasmCompiledModule::cast(instance->GetInternalField(kWasmCompiledModule));
2225 CHECK(compiled_module->has_weak_module_object()); 1918 CHECK(compiled_module->has_weak_module_object());
2226 CHECK(compiled_module->ptr_to_weak_module_object()->cleared()); 1919 CHECK(compiled_module->ptr_to_weak_module_object()->cleared());
2227 } 1920 }
2228 1921
2229 } // namespace testing 1922 } // namespace testing
2230 } // namespace wasm 1923 } // namespace wasm
2231 } // namespace internal 1924 } // namespace internal
2232 } // namespace v8 1925 } // namespace v8
OLDNEW
« no previous file with comments | « src/wasm/wasm-module.h ('k') | src/wasm/wasm-module-builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698