Index: src/runtime/runtime-interpreter.cc |
diff --git a/src/runtime/runtime-interpreter.cc b/src/runtime/runtime-interpreter.cc |
index f870d23c2648f5679cb235e85db5d34f618b85d9..ce71e2c52d5a9d5eae43f310759b3f07d4ba337f 100644 |
--- a/src/runtime/runtime-interpreter.cc |
+++ b/src/runtime/runtime-interpreter.cc |
@@ -9,6 +9,9 @@ |
#include "src/arguments.h" |
#include "src/frames-inl.h" |
#include "src/interpreter/bytecode-array-iterator.h" |
+#include "src/interpreter/bytecode-decoder.h" |
+#include "src/interpreter/bytecode-flags.h" |
+#include "src/interpreter/bytecode-register.h" |
#include "src/interpreter/bytecodes.h" |
#include "src/isolate-inl.h" |
#include "src/ostreams.h" |
@@ -117,8 +120,8 @@ RUNTIME_FUNCTION(Runtime_InterpreterTraceBytecodeEntry) { |
const uint8_t* bytecode_address = base_address + offset; |
os << " -> " << static_cast<const void*>(bytecode_address) << " @ " |
<< std::setw(4) << offset << " : "; |
- interpreter::Bytecodes::Decode(os, bytecode_address, |
- bytecode_array->parameter_count()); |
+ interpreter::BytecodeDecoder::Decode(os, bytecode_address, |
+ bytecode_array->parameter_count()); |
os << std::endl; |
// Print all input registers and accumulator. |
PrintRegisters(os, true, bytecode_iterator, accumulator); |