| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ | 5 #ifndef V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ |
| 6 #define V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ | 6 #define V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ |
| 7 | 7 |
| 8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/base/smart-pointers.h" | 9 #include "src/base/smart-pointers.h" |
| 10 #include "src/builtins.h" | 10 #include "src/builtins.h" |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 // Abort operations for debug code. | 226 // Abort operations for debug code. |
| 227 void AbortIfWordNotEqual(compiler::Node* lhs, compiler::Node* rhs, | 227 void AbortIfWordNotEqual(compiler::Node* lhs, compiler::Node* rhs, |
| 228 BailoutReason bailout_reason); | 228 BailoutReason bailout_reason); |
| 229 | 229 |
| 230 OperandScale operand_scale() const { return operand_scale_; } | 230 OperandScale operand_scale() const { return operand_scale_; } |
| 231 | 231 |
| 232 Bytecode bytecode_; | 232 Bytecode bytecode_; |
| 233 OperandScale operand_scale_; | 233 OperandScale operand_scale_; |
| 234 CodeStubAssembler::Variable accumulator_; | 234 CodeStubAssembler::Variable accumulator_; |
| 235 AccumulatorUse accumulator_use_; | 235 AccumulatorUse accumulator_use_; |
| 236 CodeStubAssembler::Variable bytecode_array_; | 236 bool made_call_; |
| 237 | 237 |
| 238 bool disable_stack_check_across_call_; | 238 bool disable_stack_check_across_call_; |
| 239 compiler::Node* stack_pointer_before_call_; | 239 compiler::Node* stack_pointer_before_call_; |
| 240 | 240 |
| 241 DISALLOW_COPY_AND_ASSIGN(InterpreterAssembler); | 241 DISALLOW_COPY_AND_ASSIGN(InterpreterAssembler); |
| 242 }; | 242 }; |
| 243 | 243 |
| 244 } // namespace interpreter | 244 } // namespace interpreter |
| 245 } // namespace internal | 245 } // namespace internal |
| 246 } // namespace v8 | 246 } // namespace v8 |
| 247 | 247 |
| 248 #endif // V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ | 248 #endif // V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ |
| OLD | NEW |