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_BYTECODE_GENERATOR_H_ | 5 #ifndef V8_INTERPRETER_BYTECODE_GENERATOR_H_ |
6 #define V8_INTERPRETER_BYTECODE_GENERATOR_H_ | 6 #define V8_INTERPRETER_BYTECODE_GENERATOR_H_ |
7 | 7 |
8 #include "src/ast/ast.h" | 8 #include "src/ast/ast.h" |
9 #include "src/interpreter/bytecode-array-builder.h" | 9 #include "src/interpreter/bytecode-array-builder.h" |
10 #include "src/interpreter/bytecode-label.h" | 10 #include "src/interpreter/bytecode-label.h" |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 void RecordStoreToRegister(Register reg); | 167 void RecordStoreToRegister(Register reg); |
168 Register LoadFromAliasedRegister(Register reg); | 168 Register LoadFromAliasedRegister(Register reg); |
169 | 169 |
170 // Initialize an array of temporary registers with consecutive registers. | 170 // Initialize an array of temporary registers with consecutive registers. |
171 template <size_t N> | 171 template <size_t N> |
172 void InitializeWithConsecutiveRegisters(Register (®isters)[N]); | 172 void InitializeWithConsecutiveRegisters(Register (®isters)[N]); |
173 | 173 |
174 inline BytecodeArrayBuilder* builder() const { return builder_; } | 174 inline BytecodeArrayBuilder* builder() const { return builder_; } |
175 inline Isolate* isolate() const { return isolate_; } | 175 inline Isolate* isolate() const { return isolate_; } |
176 inline Zone* zone() const { return zone_; } | 176 inline Zone* zone() const { return zone_; } |
177 inline Scope* scope() const { return scope_; } | 177 inline DeclarationScope* scope() const { return scope_; } |
178 inline CompilationInfo* info() const { return info_; } | 178 inline CompilationInfo* info() const { return info_; } |
179 | 179 |
180 inline ControlScope* execution_control() const { return execution_control_; } | 180 inline ControlScope* execution_control() const { return execution_control_; } |
181 inline void set_execution_control(ControlScope* scope) { | 181 inline void set_execution_control(ControlScope* scope) { |
182 execution_control_ = scope; | 182 execution_control_ = scope; |
183 } | 183 } |
184 inline ContextScope* execution_context() const { return execution_context_; } | 184 inline ContextScope* execution_context() const { return execution_context_; } |
185 inline void set_execution_context(ContextScope* context) { | 185 inline void set_execution_context(ContextScope* context) { |
186 execution_context_ = context; | 186 execution_context_ = context; |
187 } | 187 } |
(...skipping 10 matching lines...) Expand all Loading... |
198 } | 198 } |
199 | 199 |
200 GlobalDeclarationsBuilder* globals_builder() { return globals_builder_; } | 200 GlobalDeclarationsBuilder* globals_builder() { return globals_builder_; } |
201 inline LanguageMode language_mode() const; | 201 inline LanguageMode language_mode() const; |
202 int feedback_index(FeedbackVectorSlot slot) const; | 202 int feedback_index(FeedbackVectorSlot slot) const; |
203 | 203 |
204 Isolate* isolate_; | 204 Isolate* isolate_; |
205 Zone* zone_; | 205 Zone* zone_; |
206 BytecodeArrayBuilder* builder_; | 206 BytecodeArrayBuilder* builder_; |
207 CompilationInfo* info_; | 207 CompilationInfo* info_; |
208 Scope* scope_; | 208 DeclarationScope* scope_; |
209 GlobalDeclarationsBuilder* globals_builder_; | 209 GlobalDeclarationsBuilder* globals_builder_; |
210 ZoneVector<GlobalDeclarationsBuilder*> global_declarations_; | 210 ZoneVector<GlobalDeclarationsBuilder*> global_declarations_; |
211 ControlScope* execution_control_; | 211 ControlScope* execution_control_; |
212 ContextScope* execution_context_; | 212 ContextScope* execution_context_; |
213 ExpressionResultScope* execution_result_; | 213 ExpressionResultScope* execution_result_; |
214 RegisterAllocationScope* register_allocator_; | 214 RegisterAllocationScope* register_allocator_; |
215 ZoneVector<BytecodeLabel> generator_resume_points_; | 215 ZoneVector<BytecodeLabel> generator_resume_points_; |
216 Register generator_state_; | 216 Register generator_state_; |
217 int loop_depth_; | 217 int loop_depth_; |
218 }; | 218 }; |
219 | 219 |
220 } // namespace interpreter | 220 } // namespace interpreter |
221 } // namespace internal | 221 } // namespace internal |
222 } // namespace v8 | 222 } // namespace v8 |
223 | 223 |
224 #endif // V8_INTERPRETER_BYTECODE_GENERATOR_H_ | 224 #endif // V8_INTERPRETER_BYTECODE_GENERATOR_H_ |
OLD | NEW |