Lines Matching refs:bytecode
63 Bytecode bytecode, OperandScale operand_scale) { in GetAndMaybeDeserializeBytecodeHandler() argument
64 Code* code = GetBytecodeHandler(bytecode, operand_scale); in GetAndMaybeDeserializeBytecodeHandler()
70 DCHECK(Bytecodes::BytecodeHasHandler(bytecode, operand_scale)); in GetAndMaybeDeserializeBytecodeHandler()
71 code = Snapshot::DeserializeHandler(isolate_, bytecode, operand_scale); in GetAndMaybeDeserializeBytecodeHandler()
77 SetBytecodeHandler(bytecode, operand_scale, code); in GetAndMaybeDeserializeBytecodeHandler()
82 Code* Interpreter::GetBytecodeHandler(Bytecode bytecode, in GetBytecodeHandler() argument
85 DCHECK(Bytecodes::BytecodeHasHandler(bytecode, operand_scale)); in GetBytecodeHandler()
86 size_t index = GetDispatchTableIndex(bytecode, operand_scale); in GetBytecodeHandler()
91 void Interpreter::SetBytecodeHandler(Bytecode bytecode, in SetBytecodeHandler() argument
95 size_t index = GetDispatchTableIndex(bytecode, operand_scale); in SetBytecodeHandler()
100 size_t Interpreter::GetDispatchTableIndex(Bytecode bytecode, in GetDispatchTableIndex() argument
103 size_t index = static_cast<size_t>(bytecode); in GetDispatchTableIndex()