Home
last modified time | relevance | path

Searched refs:jump_table_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/wasm/
Dwasm-code-manager.cc335 jump_table_ = CreateEmptyJumpTable(num_wasm_functions);
348 jump_table_ = CreateEmptyJumpTable(max_functions); in ReserveCodeTableForTesting()
435 jump_table_->instruction_start(), i, in SetLazyBuiltin()
439 Assembler::FlushICache(jump_table_->instructions().start(), in SetLazyBuiltin()
440 jump_table_->instructions().size()); in SetLazyBuiltin()
638 JumpTableAssembler::PatchJumpTableSlot(jump_table_->instruction_start(), in PatchJumpTable()
728 DCHECK_NOT_NULL(jump_table_); in GetCallTargetForFunction()
731 DCHECK_LT(slot_offset, jump_table_->instructions().size()); in GetCallTargetForFunction()
732 return jump_table_->instruction_start() + slot_offset; in GetCallTargetForFunction()
739 static_cast<uint32_t>(slot_address - jump_table_->instruction_start()); in GetFunctionIndexFromJumpTableSlot()
Dwasm-code-manager.h283 return jump_table_ ? jump_table_->instruction_start() : kNullAddress; in jump_table_start()
292 return jump_table_->contains(address); in is_jump_table_slot()
404 WasmCode* jump_table_ = nullptr; variable