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