| 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_COMPILER_INTERPRETER_ASSEMBLER_H_ | 5 #ifndef V8_COMPILER_INTERPRETER_ASSEMBLER_H_ |
| 6 #define V8_COMPILER_INTERPRETER_ASSEMBLER_H_ | 6 #define V8_COMPILER_INTERPRETER_ASSEMBLER_H_ |
| 7 | 7 |
| 8 // Clients of this interface shouldn't depend on lots of compiler internals. | 8 // Clients of this interface shouldn't depend on lots of compiler internals. |
| 9 // Do not include anything from src/compiler here! | 9 // Do not include anything from src/compiler here! |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 171 |
| 172 interpreter::Bytecode bytecode_; | 172 interpreter::Bytecode bytecode_; |
| 173 base::SmartPointer<RawMachineAssembler> raw_assembler_; | 173 base::SmartPointer<RawMachineAssembler> raw_assembler_; |
| 174 ZoneVector<Node*> end_nodes_; | 174 ZoneVector<Node*> end_nodes_; |
| 175 Node* accumulator_; | 175 Node* accumulator_; |
| 176 bool code_generated_; | 176 bool code_generated_; |
| 177 | 177 |
| 178 DISALLOW_COPY_AND_ASSIGN(InterpreterAssembler); | 178 DISALLOW_COPY_AND_ASSIGN(InterpreterAssembler); |
| 179 }; | 179 }; |
| 180 | 180 |
| 181 } // namespace interpreter | 181 } // namespace compiler |
| 182 } // namespace internal | 182 } // namespace internal |
| 183 } // namespace v8 | 183 } // namespace v8 |
| 184 | 184 |
| 185 #endif // V8_COMPILER_INTERPRETER_ASSEMBLER_H_ | 185 #endif // V8_COMPILER_INTERPRETER_ASSEMBLER_H_ |
| OLD | NEW |