blob: ddde48a77c50eaccb92ef21376dfc510f1a5aeb0 [file] [log] [blame]
karlklose@chromium.org83a47282011-05-11 11:54:09 +00001// Copyright 2011 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#include "v8.h"
29
ager@chromium.orgb61a0d12010-10-13 08:35:23 +000030#include "scopes.h"
31
32#include "bootstrapper.h"
33#include "compiler.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000034#include "prettyprinter.h"
35#include "scopeinfo.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036
whesse@chromium.org030d38e2011-07-13 13:23:34 +000037#include "allocation-inl.h"
38
kasperl@chromium.org71affb52009-05-26 05:44:31 +000039namespace v8 {
40namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000041
42// ----------------------------------------------------------------------------
43// A Zone allocator for use with LocalsMap.
44
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000045// TODO(isolates): It is probably worth it to change the Allocator class to
46// take a pointer to an isolate.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000047class ZoneAllocator: public Allocator {
48 public:
49 /* nothing to do */
50 virtual ~ZoneAllocator() {}
51
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000052 virtual void* New(size_t size) { return ZONE->New(static_cast<int>(size)); }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000053
54 /* ignored - Zone is freed in one fell swoop */
55 virtual void Delete(void* p) {}
56};
57
58
59static ZoneAllocator LocalsMapAllocator;
60
61
62// ----------------------------------------------------------------------------
63// Implementation of LocalsMap
64//
65// Note: We are storing the handle locations as key values in the hash map.
66// When inserting a new variable via Declare(), we rely on the fact that
67// the handle location remains alive for the duration of that variable
68// use. Because a Variable holding a handle with the same location exists
69// this is ensured.
70
71static bool Match(void* key1, void* key2) {
72 String* name1 = *reinterpret_cast<String**>(key1);
73 String* name2 = *reinterpret_cast<String**>(key2);
74 ASSERT(name1->IsSymbol());
75 ASSERT(name2->IsSymbol());
76 return name1 == name2;
77}
78
79
80// Dummy constructor
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000081VariableMap::VariableMap(bool gotta_love_static_overloading) : HashMap() {}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000082
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000083VariableMap::VariableMap() : HashMap(Match, &LocalsMapAllocator, 8) {}
84VariableMap::~VariableMap() {}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000085
86
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000087Variable* VariableMap::Declare(Scope* scope,
88 Handle<String> name,
89 Variable::Mode mode,
90 bool is_valid_lhs,
91 Variable::Kind kind) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000092 HashMap::Entry* p = HashMap::Lookup(name.location(), name->Hash(), true);
93 if (p->value == NULL) {
94 // The variable has not been declared yet -> insert it.
95 ASSERT(p->key == name.location());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000096 p->value = new Variable(scope, name, mode, is_valid_lhs, kind);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000097 }
98 return reinterpret_cast<Variable*>(p->value);
99}
100
101
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000102Variable* VariableMap::Lookup(Handle<String> name) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000103 HashMap::Entry* p = HashMap::Lookup(name.location(), name->Hash(), false);
104 if (p != NULL) {
105 ASSERT(*reinterpret_cast<String**>(p->key) == *name);
106 ASSERT(p->value != NULL);
107 return reinterpret_cast<Variable*>(p->value);
108 }
109 return NULL;
110}
111
112
113// ----------------------------------------------------------------------------
114// Implementation of Scope
115
116
117// Dummy constructor
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000118Scope::Scope(Type type)
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000119 : isolate_(Isolate::Current()),
120 inner_scopes_(0),
121 variables_(false),
122 temps_(0),
123 params_(0),
124 unresolved_(0),
125 decls_(0),
126 already_resolved_(false) {
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000127 SetDefaults(type, NULL, Handle<SerializedScopeInfo>::null());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000128}
129
130
131Scope::Scope(Scope* outer_scope, Type type)
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000132 : isolate_(Isolate::Current()),
133 inner_scopes_(4),
134 variables_(),
135 temps_(4),
136 params_(4),
137 unresolved_(16),
138 decls_(4),
139 already_resolved_(false) {
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000140 SetDefaults(type, outer_scope, Handle<SerializedScopeInfo>::null());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000141 // At some point we might want to provide outer scopes to
142 // eval scopes (by walking the stack and reading the scope info).
143 // In that case, the ASSERT below needs to be adjusted.
144 ASSERT((type == GLOBAL_SCOPE || type == EVAL_SCOPE) == (outer_scope == NULL));
145 ASSERT(!HasIllegalRedeclaration());
146}
147
148
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000149Scope::Scope(Scope* inner_scope,
150 Type type,
151 Handle<SerializedScopeInfo> scope_info)
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000152 : isolate_(Isolate::Current()),
153 inner_scopes_(4),
154 variables_(),
155 temps_(4),
156 params_(4),
157 unresolved_(16),
158 decls_(4),
159 already_resolved_(true) {
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000160 ASSERT(!scope_info.is_null());
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000161 SetDefaults(type, NULL, scope_info);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000162 if (scope_info->HasHeapAllocatedLocals()) {
163 num_heap_slots_ = scope_info_->NumberOfContextSlots();
164 }
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000165 AddInnerScope(inner_scope);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000166}
167
168
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000169Scope::Scope(Scope* inner_scope, Handle<String> catch_variable_name)
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000170 : isolate_(Isolate::Current()),
171 inner_scopes_(1),
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000172 variables_(),
173 temps_(0),
174 params_(0),
175 unresolved_(0),
176 decls_(0),
177 already_resolved_(true) {
178 SetDefaults(CATCH_SCOPE, NULL, Handle<SerializedScopeInfo>::null());
179 AddInnerScope(inner_scope);
180 ++num_var_or_const_;
181 Variable* variable = variables_.Declare(this,
182 catch_variable_name,
183 Variable::VAR,
184 true, // Valid left-hand side.
185 Variable::NORMAL);
186 AllocateHeapSlot(variable);
187}
188
189
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000190void Scope::SetDefaults(Type type,
191 Scope* outer_scope,
192 Handle<SerializedScopeInfo> scope_info) {
193 outer_scope_ = outer_scope;
194 type_ = type;
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000195 scope_name_ = isolate_->factory()->empty_symbol();
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000196 dynamics_ = NULL;
197 receiver_ = NULL;
198 function_ = NULL;
199 arguments_ = NULL;
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000200 illegal_redecl_ = NULL;
201 scope_inside_with_ = false;
202 scope_contains_with_ = false;
203 scope_calls_eval_ = false;
204 // Inherit the strict mode from the parent scope.
205 strict_mode_ = (outer_scope != NULL) && outer_scope->strict_mode_;
206 outer_scope_calls_eval_ = false;
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000207 outer_scope_calls_non_strict_eval_ = false;
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000208 inner_scope_calls_eval_ = false;
209 outer_scope_is_eval_scope_ = false;
210 force_eager_compilation_ = false;
vegorov@chromium.org7304bca2011-05-16 12:14:13 +0000211 num_var_or_const_ = 0;
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000212 num_stack_slots_ = 0;
213 num_heap_slots_ = 0;
214 scope_info_ = scope_info;
215}
216
217
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000218Scope* Scope::DeserializeScopeChain(CompilationInfo* info,
219 Scope* global_scope) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000220 // Reconstruct the outer scope chain from a closure's context chain.
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000221 ASSERT(!info->closure().is_null());
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000222 Context* context = info->closure()->context();
223 Scope* current_scope = NULL;
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000224 Scope* innermost_scope = NULL;
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000225 bool contains_with = false;
226 while (!context->IsGlobalContext()) {
227 if (context->IsWithContext()) {
228 // All the inner scopes are inside a with.
229 contains_with = true;
230 for (Scope* s = innermost_scope; s != NULL; s = s->outer_scope()) {
231 s->scope_inside_with_ = true;
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000232 }
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000233 } else {
234 if (context->IsFunctionContext()) {
235 SerializedScopeInfo* scope_info =
236 context->closure()->shared()->scope_info();
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000237 current_scope = new Scope(current_scope, FUNCTION_SCOPE,
238 Handle<SerializedScopeInfo>(scope_info));
239 } else if (context->IsBlockContext()) {
240 SerializedScopeInfo* scope_info =
241 SerializedScopeInfo::cast(context->extension());
242 current_scope = new Scope(current_scope, BLOCK_SCOPE,
243 Handle<SerializedScopeInfo>(scope_info));
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000244 } else {
245 ASSERT(context->IsCatchContext());
246 String* name = String::cast(context->extension());
247 current_scope = new Scope(current_scope, Handle<String>(name));
248 }
249 if (contains_with) current_scope->RecordWithStatement();
250 if (innermost_scope == NULL) innermost_scope = current_scope;
251 }
252
253 // Forget about a with when we move to a context for a different function.
254 if (context->previous()->closure() != context->closure()) {
255 contains_with = false;
256 }
257 context = context->previous();
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000258 }
259
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000260 global_scope->AddInnerScope(current_scope);
261 return (innermost_scope == NULL) ? global_scope : innermost_scope;
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000262}
263
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000264
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000265bool Scope::Analyze(CompilationInfo* info) {
266 ASSERT(info->function() != NULL);
267 Scope* top = info->function()->scope();
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000268
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000269 while (top->outer_scope() != NULL) top = top->outer_scope();
270 top->AllocateVariables(info->calling_context());
271
272#ifdef DEBUG
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000273 if (info->isolate()->bootstrapper()->IsActive()
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000274 ? FLAG_print_builtin_scopes
275 : FLAG_print_scopes) {
276 info->function()->scope()->Print();
277 }
278#endif
279
280 info->SetScope(info->function()->scope());
281 return true; // Can not fail.
282}
283
284
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000285void Scope::Initialize(bool inside_with) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000286 ASSERT(!already_resolved());
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000287
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000288 // Add this scope as a new inner scope of the outer scope.
289 if (outer_scope_ != NULL) {
290 outer_scope_->inner_scopes_.Add(this);
291 scope_inside_with_ = outer_scope_->scope_inside_with_ || inside_with;
292 } else {
293 scope_inside_with_ = inside_with;
294 }
295
296 // Declare convenience variables.
297 // Declare and allocate receiver (even for the global scope, and even
298 // if naccesses_ == 0).
299 // NOTE: When loading parameters in the global scope, we must take
300 // care not to access them as properties of the global object, but
301 // instead load them directly from the stack. Currently, the only
302 // such parameter is 'this' which is passed on the stack when
303 // invoking scripts
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000304 if (is_catch_scope() || is_block_scope()) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000305 ASSERT(outer_scope() != NULL);
306 receiver_ = outer_scope()->receiver();
307 } else {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000308 ASSERT(is_function_scope() ||
309 is_global_scope() ||
310 is_eval_scope());
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000311 Variable* var =
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000312 variables_.Declare(this,
313 isolate_->factory()->this_symbol(),
314 Variable::VAR,
315 false,
316 Variable::THIS);
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000317 var->set_rewrite(NewSlot(var, Slot::PARAMETER, -1));
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000318 receiver_ = var;
319 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000320
321 if (is_function_scope()) {
322 // Declare 'arguments' variable which exists in all functions.
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000323 // Note that it might never be accessed, in which case it won't be
324 // allocated during variable allocation.
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000325 variables_.Declare(this,
326 isolate_->factory()->arguments_symbol(),
327 Variable::VAR,
328 true,
329 Variable::ARGUMENTS);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000330 }
331}
332
333
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000334Variable* Scope::LocalLookup(Handle<String> name) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000335 Variable* result = variables_.Lookup(name);
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000336 if (result != NULL || scope_info_.is_null()) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000337 return result;
338 }
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000339 // If we have a serialized scope info, we might find the variable there.
whesse@chromium.org7b260152011-06-20 15:33:18 +0000340 //
341 // We should never lookup 'arguments' in this scope as it is implicitly
342 // present in every scope.
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000343 ASSERT(*name != *isolate_->factory()->arguments_symbol());
whesse@chromium.org7b260152011-06-20 15:33:18 +0000344 // There should be no local slot with the given name.
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000345 ASSERT(scope_info_->StackSlotIndex(*name) < 0);
346
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000347 // Check context slot lookup.
348 Variable::Mode mode;
349 int index = scope_info_->ContextSlotIndex(*name, &mode);
whesse@chromium.org7b260152011-06-20 15:33:18 +0000350 if (index < 0) {
351 // Check parameters.
352 mode = Variable::VAR;
353 index = scope_info_->ParameterIndex(*name);
354 if (index < 0) {
355 // Check the function name.
356 index = scope_info_->FunctionContextSlotIndex(*name);
357 if (index < 0) return NULL;
358 }
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000359 }
360
whesse@chromium.org7b260152011-06-20 15:33:18 +0000361 Variable* var =
362 variables_.Declare(this, name, mode, true, Variable::NORMAL);
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000363 var->set_rewrite(NewSlot(var, Slot::CONTEXT, index));
whesse@chromium.org7b260152011-06-20 15:33:18 +0000364 return var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000365}
366
367
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000368Variable* Scope::Lookup(Handle<String> name) {
369 for (Scope* scope = this;
370 scope != NULL;
371 scope = scope->outer_scope()) {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000372 Variable* var = scope->LocalLookup(name);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000373 if (var != NULL) return var;
374 }
375 return NULL;
376}
377
378
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000379Variable* Scope::DeclareFunctionVar(Handle<String> name) {
380 ASSERT(is_function_scope() && function_ == NULL);
ager@chromium.org3e875802009-06-29 08:26:34 +0000381 function_ = new Variable(this, name, Variable::CONST, true, Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000382 return function_;
383}
384
385
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000386void Scope::DeclareParameter(Handle<String> name) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000387 ASSERT(!already_resolved());
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000388 ASSERT(is_function_scope());
389 Variable* var =
390 variables_.Declare(this, name, Variable::VAR, true, Variable::NORMAL);
391 params_.Add(var);
392}
393
394
395Variable* Scope::DeclareLocal(Handle<String> name, Variable::Mode mode) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000396 ASSERT(!already_resolved());
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000397 // This function handles VAR and CONST modes. DYNAMIC variables are
398 // introduces during variable allocation, INTERNAL variables are allocated
399 // explicitly, and TEMPORARY variables are allocated via NewTemporary().
danno@chromium.orgb6451162011-08-17 14:33:23 +0000400 ASSERT(mode == Variable::VAR ||
401 mode == Variable::CONST ||
402 mode == Variable::LET);
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000403 ++num_var_or_const_;
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000404 return variables_.Declare(this, name, mode, true, Variable::NORMAL);
405}
406
407
408Variable* Scope::DeclareGlobal(Handle<String> name) {
409 ASSERT(is_global_scope());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000410 return variables_.Declare(this, name, Variable::DYNAMIC_GLOBAL, true,
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000411 Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000412}
413
414
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000415VariableProxy* Scope::NewUnresolved(Handle<String> name,
416 bool inside_with,
417 int position) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000418 // Note that we must not share the unresolved variables with
419 // the same name because they may be removed selectively via
420 // RemoveUnresolved().
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000421 ASSERT(!already_resolved());
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000422 VariableProxy* proxy = new(isolate_->zone()) VariableProxy(
423 isolate_, name, false, inside_with, position);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000424 unresolved_.Add(proxy);
425 return proxy;
426}
427
428
429void Scope::RemoveUnresolved(VariableProxy* var) {
430 // Most likely (always?) any variable we want to remove
431 // was just added before, so we search backwards.
432 for (int i = unresolved_.length(); i-- > 0;) {
433 if (unresolved_[i] == var) {
434 unresolved_.Remove(i);
435 return;
436 }
437 }
438}
439
440
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000441Variable* Scope::NewTemporary(Handle<String> name) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000442 ASSERT(!already_resolved());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000443 Variable* var =
444 new Variable(this, name, Variable::TEMPORARY, true, Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000445 temps_.Add(var);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000446 return var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000447}
448
449
450void Scope::AddDeclaration(Declaration* declaration) {
451 decls_.Add(declaration);
452}
453
454
455void Scope::SetIllegalRedeclaration(Expression* expression) {
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000456 // Record only the first illegal redeclaration.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000457 if (!HasIllegalRedeclaration()) {
458 illegal_redecl_ = expression;
459 }
460 ASSERT(HasIllegalRedeclaration());
461}
462
463
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000464void Scope::VisitIllegalRedeclaration(AstVisitor* visitor) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000465 ASSERT(HasIllegalRedeclaration());
466 illegal_redecl_->Accept(visitor);
467}
468
469
470template<class Allocator>
471void Scope::CollectUsedVariables(List<Variable*, Allocator>* locals) {
472 // Collect variables in this scope.
473 // Note that the function_ variable - if present - is not
474 // collected here but handled separately in ScopeInfo
475 // which is the current user of this function).
476 for (int i = 0; i < temps_.length(); i++) {
477 Variable* var = temps_[i];
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000478 if (var->is_used()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000479 locals->Add(var);
480 }
481 }
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000482 for (VariableMap::Entry* p = variables_.Start();
483 p != NULL;
484 p = variables_.Next(p)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000485 Variable* var = reinterpret_cast<Variable*>(p->value);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000486 if (var->is_used()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000487 locals->Add(var);
488 }
489 }
490}
491
492
493// Make sure the method gets instantiated by the template system.
494template void Scope::CollectUsedVariables(
495 List<Variable*, FreeStoreAllocationPolicy>* locals);
496template void Scope::CollectUsedVariables(
497 List<Variable*, PreallocatedStorage>* locals);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000498template void Scope::CollectUsedVariables(
499 List<Variable*, ZoneListAllocationPolicy>* locals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000500
501
ager@chromium.org381abbb2009-02-25 13:23:22 +0000502void Scope::AllocateVariables(Handle<Context> context) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000503 ASSERT(outer_scope_ == NULL); // eval or global scopes only
504
505 // 1) Propagate scope information.
506 // If we are in an eval scope, we may have other outer scopes about
507 // which we don't know anything at this point. Thus we must be conservative
508 // and assume they may invoke eval themselves. Eventually we could capture
509 // this information in the ScopeInfo and then use it here (by traversing
510 // the call chain stack, at compile time).
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000511
ager@chromium.org381abbb2009-02-25 13:23:22 +0000512 bool eval_scope = is_eval_scope();
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000513 bool outer_scope_calls_eval = false;
514 bool outer_scope_calls_non_strict_eval = false;
515 if (!is_global_scope()) {
516 context->ComputeEvalScopeInfo(&outer_scope_calls_eval,
517 &outer_scope_calls_non_strict_eval);
518 }
519 PropagateScopeInfo(outer_scope_calls_eval,
520 outer_scope_calls_non_strict_eval,
521 eval_scope);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000522
523 // 2) Resolve variables.
524 Scope* global_scope = NULL;
525 if (is_global_scope()) global_scope = this;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000526 ResolveVariablesRecursively(global_scope, context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000527
528 // 3) Allocate variables.
529 AllocateVariablesRecursively();
530}
531
532
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000533bool Scope::AllowsLazyCompilation() const {
534 return !force_eager_compilation_ && HasTrivialOuterContext();
535}
536
537
538bool Scope::HasTrivialContext() const {
539 // A function scope has a trivial context if it always is the global
540 // context. We iteratively scan out the context chain to see if
541 // there is anything that makes this scope non-trivial; otherwise we
542 // return true.
543 for (const Scope* scope = this; scope != NULL; scope = scope->outer_scope_) {
544 if (scope->is_eval_scope()) return false;
545 if (scope->scope_inside_with_) return false;
546 if (scope->num_heap_slots_ > 0) return false;
547 }
548 return true;
549}
550
551
552bool Scope::HasTrivialOuterContext() const {
553 Scope* outer = outer_scope_;
554 if (outer == NULL) return true;
555 // Note that the outer context may be trivial in general, but the current
556 // scope may be inside a 'with' statement in which case the outer context
557 // for this scope is not trivial.
558 return !scope_inside_with_ && outer->HasTrivialContext();
559}
560
561
562int Scope::ContextChainLength(Scope* scope) {
563 int n = 0;
564 for (Scope* s = this; s != scope; s = s->outer_scope_) {
565 ASSERT(s != NULL); // scope must be in the scope chain
566 if (s->num_heap_slots() > 0) n++;
567 }
568 return n;
569}
570
571
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000572Scope* Scope::DeclarationScope() {
573 Scope* scope = this;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000574 while (scope->is_catch_scope() ||
575 scope->is_block_scope()) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000576 scope = scope->outer_scope();
577 }
578 return scope;
579}
580
581
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000582Handle<SerializedScopeInfo> Scope::GetSerializedScopeInfo() {
583 if (scope_info_.is_null()) {
584 scope_info_ = SerializedScopeInfo::Create(this);
585 }
586 return scope_info_;
587}
588
589
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000590#ifdef DEBUG
591static const char* Header(Scope::Type type) {
592 switch (type) {
593 case Scope::EVAL_SCOPE: return "eval";
594 case Scope::FUNCTION_SCOPE: return "function";
595 case Scope::GLOBAL_SCOPE: return "global";
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000596 case Scope::CATCH_SCOPE: return "catch";
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000597 case Scope::BLOCK_SCOPE: return "block";
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000598 }
599 UNREACHABLE();
600 return NULL;
601}
602
603
604static void Indent(int n, const char* str) {
605 PrintF("%*s%s", n, "", str);
606}
607
608
609static void PrintName(Handle<String> name) {
610 SmartPointer<char> s = name->ToCString(DISALLOW_NULLS);
611 PrintF("%s", *s);
612}
613
614
615static void PrintVar(PrettyPrinter* printer, int indent, Variable* var) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000616 if (var->is_used() || var->rewrite() != NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000617 Indent(indent, Variable::Mode2String(var->mode()));
618 PrintF(" ");
619 PrintName(var->name());
620 PrintF("; // ");
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000621 if (var->rewrite() != NULL) {
622 PrintF("%s, ", printer->Print(var->rewrite()));
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000623 if (var->is_accessed_from_inner_function_scope()) PrintF(", ");
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000624 }
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000625 if (var->is_accessed_from_inner_function_scope()) {
626 PrintF("inner scope access");
627 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000628 PrintF("\n");
629 }
630}
631
632
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000633static void PrintMap(PrettyPrinter* printer, int indent, VariableMap* map) {
634 for (VariableMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000635 Variable* var = reinterpret_cast<Variable*>(p->value);
636 PrintVar(printer, indent, var);
637 }
638}
639
640
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000641void Scope::Print(int n) {
642 int n0 = (n > 0 ? n : 0);
643 int n1 = n0 + 2; // indentation
644
645 // Print header.
646 Indent(n0, Header(type_));
647 if (scope_name_->length() > 0) {
648 PrintF(" ");
649 PrintName(scope_name_);
650 }
651
652 // Print parameters, if any.
653 if (is_function_scope()) {
654 PrintF(" (");
655 for (int i = 0; i < params_.length(); i++) {
656 if (i > 0) PrintF(", ");
657 PrintName(params_[i]->name());
658 }
659 PrintF(")");
660 }
661
662 PrintF(" {\n");
663
664 // Function name, if any (named function literals, only).
665 if (function_ != NULL) {
666 Indent(n1, "// (local) function name: ");
667 PrintName(function_->name());
668 PrintF("\n");
669 }
670
671 // Scope info.
672 if (HasTrivialOuterContext()) {
673 Indent(n1, "// scope has trivial outer context\n");
674 }
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000675 if (is_strict_mode()) Indent(n1, "// strict mode scope\n");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000676 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
677 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
678 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
679 if (outer_scope_calls_eval_) Indent(n1, "// outer scope calls 'eval'\n");
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000680 if (outer_scope_calls_non_strict_eval_) {
681 Indent(n1, "// outer scope calls 'eval' in non-strict context\n");
682 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000683 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
ager@chromium.org381abbb2009-02-25 13:23:22 +0000684 if (outer_scope_is_eval_scope_) {
685 Indent(n1, "// outer scope is 'eval' scope\n");
686 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000687 if (num_stack_slots_ > 0) { Indent(n1, "// ");
688 PrintF("%d stack slots\n", num_stack_slots_); }
689 if (num_heap_slots_ > 0) { Indent(n1, "// ");
690 PrintF("%d heap slots\n", num_heap_slots_); }
691
692 // Print locals.
693 PrettyPrinter printer;
694 Indent(n1, "// function var\n");
695 if (function_ != NULL) {
696 PrintVar(&printer, n1, function_);
697 }
698
699 Indent(n1, "// temporary vars\n");
700 for (int i = 0; i < temps_.length(); i++) {
701 PrintVar(&printer, n1, temps_[i]);
702 }
703
704 Indent(n1, "// local vars\n");
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000705 PrintMap(&printer, n1, &variables_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000706
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000707 Indent(n1, "// dynamic vars\n");
708 if (dynamics_ != NULL) {
709 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC));
710 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_LOCAL));
711 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_GLOBAL));
712 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000713
714 // Print inner scopes (disable by providing negative n).
715 if (n >= 0) {
716 for (int i = 0; i < inner_scopes_.length(); i++) {
717 PrintF("\n");
718 inner_scopes_[i]->Print(n1);
719 }
720 }
721
722 Indent(n0, "}\n");
723}
724#endif // DEBUG
725
726
ager@chromium.org381abbb2009-02-25 13:23:22 +0000727Variable* Scope::NonLocal(Handle<String> name, Variable::Mode mode) {
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000728 if (dynamics_ == NULL) dynamics_ = new DynamicScopePart();
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000729 VariableMap* map = dynamics_->GetMap(mode);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000730 Variable* var = map->Lookup(name);
731 if (var == NULL) {
732 // Declare a new non-local.
ager@chromium.org3e875802009-06-29 08:26:34 +0000733 var = map->Declare(NULL, name, mode, true, Variable::NORMAL);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000734 // Allocate it by giving it a dynamic lookup.
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000735 var->set_rewrite(NewSlot(var, Slot::LOOKUP, -1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000736 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000737 return var;
738}
739
740
741// Lookup a variable starting with this scope. The result is either
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000742// the statically resolved variable belonging to an outer scope, or
743// NULL. It may be NULL because a) we couldn't find a variable, or b)
744// because the variable is just a guess (and may be shadowed by
745// another variable that is introduced dynamically via an 'eval' call
746// or a 'with' statement).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000747Variable* Scope::LookupRecursive(Handle<String> name,
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000748 bool from_inner_function,
ager@chromium.org381abbb2009-02-25 13:23:22 +0000749 Variable** invalidated_local) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000750 // If we find a variable, but the current scope calls 'eval', the found
751 // variable may not be the correct one (the 'eval' may introduce a
752 // property with the same name). In that case, remember that the variable
753 // found is just a guess.
754 bool guess = scope_calls_eval_;
755
756 // Try to find the variable in this scope.
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000757 Variable* var = LocalLookup(name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000758
759 if (var != NULL) {
760 // We found a variable. If this is not an inner lookup, we are done.
761 // (Even if there is an 'eval' in this scope which introduces the
762 // same variable again, the resulting variable remains the same.
763 // Note that enclosing 'with' statements are handled at the call site.)
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000764 if (!from_inner_function)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000765 return var;
766
767 } else {
768 // We did not find a variable locally. Check against the function variable,
769 // if any. We can do this for all scopes, since the function variable is
770 // only present - if at all - for function scopes.
771 //
772 // This lookup corresponds to a lookup in the "intermediate" scope sitting
773 // between this scope and the outer scope. (ECMA-262, 3rd., requires that
774 // the name of named function literal is kept in an intermediate scope
ager@chromium.org32912102009-01-16 10:38:43 +0000775 // in between this scope and the next outer scope.)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000776 if (function_ != NULL && function_->name().is_identical_to(name)) {
777 var = function_;
778
779 } else if (outer_scope_ != NULL) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000780 var = outer_scope_->LookupRecursive(
781 name,
782 is_function_scope() || from_inner_function,
783 invalidated_local);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000784 // We may have found a variable in an outer scope. However, if
785 // the current scope is inside a 'with', the actual variable may
786 // be a property introduced via the 'with' statement. Then, the
787 // variable we may have found is just a guess.
788 if (scope_inside_with_)
789 guess = true;
790 }
791
792 // If we did not find a variable, we are done.
793 if (var == NULL)
794 return NULL;
795 }
796
797 ASSERT(var != NULL);
798
799 // If this is a lookup from an inner scope, mark the variable.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000800 if (from_inner_function) {
801 var->MarkAsAccessedFromInnerFunctionScope();
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000802 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000803
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000804 // If the variable we have found is just a guess, invalidate the
805 // result. If the found variable is local, record that fact so we
806 // can generate fast code to get it if it is not shadowed by eval.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000807 if (guess) {
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000808 if (!var->is_global()) *invalidated_local = var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000809 var = NULL;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000810 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000811
812 return var;
813}
814
815
ager@chromium.org381abbb2009-02-25 13:23:22 +0000816void Scope::ResolveVariable(Scope* global_scope,
817 Handle<Context> context,
818 VariableProxy* proxy) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000819 ASSERT(global_scope == NULL || global_scope->is_global_scope());
820
821 // If the proxy is already resolved there's nothing to do
822 // (functions and consts may be resolved by the parser).
823 if (proxy->var() != NULL) return;
824
825 // Otherwise, try to resolve the variable.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000826 Variable* invalidated_local = NULL;
827 Variable* var = LookupRecursive(proxy->name(), false, &invalidated_local);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000828
829 if (proxy->inside_with()) {
830 // If we are inside a local 'with' statement, all bets are off
831 // and we cannot resolve the proxy to a local variable even if
832 // we found an outer matching variable.
833 // Note that we must do a lookup anyway, because if we find one,
834 // we must mark that variable as potentially accessed from this
835 // inner scope (the property may not be in the 'with' object).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000836 var = NonLocal(proxy->name(), Variable::DYNAMIC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000837
838 } else {
839 // We are not inside a local 'with' statement.
840
841 if (var == NULL) {
842 // We did not find the variable. We have a global variable
843 // if we are in the global scope (we know already that we
844 // are outside a 'with' statement) or if there is no way
845 // that the variable might be introduced dynamically (through
846 // a local or outer eval() call, or an outer 'with' statement),
847 // or we don't know about the outer scope (because we are
848 // in an eval scope).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000849 if (is_global_scope() ||
850 !(scope_inside_with_ || outer_scope_is_eval_scope_ ||
851 scope_calls_eval_ || outer_scope_calls_eval_)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000852 // We must have a global variable.
853 ASSERT(global_scope != NULL);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000854 var = global_scope->DeclareGlobal(proxy->name());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000855
856 } else if (scope_inside_with_) {
857 // If we are inside a with statement we give up and look up
858 // the variable at runtime.
859 var = NonLocal(proxy->name(), Variable::DYNAMIC);
860
861 } else if (invalidated_local != NULL) {
862 // No with statements are involved and we found a local
863 // variable that might be shadowed by eval introduced
864 // variables.
865 var = NonLocal(proxy->name(), Variable::DYNAMIC_LOCAL);
866 var->set_local_if_not_shadowed(invalidated_local);
867
868 } else if (outer_scope_is_eval_scope_) {
869 // No with statements and we did not find a local and the code
870 // is executed with a call to eval. The context contains
871 // scope information that we can use to determine if the
872 // variable is global if it is not shadowed by eval-introduced
873 // variables.
874 if (context->GlobalIfNotShadowedByEval(proxy->name())) {
875 var = NonLocal(proxy->name(), Variable::DYNAMIC_GLOBAL);
876
877 } else {
878 var = NonLocal(proxy->name(), Variable::DYNAMIC);
879 }
880
881 } else {
882 // No with statements and we did not find a local and the code
883 // is not executed with a call to eval. We know that this
884 // variable is global unless it is shadowed by eval-introduced
885 // variables.
886 var = NonLocal(proxy->name(), Variable::DYNAMIC_GLOBAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000887 }
888 }
889 }
890
891 proxy->BindTo(var);
892}
893
894
ager@chromium.org381abbb2009-02-25 13:23:22 +0000895void Scope::ResolveVariablesRecursively(Scope* global_scope,
896 Handle<Context> context) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000897 ASSERT(global_scope == NULL || global_scope->is_global_scope());
898
899 // Resolve unresolved variables for this scope.
900 for (int i = 0; i < unresolved_.length(); i++) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000901 ResolveVariable(global_scope, context, unresolved_[i]);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000902 }
903
904 // Resolve unresolved variables for inner scopes.
905 for (int i = 0; i < inner_scopes_.length(); i++) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000906 inner_scopes_[i]->ResolveVariablesRecursively(global_scope, context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000907 }
908}
909
910
ager@chromium.org381abbb2009-02-25 13:23:22 +0000911bool Scope::PropagateScopeInfo(bool outer_scope_calls_eval,
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000912 bool outer_scope_calls_non_strict_eval,
ager@chromium.org381abbb2009-02-25 13:23:22 +0000913 bool outer_scope_is_eval_scope) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000914 if (outer_scope_calls_eval) {
915 outer_scope_calls_eval_ = true;
916 }
917
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000918 if (outer_scope_calls_non_strict_eval) {
919 outer_scope_calls_non_strict_eval_ = true;
920 }
921
ager@chromium.org381abbb2009-02-25 13:23:22 +0000922 if (outer_scope_is_eval_scope) {
923 outer_scope_is_eval_scope_ = true;
924 }
925
926 bool calls_eval = scope_calls_eval_ || outer_scope_calls_eval_;
927 bool is_eval = is_eval_scope() || outer_scope_is_eval_scope_;
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000928 bool calls_non_strict_eval =
929 (scope_calls_eval_ && !is_strict_mode()) ||
930 outer_scope_calls_non_strict_eval_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000931 for (int i = 0; i < inner_scopes_.length(); i++) {
932 Scope* inner_scope = inner_scopes_[i];
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000933 if (inner_scope->PropagateScopeInfo(calls_eval,
934 calls_non_strict_eval,
935 is_eval)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000936 inner_scope_calls_eval_ = true;
937 }
938 if (inner_scope->force_eager_compilation_) {
939 force_eager_compilation_ = true;
940 }
941 }
942
943 return scope_calls_eval_ || inner_scope_calls_eval_;
944}
945
946
947bool Scope::MustAllocate(Variable* var) {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000948 // Give var a read/write use if there is a chance it might be accessed
949 // via an eval() call. This is only possible if the variable has a
950 // visible name.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000951 if ((var->is_this() || var->name()->length() > 0) &&
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000952 (var->is_accessed_from_inner_function_scope() ||
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000953 scope_calls_eval_ ||
954 inner_scope_calls_eval_ ||
955 scope_contains_with_ ||
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000956 is_catch_scope() ||
957 is_block_scope())) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000958 var->set_is_used(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000959 }
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000960 // Global variables do not need to be allocated.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000961 return !var->is_global() && var->is_used();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000962}
963
964
965bool Scope::MustAllocateInContext(Variable* var) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000966 // If var is accessed from an inner scope, or if there is a possibility
967 // that it might be accessed from the current or an inner scope (through
968 // an eval() call or a runtime with lookup), it must be allocated in the
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000969 // context.
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000970 //
971 // Exceptions: temporary variables are never allocated in a context;
972 // catch-bound variables are always allocated in a context.
973 if (var->mode() == Variable::TEMPORARY) return false;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000974 if (is_catch_scope() || is_block_scope()) return true;
975 return var->is_accessed_from_inner_function_scope() ||
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000976 scope_calls_eval_ ||
977 inner_scope_calls_eval_ ||
978 scope_contains_with_ ||
979 var->is_global();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000980}
981
982
983bool Scope::HasArgumentsParameter() {
984 for (int i = 0; i < params_.length(); i++) {
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000985 if (params_[i]->name().is_identical_to(
986 isolate_->factory()->arguments_symbol())) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000987 return true;
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000988 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000989 }
990 return false;
991}
992
993
994void Scope::AllocateStackSlot(Variable* var) {
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000995 var->set_rewrite(NewSlot(var, Slot::LOCAL, num_stack_slots_++));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000996}
997
998
999void Scope::AllocateHeapSlot(Variable* var) {
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001000 var->set_rewrite(NewSlot(var, Slot::CONTEXT, num_heap_slots_++));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001001}
1002
1003
1004void Scope::AllocateParameterLocals() {
1005 ASSERT(is_function_scope());
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +00001006 Variable* arguments = LocalLookup(isolate_->factory()->arguments_symbol());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001007 ASSERT(arguments != NULL); // functions have 'arguments' declared implicitly
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00001008
whesse@chromium.org7b260152011-06-20 15:33:18 +00001009 bool uses_nonstrict_arguments = false;
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00001010
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001011 if (MustAllocate(arguments) && !HasArgumentsParameter()) {
1012 // 'arguments' is used. Unless there is also a parameter called
whesse@chromium.org7b260152011-06-20 15:33:18 +00001013 // 'arguments', we must be conservative and allocate all parameters to
1014 // the context assuming they will be captured by the arguments object.
1015 // If we have a parameter named 'arguments', a (new) value is always
1016 // assigned to it via the function invocation. Then 'arguments' denotes
1017 // that specific parameter value and cannot be used to access the
1018 // parameters, which is why we don't need to allocate an arguments
1019 // object in that case.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001020
1021 // We are using 'arguments'. Tell the code generator that is needs to
1022 // allocate the arguments object by setting 'arguments_'.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001023 arguments_ = arguments;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001024
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00001025 // In strict mode 'arguments' does not alias formal parameters.
1026 // Therefore in strict mode we allocate parameters as if 'arguments'
1027 // were not used.
whesse@chromium.org7b260152011-06-20 15:33:18 +00001028 uses_nonstrict_arguments = !is_strict_mode();
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00001029 }
1030
whesse@chromium.org7b260152011-06-20 15:33:18 +00001031 // The same parameter may occur multiple times in the parameters_ list.
1032 // If it does, and if it is not copied into the context object, it must
1033 // receive the highest parameter index for that parameter; thus iteration
1034 // order is relevant!
1035 for (int i = params_.length() - 1; i >= 0; --i) {
1036 Variable* var = params_[i];
1037 ASSERT(var->scope() == this);
1038 if (uses_nonstrict_arguments) {
1039 // Give the parameter a use from an inner scope, to force allocation
1040 // to the context.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00001041 var->MarkAsAccessedFromInnerFunctionScope();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001042 }
1043
whesse@chromium.org7b260152011-06-20 15:33:18 +00001044 if (MustAllocate(var)) {
1045 if (MustAllocateInContext(var)) {
1046 ASSERT(var->rewrite() == NULL || var->IsContextSlot());
1047 if (var->rewrite() == NULL) {
1048 AllocateHeapSlot(var);
1049 }
1050 } else {
1051 ASSERT(var->rewrite() == NULL || var->IsParameter());
1052 if (var->rewrite() == NULL) {
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001053 var->set_rewrite(NewSlot(var, Slot::PARAMETER, i));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001054 }
1055 }
1056 }
1057 }
1058}
1059
1060
1061void Scope::AllocateNonParameterLocal(Variable* var) {
1062 ASSERT(var->scope() == this);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001063 ASSERT(var->rewrite() == NULL ||
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +00001064 !var->IsVariable(isolate_->factory()->result_symbol()) ||
whesse@chromium.org7b260152011-06-20 15:33:18 +00001065 var->AsSlot() == NULL ||
1066 var->AsSlot()->type() != Slot::LOCAL);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001067 if (var->rewrite() == NULL && MustAllocate(var)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001068 if (MustAllocateInContext(var)) {
1069 AllocateHeapSlot(var);
1070 } else {
1071 AllocateStackSlot(var);
1072 }
1073 }
1074}
1075
1076
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001077void Scope::AllocateNonParameterLocals() {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001078 // All variables that have no rewrite yet are non-parameter locals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001079 for (int i = 0; i < temps_.length(); i++) {
1080 AllocateNonParameterLocal(temps_[i]);
1081 }
1082
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001083 for (VariableMap::Entry* p = variables_.Start();
1084 p != NULL;
1085 p = variables_.Next(p)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001086 Variable* var = reinterpret_cast<Variable*>(p->value);
1087 AllocateNonParameterLocal(var);
1088 }
1089
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001090 // For now, function_ must be allocated at the very end. If it gets
1091 // allocated in the context, it must be the last slot in the context,
1092 // because of the current ScopeInfo implementation (see
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001093 // ScopeInfo::ScopeInfo(FunctionScope* scope) constructor).
1094 if (function_ != NULL) {
1095 AllocateNonParameterLocal(function_);
1096 }
1097}
1098
1099
1100void Scope::AllocateVariablesRecursively() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001101 // Allocate variables for inner scopes.
1102 for (int i = 0; i < inner_scopes_.length(); i++) {
1103 inner_scopes_[i]->AllocateVariablesRecursively();
1104 }
1105
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001106 // If scope is already resolved, we still need to allocate
1107 // variables in inner scopes which might not had been resolved yet.
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001108 if (already_resolved()) return;
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001109 // The number of slots required for variables.
1110 num_stack_slots_ = 0;
1111 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
1112
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001113 // Allocate variables for this scope.
1114 // Parameters must be allocated first, if any.
1115 if (is_function_scope()) AllocateParameterLocals();
1116 AllocateNonParameterLocals();
1117
1118 // Allocate context if necessary.
1119 bool must_have_local_context = false;
1120 if (scope_calls_eval_ || scope_contains_with_) {
1121 // The context for the eval() call or 'with' statement in this scope.
1122 // Unless we are in the global or an eval scope, we need a local
1123 // context even if we didn't statically allocate any locals in it,
1124 // and the compiler will access the context variable. If we are
1125 // not in an inner scope, the scope is provided from the outside.
1126 must_have_local_context = is_function_scope();
1127 }
1128
1129 // If we didn't allocate any locals in the local context, then we only
1130 // need the minimal number of slots if we must have a local context.
1131 if (num_heap_slots_ == Context::MIN_CONTEXT_SLOTS &&
1132 !must_have_local_context) {
1133 num_heap_slots_ = 0;
1134 }
1135
1136 // Allocation done.
1137 ASSERT(num_heap_slots_ == 0 || num_heap_slots_ >= Context::MIN_CONTEXT_SLOTS);
1138}
1139
1140} } // namespace v8::internal