Lines Matching defs:slot_index
1182 uint32_t slot_index = declared_function_index(module(), func_index);
1183 DCHECK_NULL(code_table_[slot_index]);
1186 JumpTableAssembler::LazyCompileSlotIndexToOffset(slot_index);
1187 PatchJumpTablesLocked(slot_index, lazy_compile_target);
1526 void NativeModule::PatchJumpTablesLocked(uint32_t slot_index, Address target) {
1532 PatchJumpTableLocked(code_space_data, slot_index, target);
1537 uint32_t slot_index, Address target) {
1559 DCHECK_LT(slot_index, module_->num_declared_functions);
1562 JumpTableAssembler::JumpSlotIndexToOffset(slot_index);
1564 WasmCode::kRuntimeStubCount + slot_index);
1661 for (uint32_t slot_index = 0; slot_index < num_wasm_functions;
1662 ++slot_index) {
1663 if (code_table_[slot_index]) {
1664 PatchJumpTableLocked(new_code_space_data, slot_index,
1665 code_table_[slot_index]->instruction_start());
1669 JumpTableAssembler::LazyCompileSlotIndexToOffset(slot_index);
1670 PatchJumpTableLocked(new_code_space_data, slot_index,
2401 for (int slot_index = 0; slot_index < declared; ++slot_index) {
2402 int function_index = imported + slot_index;
2403 WasmCode* old_code = code_table_[slot_index];
2420 code_table_[slot_index] = cached_code;
2421 PatchJumpTablesLocked(slot_index, cached_code->instruction_start());