Lines Matching defs:table
418 auto table = handle(
422 table->instance().IsUndefined()
423 ? table->type() == wasm::kWasmFuncRef
424 : IsSubtypeOf(table->type(), wasm::kWasmFuncRef,
425 WasmInstanceObject::cast(table->instance()).module()));
427 if (!WasmTableObject::IsInBounds(isolate, table, entry_index)) {
431 return *WasmTableObject::Get(isolate, table, entry_index);
445 auto table = handle(
449 table->instance().IsUndefined()
450 ? table->type() == wasm::kWasmFuncRef
451 : IsSubtypeOf(table->type(), wasm::kWasmFuncRef,
452 WasmInstanceObject::cast(table->instance()).module()));
454 if (!WasmTableObject::IsInBounds(isolate, table, entry_index)) {
457 WasmTableObject::Set(isolate, table, entry_index, element);
516 Handle<WasmTableObject> table(
518 int result = WasmTableObject::Grow(isolate, table, delta, value);
535 Handle<WasmTableObject> table(
538 uint32_t table_size = table->current_length();
544 // Even when table.fill goes out-of-bounds, as many entries as possible are
545 // put into the table. Only afterwards we trap.
550 WasmTableObject::Fill(isolate, table, start, value, fill_count);