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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 BytecodeRegisterAllocator* register_allocator() const { | 189 BytecodeRegisterAllocator* register_allocator() const { |
190 return builder()->register_allocator(); | 190 return builder()->register_allocator(); |
191 } | 191 } |
192 | 192 |
193 GlobalDeclarationsBuilder* globals_builder() { return globals_builder_; } | 193 GlobalDeclarationsBuilder* globals_builder() { return globals_builder_; } |
194 inline LanguageMode language_mode() const; | 194 inline LanguageMode language_mode() const; |
195 int feedback_index(FeedbackVectorSlot slot) const; | 195 int feedback_index(FeedbackVectorSlot slot) const; |
196 | 196 |
197 Handle<Name> home_object_symbol() const { return home_object_symbol_; } | 197 Handle<Name> home_object_symbol() const { return home_object_symbol_; } |
198 Handle<Name> iterator_symbol() const { return iterator_symbol_; } | 198 Handle<Name> iterator_symbol() const { return iterator_symbol_; } |
| 199 Handle<Name> async_iterator_symbol() const { return async_iterator_symbol_; } |
199 Handle<Name> prototype_string() const { return prototype_string_; } | 200 Handle<Name> prototype_string() const { return prototype_string_; } |
200 Handle<FixedArray> empty_fixed_array() const { return empty_fixed_array_; } | 201 Handle<FixedArray> empty_fixed_array() const { return empty_fixed_array_; } |
201 const AstRawString* undefined_string() const { return undefined_string_; } | 202 const AstRawString* undefined_string() const { return undefined_string_; } |
202 | 203 |
203 Zone* zone_; | 204 Zone* zone_; |
204 BytecodeArrayBuilder* builder_; | 205 BytecodeArrayBuilder* builder_; |
205 CompilationInfo* info_; | 206 CompilationInfo* info_; |
206 DeclarationScope* scope_; | 207 DeclarationScope* scope_; |
207 | 208 |
208 GlobalDeclarationsBuilder* globals_builder_; | 209 GlobalDeclarationsBuilder* globals_builder_; |
209 ZoneVector<GlobalDeclarationsBuilder*> global_declarations_; | 210 ZoneVector<GlobalDeclarationsBuilder*> global_declarations_; |
210 ZoneVector<std::pair<FunctionLiteral*, size_t>> function_literals_; | 211 ZoneVector<std::pair<FunctionLiteral*, size_t>> function_literals_; |
211 ZoneVector<std::pair<NativeFunctionLiteral*, size_t>> | 212 ZoneVector<std::pair<NativeFunctionLiteral*, size_t>> |
212 native_function_literals_; | 213 native_function_literals_; |
213 | 214 |
214 ControlScope* execution_control_; | 215 ControlScope* execution_control_; |
215 ContextScope* execution_context_; | 216 ContextScope* execution_context_; |
216 ExpressionResultScope* execution_result_; | 217 ExpressionResultScope* execution_result_; |
217 | 218 |
218 ZoneVector<BytecodeLabel> generator_resume_points_; | 219 ZoneVector<BytecodeLabel> generator_resume_points_; |
219 Register generator_state_; | 220 Register generator_state_; |
220 int loop_depth_; | 221 int loop_depth_; |
221 | 222 |
222 Handle<Name> home_object_symbol_; | 223 Handle<Name> home_object_symbol_; |
223 Handle<Name> iterator_symbol_; | 224 Handle<Name> iterator_symbol_; |
| 225 Handle<Name> async_iterator_symbol_; |
224 Handle<Name> prototype_string_; | 226 Handle<Name> prototype_string_; |
225 Handle<FixedArray> empty_fixed_array_; | 227 Handle<FixedArray> empty_fixed_array_; |
226 const AstRawString* undefined_string_; | 228 const AstRawString* undefined_string_; |
227 }; | 229 }; |
228 | 230 |
229 } // namespace interpreter | 231 } // namespace interpreter |
230 } // namespace internal | 232 } // namespace internal |
231 } // namespace v8 | 233 } // namespace v8 |
232 | 234 |
233 #endif // V8_INTERPRETER_BYTECODE_GENERATOR_H_ | 235 #endif // V8_INTERPRETER_BYTECODE_GENERATOR_H_ |
OLD | NEW |