| Index: src/interpreter/bytecode-array-iterator.cc
|
| diff --git a/src/interpreter/bytecode-array-iterator.cc b/src/interpreter/bytecode-array-iterator.cc
|
| index 84c0028342867f9a7d2fb81e673562e8c13df362..a4a8f799a3019bbacb28b6ea24913f87ac5aced2 100644
|
| --- a/src/interpreter/bytecode-array-iterator.cc
|
| +++ b/src/interpreter/bytecode-array-iterator.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "src/interpreter/bytecode-array-iterator.h"
|
|
|
| -#include "src/interpreter/bytecode-decoder.h"
|
| #include "src/interpreter/interpreter-intrinsics.h"
|
| #include "src/objects-inl.h"
|
|
|
| @@ -71,8 +70,8 @@
|
| current_prefix_offset() +
|
| Bytecodes::GetOperandOffset(current_bytecode(), operand_index,
|
| current_operand_scale());
|
| - return BytecodeDecoder::DecodeUnsignedOperand(operand_start, operand_type,
|
| - current_operand_scale());
|
| + return Bytecodes::DecodeUnsignedOperand(operand_start, operand_type,
|
| + current_operand_scale());
|
| }
|
|
|
| int32_t BytecodeArrayIterator::GetSignedOperand(
|
| @@ -87,8 +86,8 @@
|
| current_prefix_offset() +
|
| Bytecodes::GetOperandOffset(current_bytecode(), operand_index,
|
| current_operand_scale());
|
| - return BytecodeDecoder::DecodeSignedOperand(operand_start, operand_type,
|
| - current_operand_scale());
|
| + return Bytecodes::DecodeSignedOperand(operand_start, operand_type,
|
| + current_operand_scale());
|
| }
|
|
|
| uint32_t BytecodeArrayIterator::GetFlagOperand(int operand_index) const {
|
| @@ -125,8 +124,8 @@
|
| current_prefix_offset() +
|
| Bytecodes::GetOperandOffset(current_bytecode(), operand_index,
|
| current_operand_scale());
|
| - return BytecodeDecoder::DecodeRegisterOperand(operand_start, operand_type,
|
| - current_operand_scale());
|
| + return Bytecodes::DecodeRegisterOperand(operand_start, operand_type,
|
| + current_operand_scale());
|
| }
|
|
|
| int BytecodeArrayIterator::GetRegisterOperandRange(int operand_index) const {
|
|
|