Lines Matching defs:tables
360 // Initialize imported tables of type funcref.
394 // Process the imports, including functions, tables, globals, and memory, in
405 // Process the exports, creating wrappers for functions, tables, memories,
606 int table_count = static_cast<int>(module_->tables.size());
609 const WasmTable& table = module_->tables[i];
619 Handle<FixedArray> tables = isolate_->factory()->NewFixedArray(table_count);
621 const WasmTable& table = module_->tables[i];
622 // Initialize tables with null for now. We will initialize non-defaultable
623 // tables later, in {InitializeNonDefaultableTables}.
628 tables->set(i, *table_obj);
630 instance->set_tables(*tables);
634 Handle<FixedArray> tables = isolate_->factory()->NewFixedArray(table_count);
636 const WasmTable& table = module_->tables[i];
640 tables->set(i, *table_obj);
643 instance->set_indirect_function_tables(*tables);
710 // Initialize the indirect function tables and dispatch tables. We do this
711 // before initializing non-defaultable tables and loading element segments, so
712 // that indirect function tables in this module are included in the updates
716 table_index < static_cast<int>(module_->tables.size()); ++table_index) {
717 const WasmTable& table = module_->tables[table_index];
724 WasmTableObject::cast(instance->tables().get(table_index)), isolate_);
731 // Initialize non-defaultable tables.
751 // Load element segments into tables.
1277 const WasmTable& table = module_->tables[table_index];
1328 instance->tables().set(table_index, *value);
1631 // Process the imports, including functions, tables, globals, and memory, in
1755 // Process the exports, creating wrappers for functions, tables, memories,
1827 desc.set_value(handle(instance->tables().get(exp.index), isolate_));
1969 table_index < static_cast<int>(module_->tables.size()); ++table_index) {
1970 const WasmTable& table = module_->tables[table_index];
1973 WasmTableObject::cast(instance->tables().get(table_index)), isolate_);
2067 instance->tables().get(elem_segment.table_index)),
2099 handle(WasmTableObject::cast(instance->tables().get(table_index)),