blob: 06aaa902cf87904b0a20a3dab35a1f5c5068d04f [file] [log] [blame]
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +00001// Copyright 2012 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_SCOPES_H_
29#define V8_SCOPES_H_
30
31#include "ast.h"
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +000032#include "zone.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000033
kasperl@chromium.org71affb52009-05-26 05:44:31 +000034namespace v8 {
35namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036
ager@chromium.orgb61a0d12010-10-13 08:35:23 +000037class CompilationInfo;
38
39
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000040// A hash map to support fast variable declaration and lookup.
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +000041class VariableMap: public ZoneHashMap {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000042 public:
mmassi@chromium.org7028c052012-06-13 11:51:58 +000043 explicit VariableMap(Zone* zone);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000044
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000045 virtual ~VariableMap();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000046
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000047 Variable* Declare(Scope* scope,
48 Handle<String> name,
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +000049 VariableMode mode,
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000050 bool is_valid_lhs,
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +000051 Variable::Kind kind,
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000052 InitializationFlag initialization_flag,
53 Interface* interface = Interface::NewValue());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000054
55 Variable* Lookup(Handle<String> name);
mmassi@chromium.org7028c052012-06-13 11:51:58 +000056
57 Zone* zone() const { return zone_; }
58
59 private:
60 Zone* zone_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000061};
62
63
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000064// The dynamic scope part holds hash maps for the variables that will
65// be looked up dynamically from within eval and with scopes. The objects
66// are allocated on-demand from Scope::NonLocal to avoid wasting memory
67// and setup time for scopes that don't need them.
68class DynamicScopePart : public ZoneObject {
69 public:
mmassi@chromium.org7028c052012-06-13 11:51:58 +000070 explicit DynamicScopePart(Zone* zone) {
71 for (int i = 0; i < 3; i++)
72 maps_[i] = new(zone->New(sizeof(VariableMap))) VariableMap(zone);
73 }
74
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +000075 VariableMap* GetMap(VariableMode mode) {
76 int index = mode - DYNAMIC;
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000077 ASSERT(index >= 0 && index < 3);
mmassi@chromium.org7028c052012-06-13 11:51:58 +000078 return maps_[index];
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000079 }
80
81 private:
mmassi@chromium.org7028c052012-06-13 11:51:58 +000082 VariableMap *maps_[3];
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000083};
84
85
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000086// Global invariants after AST construction: Each reference (i.e. identifier)
87// to a JavaScript variable (including global properties) is represented by a
88// VariableProxy node. Immediately after AST construction and before variable
89// allocation, most VariableProxy nodes are "unresolved", i.e. not bound to a
90// corresponding variable (though some are bound during parse time). Variable
91// allocation binds each unresolved VariableProxy to one Variable and assigns
92// a location. Note that many VariableProxy nodes may refer to the same Java-
93// Script variable.
94
95class Scope: public ZoneObject {
96 public:
97 // ---------------------------------------------------------------------------
98 // Construction
99
ulan@chromium.orgdfe53072013-06-06 14:14:51 +0000100 Scope(Scope* outer_scope, ScopeType scope_type, Zone* zone);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000101
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000102 // Compute top scope and allocate variables. For lazy compilation the top
103 // scope only contains the single lazily compiled function, so this
104 // doesn't re-allocate variables repeatedly.
105 static bool Analyze(CompilationInfo* info);
106
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000107 static Scope* DeserializeScopeChain(Context* context, Scope* global_scope,
108 Zone* zone);
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000109
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000110 // The scope name is only used for printing/debugging.
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000111 void SetScopeName(Handle<String> scope_name) { scope_name_ = scope_name; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000112
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000113 void Initialize();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000114
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000115 // Checks if the block scope is redundant, i.e. it does not contain any
116 // block scoped declarations. In that case it is removed from the scope
117 // tree and its children are reparented.
118 Scope* FinalizeBlockScope();
119
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000120 Zone* zone() const { return zone_; }
121
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000122 // ---------------------------------------------------------------------------
123 // Declarations
124
125 // Lookup a variable in this scope. Returns the variable or NULL if not found.
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000126 Variable* LocalLookup(Handle<String> name);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000127
ricow@chromium.org27bf2882011-11-17 08:34:43 +0000128 // This lookup corresponds to a lookup in the "intermediate" scope sitting
129 // between this scope and the outer scope. (ECMA-262, 3rd., requires that
130 // the name of named function literal is kept in an intermediate scope
131 // in between this scope and the next outer scope.)
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +0000132 Variable* LookupFunctionVar(Handle<String> name,
133 AstNodeFactory<AstNullVisitor>* factory);
ricow@chromium.org27bf2882011-11-17 08:34:43 +0000134
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000135 // Lookup a variable in this scope or outer scopes.
136 // Returns the variable or NULL if not found.
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000137 Variable* Lookup(Handle<String> name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000138
139 // Declare the function variable for a function literal. This variable
140 // is in an intermediate scope between this function scope and the the
141 // outer scope. Only possible for function scopes; at most one variable.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000142 void DeclareFunctionVar(VariableDeclaration* declaration) {
143 ASSERT(is_function_scope());
144 function_ = declaration;
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +0000145 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000146
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000147 // Declare a parameter in this scope. When there are duplicated
148 // parameters the rightmost one 'wins'. However, the implementation
149 // expects all parameters to be declared and from left to right.
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000150 void DeclareParameter(Handle<String> name, VariableMode mode);
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000151
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000152 // Declare a local variable in this scope. If the variable has been
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000153 // declared before, the previously declared variable is returned.
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000154 Variable* DeclareLocal(Handle<String> name,
155 VariableMode mode,
erik.corry@gmail.combbceb572012-03-09 10:52:05 +0000156 InitializationFlag init_flag,
157 Interface* interface = Interface::NewValue());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000158
159 // Declare an implicit global variable in this scope which must be a
160 // global scope. The variable was introduced (possibly from an inner
161 // scope) by a reference to an unresolved variable with no intervening
162 // with statements or eval calls.
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000163 Variable* DeclareDynamicGlobal(Handle<String> name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000164
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000165 // Create a new unresolved variable.
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +0000166 template<class Visitor>
167 VariableProxy* NewUnresolved(AstNodeFactory<Visitor>* factory,
168 Handle<String> name,
jkummerow@chromium.org28583c92012-07-16 11:31:55 +0000169 Interface* interface = Interface::NewValue(),
170 int position = RelocInfo::kNoPosition) {
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +0000171 // Note that we must not share the unresolved variables with
172 // the same name because they may be removed selectively via
173 // RemoveUnresolved().
174 ASSERT(!already_resolved());
erik.corry@gmail.combbceb572012-03-09 10:52:05 +0000175 VariableProxy* proxy =
jkummerow@chromium.org28583c92012-07-16 11:31:55 +0000176 factory->NewVariableProxy(name, false, interface, position);
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000177 unresolved_.Add(proxy, zone_);
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +0000178 return proxy;
179 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000180
181 // Remove a unresolved variable. During parsing, an unresolved variable
182 // may have been added optimistically, but then only the variable name
183 // was used (typically for labels). If the variable was not declared, the
184 // addition introduced a new unresolved variable which may end up being
185 // allocated globally as a "ghost" variable. RemoveUnresolved removes
186 // such a variable again if it was added; otherwise this is a no-op.
187 void RemoveUnresolved(VariableProxy* var);
188
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000189 // Creates a new internal variable in this scope. The name is only used
190 // for printing and cannot be used to find the variable. In particular,
191 // the only way to get hold of the temporary is by keeping the Variable*
192 // around.
193 Variable* NewInternal(Handle<String> name);
194
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000195 // Creates a new temporary variable in this scope. The name is only used
196 // for printing and cannot be used to find the variable. In particular,
197 // the only way to get hold of the temporary is by keeping the Variable*
verwaest@chromium.org33e09c82012-10-10 17:07:22 +0000198 // around. The name should not clash with a legitimate variable names.
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000199 Variable* NewTemporary(Handle<String> name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000200
201 // Adds the specific declaration node to the list of declarations in
202 // this scope. The declarations are processed as part of entering
203 // the scope; see codegen.cc:ProcessDeclarations.
204 void AddDeclaration(Declaration* declaration);
205
206 // ---------------------------------------------------------------------------
207 // Illegal redeclaration support.
208
209 // Set an expression node that will be executed when the scope is
210 // entered. We only keep track of one illegal redeclaration node per
211 // scope - the first one - so if you try to set it multiple times
212 // the additional requests will be silently ignored.
213 void SetIllegalRedeclaration(Expression* expression);
214
215 // Visit the illegal redeclaration expression. Do not call if the
216 // scope doesn't have an illegal redeclaration node.
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000217 void VisitIllegalRedeclaration(AstVisitor* visitor);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000218
219 // Check if the scope has (at least) one illegal redeclaration.
220 bool HasIllegalRedeclaration() const { return illegal_redecl_ != NULL; }
221
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000222 // For harmony block scoping mode: Check if the scope has conflicting var
223 // declarations, i.e. a var declaration that has been hoisted from a nested
224 // scope over a let binding of the same name.
225 Declaration* CheckConflictingVarDeclarations();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000226
227 // ---------------------------------------------------------------------------
228 // Scope-specific info.
229
230 // Inform the scope that the corresponding code contains a with statement.
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000231 void RecordWithStatement() { scope_contains_with_ = true; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000232
233 // Inform the scope that the corresponding code contains an eval call.
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000234 void RecordEvalCall() { if (!is_global_scope()) scope_calls_eval_ = true; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000235
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000236 // Set the strict mode flag (unless disabled by a global flag).
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000237 void SetLanguageMode(LanguageMode language_mode) {
238 language_mode_ = language_mode;
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000239 }
240
241 // Position in the source where this scope begins and ends.
242 //
243 // * For the scope of a with statement
244 // with (obj) stmt
245 // start position: start position of first token of 'stmt'
246 // end position: end position of last token of 'stmt'
247 // * For the scope of a block
248 // { stmts }
249 // start position: start position of '{'
250 // end position: end position of '}'
251 // * For the scope of a function literal or decalaration
252 // function fun(a,b) { stmts }
253 // start position: start position of '('
254 // end position: end position of '}'
255 // * For the scope of a catch block
256 // try { stms } catch(e) { stmts }
257 // start position: start position of '('
258 // end position: end position of ')'
259 // * For the scope of a for-statement
260 // for (let x ...) stmt
261 // start position: start position of '('
262 // end position: end position of last token of 'stmt'
263 int start_position() const { return start_position_; }
264 void set_start_position(int statement_pos) {
265 start_position_ = statement_pos;
266 }
267 int end_position() const { return end_position_; }
268 void set_end_position(int statement_pos) {
269 end_position_ = statement_pos;
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000270 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000271
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +0000272 // In some cases we want to force context allocation for a whole scope.
273 void ForceContextAllocation() {
274 ASSERT(!already_resolved());
275 force_context_allocation_ = true;
276 }
277 bool has_forced_context_allocation() const {
278 return force_context_allocation_;
279 }
280
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000281 // ---------------------------------------------------------------------------
282 // Predicates.
283
284 // Specific scope types.
ulan@chromium.orgdfe53072013-06-06 14:14:51 +0000285 bool is_eval_scope() const { return scope_type_ == EVAL_SCOPE; }
286 bool is_function_scope() const { return scope_type_ == FUNCTION_SCOPE; }
287 bool is_module_scope() const { return scope_type_ == MODULE_SCOPE; }
288 bool is_global_scope() const { return scope_type_ == GLOBAL_SCOPE; }
289 bool is_catch_scope() const { return scope_type_ == CATCH_SCOPE; }
290 bool is_block_scope() const { return scope_type_ == BLOCK_SCOPE; }
291 bool is_with_scope() const { return scope_type_ == WITH_SCOPE; }
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000292 bool is_declaration_scope() const {
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000293 return is_eval_scope() || is_function_scope() ||
294 is_module_scope() || is_global_scope();
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000295 }
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000296 bool is_classic_mode() const {
297 return language_mode() == CLASSIC_MODE;
298 }
299 bool is_extended_mode() const {
300 return language_mode() == EXTENDED_MODE;
301 }
302 bool is_strict_or_extended_eval_scope() const {
303 return is_eval_scope() && !is_classic_mode();
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000304 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000305
ager@chromium.org381abbb2009-02-25 13:23:22 +0000306 // Information about which scopes calls eval.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000307 bool calls_eval() const { return scope_calls_eval_; }
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000308 bool calls_non_strict_eval() {
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000309 return scope_calls_eval_ && is_classic_mode();
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000310 }
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000311 bool outer_scope_calls_non_strict_eval() const {
312 return outer_scope_calls_non_strict_eval_;
313 }
ager@chromium.org381abbb2009-02-25 13:23:22 +0000314
315 // Is this scope inside a with statement.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000316 bool inside_with() const { return scope_inside_with_; }
ager@chromium.org381abbb2009-02-25 13:23:22 +0000317 // Does this scope contain a with statement.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000318 bool contains_with() const { return scope_contains_with_; }
ager@chromium.org381abbb2009-02-25 13:23:22 +0000319
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000320 // ---------------------------------------------------------------------------
321 // Accessors.
322
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000323 // The type of this scope.
ulan@chromium.orgdfe53072013-06-06 14:14:51 +0000324 ScopeType scope_type() const { return scope_type_; }
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000325
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000326 // The language mode of this scope.
327 LanguageMode language_mode() const { return language_mode_; }
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000328
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000329 // The variable corresponding the 'this' value.
330 Variable* receiver() { return receiver_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000331
332 // The variable holding the function literal for named function
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000333 // literals, or NULL. Only valid for function scopes.
334 VariableDeclaration* function() const {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000335 ASSERT(is_function_scope());
336 return function_;
337 }
338
339 // Parameters. The left-most parameter has index 0.
340 // Only valid for function scopes.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000341 Variable* parameter(int index) const {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000342 ASSERT(is_function_scope());
343 return params_[index];
344 }
345
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000346 int num_parameters() const { return params_.length(); }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000347
348 // The local variable 'arguments' if we need to allocate it; NULL otherwise.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000349 Variable* arguments() const { return arguments_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000350
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000351 // Declarations list.
352 ZoneList<Declaration*>* declarations() { return &decls_; }
353
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000354 // Inner scope list.
355 ZoneList<Scope*>* inner_scopes() { return &inner_scopes_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000356
erik.corry@gmail.combbceb572012-03-09 10:52:05 +0000357 // The scope immediately surrounding this scope, or NULL.
358 Scope* outer_scope() const { return outer_scope_; }
359
360 // The interface as inferred so far; only for module scopes.
361 Interface* interface() const { return interface_; }
362
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000363 // ---------------------------------------------------------------------------
364 // Variable allocation.
365
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000366 // Collect stack and context allocated local variables in this scope. Note
367 // that the function variable - if present - is not collected and should be
368 // handled separately.
369 void CollectStackAndContextLocals(ZoneList<Variable*>* stack_locals,
370 ZoneList<Variable*>* context_locals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000371
vegorov@chromium.org7304bca2011-05-16 12:14:13 +0000372 // Current number of var or const locals.
373 int num_var_or_const() { return num_var_or_const_; }
374
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000375 // Result of variable allocation.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000376 int num_stack_slots() const { return num_stack_slots_; }
377 int num_heap_slots() const { return num_heap_slots_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000378
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000379 int StackLocalCount() const;
380 int ContextLocalCount() const;
381
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000382 // For global scopes, the number of module literals (including nested ones).
383 int num_modules() const { return num_modules_; }
384
385 // For module scopes, the host scope's internal variable binding this module.
386 Variable* module_var() const { return module_var_; }
387
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000388 // Make sure this scope and all outer scopes are eagerly compiled.
389 void ForceEagerCompilation() { force_eager_compilation_ = true; }
390
391 // Determine if we can use lazy compilation for this scope.
392 bool AllowsLazyCompilation() const;
393
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000394 // Determine if we can use lazy compilation for this scope without a context.
395 bool AllowsLazyCompilationWithoutContext() const;
ulan@chromium.org812308e2012-02-29 15:58:45 +0000396
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000397 // True if the outer context of this scope is always the native context.
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000398 bool HasTrivialOuterContext() const;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000399
mstarzinger@chromium.orgc6d9cee2012-07-03 10:03:19 +0000400 // True if the outer context allows lazy compilation of this scope.
401 bool HasLazyCompilableOuterContext() const;
ulan@chromium.orgd6899c32012-05-18 14:12:25 +0000402
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000403 // The number of contexts between this and scope; zero if this == scope.
404 int ContextChainLength(Scope* scope);
405
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000406 // Find the innermost global scope.
407 Scope* GlobalScope();
408
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000409 // Find the first function, global, or eval scope. This is the scope
410 // where var declarations will be hoisted to in the implementation.
411 Scope* DeclarationScope();
412
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000413 Handle<ScopeInfo> GetScopeInfo();
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000414
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000415 // Get the chain of nested scopes within this scope for the source statement
416 // position. The scopes will be added to the list from the outermost scope to
417 // the innermost scope. Only nested block, catch or with scopes are tracked
418 // and will be returned, but no inner function scopes.
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000419 void GetNestedScopeChain(List<Handle<ScopeInfo> >* chain,
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000420 int statement_position);
421
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000422 // ---------------------------------------------------------------------------
ager@chromium.org378b34e2011-01-28 08:04:38 +0000423 // Strict mode support.
424 bool IsDeclared(Handle<String> name) {
425 // During formal parameter list parsing the scope only contains
426 // two variables inserted at initialization: "this" and "arguments".
427 // "this" is an invalid parameter name and "arguments" is invalid parameter
428 // name in strict mode. Therefore looking up with the map which includes
429 // "this" and "arguments" in addition to all formal parameters is safe.
430 return variables_.Lookup(name) != NULL;
431 }
432
433 // ---------------------------------------------------------------------------
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000434 // Debugging.
435
436#ifdef DEBUG
437 void Print(int n = 0); // n = indentation; n < 0 => don't print recursively
438#endif
439
440 // ---------------------------------------------------------------------------
441 // Implementation.
442 protected:
443 friend class ParserFactory;
444
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000445 Isolate* const isolate_;
446
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000447 // Scope tree.
448 Scope* outer_scope_; // the immediately enclosing outer scope, or NULL
449 ZoneList<Scope*> inner_scopes_; // the immediately enclosed inner scopes
450
451 // The scope type.
ulan@chromium.orgdfe53072013-06-06 14:14:51 +0000452 ScopeType scope_type_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000453
454 // Debugging support.
455 Handle<String> scope_name_;
456
457 // The variables declared in this scope:
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000458 //
459 // All user-declared variables (incl. parameters). For global scopes
460 // variables may be implicitly 'declared' by being used (possibly in
461 // an inner scope) with no intervening with statements or eval calls.
462 VariableMap variables_;
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000463 // Compiler-allocated (user-invisible) internals.
464 ZoneList<Variable*> internals_;
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000465 // Compiler-allocated (user-invisible) temporaries.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000466 ZoneList<Variable*> temps_;
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000467 // Parameter list in source order.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000468 ZoneList<Variable*> params_;
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000469 // Variables that must be looked up dynamically.
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000470 DynamicScopePart* dynamics_;
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000471 // Unresolved variables referred to from this scope.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000472 ZoneList<VariableProxy*> unresolved_;
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000473 // Declarations.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000474 ZoneList<Declaration*> decls_;
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000475 // Convenience variable.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000476 Variable* receiver_;
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000477 // Function variable, if any; function scopes only.
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000478 VariableDeclaration* function_;
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000479 // Convenience variable; function scopes only.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000480 Variable* arguments_;
erik.corry@gmail.combbceb572012-03-09 10:52:05 +0000481 // Interface; module scopes only.
482 Interface* interface_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000483
484 // Illegal redeclaration.
485 Expression* illegal_redecl_;
486
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000487 // Scope-specific information computed during parsing.
488 //
489 // This scope is inside a 'with' of some outer scope.
490 bool scope_inside_with_;
491 // This scope contains a 'with' statement.
492 bool scope_contains_with_;
493 // This scope or a nested catch scope or with scope contain an 'eval' call. At
494 // the 'eval' call site this scope is the declaration scope.
495 bool scope_calls_eval_;
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000496 // The language mode of this scope.
497 LanguageMode language_mode_;
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000498 // Source positions.
499 int start_position_;
500 int end_position_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000501
502 // Computed via PropagateScopeInfo.
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000503 bool outer_scope_calls_non_strict_eval_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000504 bool inner_scope_calls_eval_;
505 bool force_eager_compilation_;
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +0000506 bool force_context_allocation_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000507
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000508 // True if it doesn't need scope resolution (e.g., if the scope was
509 // constructed based on a serialized scope info or a catch context).
510 bool already_resolved_;
511
vegorov@chromium.org7304bca2011-05-16 12:14:13 +0000512 // Computed as variables are declared.
513 int num_var_or_const_;
514
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000515 // Computed via AllocateVariables; function, block and catch scopes only.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000516 int num_stack_slots_;
517 int num_heap_slots_;
518
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000519 // The number of modules (including nested ones).
520 int num_modules_;
521
522 // For module scopes, the host scope's internal variable binding this module.
523 Variable* module_var_;
524
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000525 // Serialized scope info support.
526 Handle<ScopeInfo> scope_info_;
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000527 bool already_resolved() { return already_resolved_; }
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000528
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000529 // Create a non-local variable with a given name.
530 // These variables are looked up dynamically at runtime.
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000531 Variable* NonLocal(Handle<String> name, VariableMode mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000532
533 // Variable resolution.
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000534 // Possible results of a recursive variable lookup telling if and how a
535 // variable is bound. These are returned in the output parameter *binding_kind
536 // of the LookupRecursive function.
537 enum BindingKind {
538 // The variable reference could be statically resolved to a variable binding
539 // which is returned. There is no 'with' statement between the reference and
540 // the binding and no scope between the reference scope (inclusive) and
541 // binding scope (exclusive) makes a non-strict 'eval' call.
542 BOUND,
543
544 // The variable reference could be statically resolved to a variable binding
545 // which is returned. There is no 'with' statement between the reference and
546 // the binding, but some scope between the reference scope (inclusive) and
547 // binding scope (exclusive) makes a non-strict 'eval' call, that might
548 // possibly introduce variable bindings shadowing the found one. Thus the
549 // found variable binding is just a guess.
550 BOUND_EVAL_SHADOWED,
551
552 // The variable reference could not be statically resolved to any binding
553 // and thus should be considered referencing a global variable. NULL is
554 // returned. The variable reference is not inside any 'with' statement and
555 // no scope between the reference scope (inclusive) and global scope
556 // (exclusive) makes a non-strict 'eval' call.
557 UNBOUND,
558
559 // The variable reference could not be statically resolved to any binding
560 // NULL is returned. The variable reference is not inside any 'with'
561 // statement, but some scope between the reference scope (inclusive) and
562 // global scope (exclusive) makes a non-strict 'eval' call, that might
563 // possibly introduce a variable binding. Thus the reference should be
564 // considered referencing a global variable unless it is shadowed by an
565 // 'eval' introduced binding.
566 UNBOUND_EVAL_SHADOWED,
567
568 // The variable could not be statically resolved and needs to be looked up
569 // dynamically. NULL is returned. There are two possible reasons:
570 // * A 'with' statement has been encountered and there is no variable
571 // binding for the name between the variable reference and the 'with'.
572 // The variable potentially references a property of the 'with' object.
573 // * The code is being executed as part of a call to 'eval' and the calling
574 // context chain contains either a variable binding for the name or it
575 // contains a 'with' context.
576 DYNAMIC_LOOKUP
577 };
578
579 // Lookup a variable reference given by name recursively starting with this
580 // scope. If the code is executed because of a call to 'eval', the context
581 // parameter should be set to the calling context of 'eval'.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000582 Variable* LookupRecursive(Handle<String> name,
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +0000583 BindingKind* binding_kind,
584 AstNodeFactory<AstNullVisitor>* factory);
erik.corry@gmail.combbceb572012-03-09 10:52:05 +0000585 MUST_USE_RESULT
586 bool ResolveVariable(CompilationInfo* info,
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +0000587 VariableProxy* proxy,
588 AstNodeFactory<AstNullVisitor>* factory);
erik.corry@gmail.combbceb572012-03-09 10:52:05 +0000589 MUST_USE_RESULT
590 bool ResolveVariablesRecursively(CompilationInfo* info,
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +0000591 AstNodeFactory<AstNullVisitor>* factory);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000592
593 // Scope analysis.
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000594 bool PropagateScopeInfo(bool outer_scope_calls_non_strict_eval);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000595 bool HasTrivialContext() const;
596
597 // Predicates.
598 bool MustAllocate(Variable* var);
599 bool MustAllocateInContext(Variable* var);
600 bool HasArgumentsParameter();
601
602 // Variable allocation.
603 void AllocateStackSlot(Variable* var);
604 void AllocateHeapSlot(Variable* var);
605 void AllocateParameterLocals();
606 void AllocateNonParameterLocal(Variable* var);
607 void AllocateNonParameterLocals();
608 void AllocateVariablesRecursively();
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000609 void AllocateModulesRecursively(Scope* host_scope);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000610
erik.corry@gmail.combbceb572012-03-09 10:52:05 +0000611 // Resolve and fill in the allocation information for all variables
612 // in this scopes. Must be called *after* all scopes have been
613 // processed (parsed) to ensure that unresolved variables can be
614 // resolved properly.
615 //
616 // In the case of code compiled and run using 'eval', the context
617 // parameter is the context in which eval was called. In all other
618 // cases the context parameter is an empty handle.
619 MUST_USE_RESULT
620 bool AllocateVariables(CompilationInfo* info,
621 AstNodeFactory<AstNullVisitor>* factory);
622
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000623 private:
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000624 // Construct a scope based on the scope info.
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000625 Scope(Scope* inner_scope, ScopeType type, Handle<ScopeInfo> scope_info,
626 Zone* zone);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000627
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000628 // Construct a catch scope with a binding for the name.
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000629 Scope(Scope* inner_scope, Handle<String> catch_variable_name, Zone* zone);
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000630
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000631 void AddInnerScope(Scope* inner_scope) {
632 if (inner_scope != NULL) {
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000633 inner_scopes_.Add(inner_scope, zone_);
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000634 inner_scope->outer_scope_ = this;
635 }
636 }
637
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000638 void SetDefaults(ScopeType type,
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000639 Scope* outer_scope,
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000640 Handle<ScopeInfo> scope_info);
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000641
642 Zone* zone_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000643};
644
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000645} } // namespace v8::internal
646
647#endif // V8_SCOPES_H_