| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_AST_SCOPES_H_ | 5 #ifndef V8_AST_SCOPES_H_ |
| 6 #define V8_AST_SCOPES_H_ | 6 #define V8_AST_SCOPES_H_ |
| 7 | 7 |
| 8 #include "src/base/hashmap.h" | 8 #include "src/base/hashmap.h" |
| 9 #include "src/globals.h" | 9 #include "src/globals.h" |
| 10 #include "src/objects.h" | 10 #include "src/objects.h" |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 // --------------------------------------------------------------------------- | 335 // --------------------------------------------------------------------------- |
| 336 // Variable allocation. | 336 // Variable allocation. |
| 337 | 337 |
| 338 // Result of variable allocation. | 338 // Result of variable allocation. |
| 339 int num_stack_slots() const { return num_stack_slots_; } | 339 int num_stack_slots() const { return num_stack_slots_; } |
| 340 int num_heap_slots() const { return num_heap_slots_; } | 340 int num_heap_slots() const { return num_heap_slots_; } |
| 341 | 341 |
| 342 int StackLocalCount() const; | 342 int StackLocalCount() const; |
| 343 int ContextLocalCount() const; | 343 int ContextLocalCount() const; |
| 344 | 344 |
| 345 // Determine if we can parse a function literal in this scope lazily without | 345 // Determine if we can parse a function literal in this scope lazily. |
| 346 // caring about the unresolved variables within. | 346 bool AllowsLazyParsing() const; |
| 347 bool AllowsLazyParsingWithoutUnresolvedVariables() const; | |
| 348 | 347 |
| 349 // The number of contexts between this and scope; zero if this == scope. | 348 // The number of contexts between this and scope; zero if this == scope. |
| 350 int ContextChainLength(Scope* scope) const; | 349 int ContextChainLength(Scope* scope) const; |
| 351 | 350 |
| 352 // The number of contexts between this and the outermost context that has a | 351 // The number of contexts between this and the outermost context that has a |
| 353 // sloppy eval call. One if this->calls_sloppy_eval(). | 352 // sloppy eval call. One if this->calls_sloppy_eval(). |
| 354 int ContextChainLengthUntilOutermostSloppyEval() const; | 353 int ContextChainLengthUntilOutermostSloppyEval() const; |
| 355 | 354 |
| 356 // The maximum number of nested contexts required for this scope and any inner | 355 // The maximum number of nested contexts required for this scope and any inner |
| 357 // scopes. | 356 // scopes. |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 void AllocateModuleVariables(); | 863 void AllocateModuleVariables(); |
| 865 | 864 |
| 866 private: | 865 private: |
| 867 ModuleDescriptor* module_descriptor_; | 866 ModuleDescriptor* module_descriptor_; |
| 868 }; | 867 }; |
| 869 | 868 |
| 870 } // namespace internal | 869 } // namespace internal |
| 871 } // namespace v8 | 870 } // namespace v8 |
| 872 | 871 |
| 873 #endif // V8_AST_SCOPES_H_ | 872 #endif // V8_AST_SCOPES_H_ |
| OLD | NEW |