Index: src/interpreter/interpreter-assembler.cc |
diff --git a/src/interpreter/interpreter-assembler.cc b/src/interpreter/interpreter-assembler.cc |
index 41e6bb81baa60e90fc20dc7fbbcb5da31b177f59..c8ce5539e9d78b0ed0f3f393386c76e345011eb5 100644 |
--- a/src/interpreter/interpreter-assembler.cc |
+++ b/src/interpreter/interpreter-assembler.cc |
@@ -20,13 +20,15 @@ |
namespace internal { |
namespace interpreter { |
-using compiler::CodeAssemblerState; |
using compiler::Node; |
-InterpreterAssembler::InterpreterAssembler(CodeAssemblerState* state, |
+InterpreterAssembler::InterpreterAssembler(Isolate* isolate, Zone* zone, |
Bytecode bytecode, |
OperandScale operand_scale) |
- : CodeStubAssembler(state), |
+ : CodeStubAssembler(isolate, zone, InterpreterDispatchDescriptor(isolate), |
+ Code::ComputeFlags(Code::BYTECODE_HANDLER), |
+ Bytecodes::ToString(bytecode), |
+ Bytecodes::ReturnCount(bytecode)), |
bytecode_(bytecode), |
operand_scale_(operand_scale), |
bytecode_offset_(this, MachineType::PointerRepresentation()), |