blob: 61024426e3ca9b76545e25b3b5ef373733f2697a [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
kasperl@chromium.org71affb52009-05-26 05:44:31 +000037namespace v8 {
38namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000039
40// ----------------------------------------------------------------------------
41// A Zone allocator for use with LocalsMap.
42
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000043// TODO(isolates): It is probably worth it to change the Allocator class to
44// take a pointer to an isolate.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000045class ZoneAllocator: public Allocator {
46 public:
47 /* nothing to do */
48 virtual ~ZoneAllocator() {}
49
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000050 virtual void* New(size_t size) { return ZONE->New(static_cast<int>(size)); }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000051
52 /* ignored - Zone is freed in one fell swoop */
53 virtual void Delete(void* p) {}
54};
55
56
57static ZoneAllocator LocalsMapAllocator;
58
59
60// ----------------------------------------------------------------------------
61// Implementation of LocalsMap
62//
63// Note: We are storing the handle locations as key values in the hash map.
64// When inserting a new variable via Declare(), we rely on the fact that
65// the handle location remains alive for the duration of that variable
66// use. Because a Variable holding a handle with the same location exists
67// this is ensured.
68
69static bool Match(void* key1, void* key2) {
70 String* name1 = *reinterpret_cast<String**>(key1);
71 String* name2 = *reinterpret_cast<String**>(key2);
72 ASSERT(name1->IsSymbol());
73 ASSERT(name2->IsSymbol());
74 return name1 == name2;
75}
76
77
78// Dummy constructor
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000079VariableMap::VariableMap(bool gotta_love_static_overloading) : HashMap() {}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000080
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000081VariableMap::VariableMap() : HashMap(Match, &LocalsMapAllocator, 8) {}
82VariableMap::~VariableMap() {}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000083
84
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000085Variable* VariableMap::Declare(Scope* scope,
86 Handle<String> name,
87 Variable::Mode mode,
88 bool is_valid_lhs,
89 Variable::Kind kind) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000090 HashMap::Entry* p = HashMap::Lookup(name.location(), name->Hash(), true);
91 if (p->value == NULL) {
92 // The variable has not been declared yet -> insert it.
93 ASSERT(p->key == name.location());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000094 p->value = new Variable(scope, name, mode, is_valid_lhs, kind);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000095 }
96 return reinterpret_cast<Variable*>(p->value);
97}
98
99
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000100Variable* VariableMap::Lookup(Handle<String> name) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000101 HashMap::Entry* p = HashMap::Lookup(name.location(), name->Hash(), false);
102 if (p != NULL) {
103 ASSERT(*reinterpret_cast<String**>(p->key) == *name);
104 ASSERT(p->value != NULL);
105 return reinterpret_cast<Variable*>(p->value);
106 }
107 return NULL;
108}
109
110
111// ----------------------------------------------------------------------------
112// Implementation of Scope
113
114
115// Dummy constructor
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000116Scope::Scope(Type type)
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000117 : inner_scopes_(0),
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000118 variables_(false),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000119 temps_(0),
120 params_(0),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000121 unresolved_(0),
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000122 decls_(0) {
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000123 SetDefaults(type, NULL, Handle<SerializedScopeInfo>::null());
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000124 ASSERT(!resolved());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000125}
126
127
128Scope::Scope(Scope* outer_scope, Type type)
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000129 : inner_scopes_(4),
130 variables_(),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000131 temps_(4),
132 params_(4),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000133 unresolved_(16),
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000134 decls_(4) {
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000135 SetDefaults(type, outer_scope, Handle<SerializedScopeInfo>::null());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000136 // At some point we might want to provide outer scopes to
137 // eval scopes (by walking the stack and reading the scope info).
138 // In that case, the ASSERT below needs to be adjusted.
139 ASSERT((type == GLOBAL_SCOPE || type == EVAL_SCOPE) == (outer_scope == NULL));
140 ASSERT(!HasIllegalRedeclaration());
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000141 ASSERT(!resolved());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000142}
143
144
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000145Scope::Scope(Scope* inner_scope, Handle<SerializedScopeInfo> scope_info)
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000146 : inner_scopes_(4),
147 variables_(),
148 temps_(4),
149 params_(4),
150 unresolved_(16),
151 decls_(4) {
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000152 ASSERT(!scope_info.is_null());
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000153 SetDefaults(FUNCTION_SCOPE, NULL, scope_info);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000154 ASSERT(resolved());
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000155 if (scope_info->HasHeapAllocatedLocals()) {
156 num_heap_slots_ = scope_info_->NumberOfContextSlots();
157 }
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000158
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000159 AddInnerScope(inner_scope);
160
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000161 // This scope's arguments shadow (if present) is context-allocated if an inner
162 // scope accesses this one's parameters. Allocate the arguments_shadow_
163 // variable if necessary.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000164 Isolate* isolate = Isolate::Current();
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000165 Variable::Mode mode;
166 int arguments_shadow_index =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000167 scope_info_->ContextSlotIndex(
168 isolate->heap()->arguments_shadow_symbol(), &mode);
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000169 if (arguments_shadow_index >= 0) {
170 ASSERT(mode == Variable::INTERNAL);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000171 arguments_shadow_ = new Variable(
172 this,
173 isolate->factory()->arguments_shadow_symbol(),
174 Variable::INTERNAL,
175 true,
176 Variable::ARGUMENTS);
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000177 arguments_shadow_->set_rewrite(
178 new Slot(arguments_shadow_, Slot::CONTEXT, arguments_shadow_index));
179 arguments_shadow_->set_is_used(true);
180 }
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000181}
182
183
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000184void Scope::SetDefaults(Type type,
185 Scope* outer_scope,
186 Handle<SerializedScopeInfo> scope_info) {
187 outer_scope_ = outer_scope;
188 type_ = type;
189 scope_name_ = FACTORY->empty_symbol();
190 dynamics_ = NULL;
191 receiver_ = NULL;
192 function_ = NULL;
193 arguments_ = NULL;
194 arguments_shadow_ = NULL;
195 illegal_redecl_ = NULL;
196 scope_inside_with_ = false;
197 scope_contains_with_ = false;
198 scope_calls_eval_ = false;
199 // Inherit the strict mode from the parent scope.
200 strict_mode_ = (outer_scope != NULL) && outer_scope->strict_mode_;
201 outer_scope_calls_eval_ = false;
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000202 outer_scope_calls_non_strict_eval_ = false;
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000203 inner_scope_calls_eval_ = false;
204 outer_scope_is_eval_scope_ = false;
205 force_eager_compilation_ = false;
vegorov@chromium.org7304bca2011-05-16 12:14:13 +0000206 num_var_or_const_ = 0;
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000207 num_stack_slots_ = 0;
208 num_heap_slots_ = 0;
209 scope_info_ = scope_info;
210}
211
212
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000213Scope* Scope::DeserializeScopeChain(CompilationInfo* info,
214 Scope* global_scope) {
215 ASSERT(!info->closure().is_null());
216 // If we have a serialized scope info, reuse it.
217 Scope* innermost_scope = NULL;
218 Scope* scope = NULL;
219
220 SerializedScopeInfo* scope_info = info->closure()->shared()->scope_info();
221 if (scope_info != SerializedScopeInfo::Empty()) {
222 JSFunction* current = *info->closure();
223 do {
224 current = current->context()->closure();
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000225 Handle<SerializedScopeInfo> scope_info(current->shared()->scope_info());
226 if (*scope_info != SerializedScopeInfo::Empty()) {
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000227 scope = new Scope(scope, scope_info);
228 if (innermost_scope == NULL) innermost_scope = scope;
229 } else {
230 ASSERT(current->context()->IsGlobalContext());
231 }
232 } while (!current->context()->IsGlobalContext());
233 }
234
235 global_scope->AddInnerScope(scope);
236 if (innermost_scope == NULL) innermost_scope = global_scope;
237
238 return innermost_scope;
239}
240
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000241
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000242bool Scope::Analyze(CompilationInfo* info) {
243 ASSERT(info->function() != NULL);
244 Scope* top = info->function()->scope();
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000245
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000246 while (top->outer_scope() != NULL) top = top->outer_scope();
247 top->AllocateVariables(info->calling_context());
248
249#ifdef DEBUG
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000250 if (info->isolate()->bootstrapper()->IsActive()
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000251 ? FLAG_print_builtin_scopes
252 : FLAG_print_scopes) {
253 info->function()->scope()->Print();
254 }
255#endif
256
257 info->SetScope(info->function()->scope());
258 return true; // Can not fail.
259}
260
261
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000262void Scope::Initialize(bool inside_with) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000263 ASSERT(!resolved());
264
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000265 // Add this scope as a new inner scope of the outer scope.
266 if (outer_scope_ != NULL) {
267 outer_scope_->inner_scopes_.Add(this);
268 scope_inside_with_ = outer_scope_->scope_inside_with_ || inside_with;
269 } else {
270 scope_inside_with_ = inside_with;
271 }
272
273 // Declare convenience variables.
274 // Declare and allocate receiver (even for the global scope, and even
275 // if naccesses_ == 0).
276 // NOTE: When loading parameters in the global scope, we must take
277 // care not to access them as properties of the global object, but
278 // instead load them directly from the stack. Currently, the only
279 // such parameter is 'this' which is passed on the stack when
280 // invoking scripts
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000281 Variable* var =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000282 variables_.Declare(this, FACTORY->this_symbol(), Variable::VAR,
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000283 false, Variable::THIS);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000284 var->set_rewrite(new Slot(var, Slot::PARAMETER, -1));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000285 receiver_ = var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000286
287 if (is_function_scope()) {
288 // Declare 'arguments' variable which exists in all functions.
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000289 // Note that it might never be accessed, in which case it won't be
290 // allocated during variable allocation.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000291 variables_.Declare(this, FACTORY->arguments_symbol(), Variable::VAR,
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000292 true, Variable::ARGUMENTS);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000293 }
294}
295
296
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000297Variable* Scope::LocalLookup(Handle<String> name) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000298 Variable* result = variables_.Lookup(name);
299 if (result != NULL || !resolved()) {
300 return result;
301 }
302 // If the scope is resolved, we can find a variable in serialized scope info.
303
304 // We should never lookup 'arguments' in this scope
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000305 // as it is implicitly present in any scope.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000306 ASSERT(*name != *FACTORY->arguments_symbol());
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000307
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000308 // Assert that there is no local slot with the given name.
309 ASSERT(scope_info_->StackSlotIndex(*name) < 0);
310
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000311 // Check context slot lookup.
312 Variable::Mode mode;
313 int index = scope_info_->ContextSlotIndex(*name, &mode);
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000314 if (index >= 0) {
315 Variable* var =
316 variables_.Declare(this, name, mode, true, Variable::NORMAL);
317 var->set_rewrite(new Slot(var, Slot::CONTEXT, index));
318 return var;
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000319 }
320
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000321 index = scope_info_->ParameterIndex(*name);
322 if (index >= 0) {
323 // ".arguments" must be present in context slots.
324 ASSERT(arguments_shadow_ != NULL);
325 Variable* var =
326 variables_.Declare(this, name, Variable::VAR, true, Variable::NORMAL);
327 Property* rewrite =
328 new Property(new VariableProxy(arguments_shadow_),
329 new Literal(Handle<Object>(Smi::FromInt(index))),
330 RelocInfo::kNoPosition,
331 Property::SYNTHETIC);
332 rewrite->set_is_arguments_access(true);
333 var->set_rewrite(rewrite);
334 return var;
335 }
336
337 index = scope_info_->FunctionContextSlotIndex(*name);
338 if (index >= 0) {
339 // Check that there is no local slot with the given name.
340 ASSERT(scope_info_->StackSlotIndex(*name) < 0);
341 Variable* var =
342 variables_.Declare(this, name, Variable::VAR, true, Variable::NORMAL);
343 var->set_rewrite(new Slot(var, Slot::CONTEXT, index));
344 return var;
345 }
346
347 return NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000348}
349
350
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000351Variable* Scope::Lookup(Handle<String> name) {
352 for (Scope* scope = this;
353 scope != NULL;
354 scope = scope->outer_scope()) {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000355 Variable* var = scope->LocalLookup(name);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000356 if (var != NULL) return var;
357 }
358 return NULL;
359}
360
361
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000362Variable* Scope::DeclareFunctionVar(Handle<String> name) {
363 ASSERT(is_function_scope() && function_ == NULL);
ager@chromium.org3e875802009-06-29 08:26:34 +0000364 function_ = new Variable(this, name, Variable::CONST, true, Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000365 return function_;
366}
367
368
vegorov@chromium.org7304bca2011-05-16 12:14:13 +0000369Variable* Scope::DeclareLocal(Handle<String> name,
370 Variable::Mode mode,
371 LocalType type) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000372 // DYNAMIC variables are introduces during variable allocation,
373 // INTERNAL variables are allocated explicitly, and TEMPORARY
374 // variables are allocated via NewTemporary().
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000375 ASSERT(!resolved());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000376 ASSERT(mode == Variable::VAR || mode == Variable::CONST);
vegorov@chromium.org7304bca2011-05-16 12:14:13 +0000377 if (type == VAR_OR_CONST) {
378 num_var_or_const_++;
379 }
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000380 return variables_.Declare(this, name, mode, true, Variable::NORMAL);
381}
382
383
384Variable* Scope::DeclareGlobal(Handle<String> name) {
385 ASSERT(is_global_scope());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000386 return variables_.Declare(this, name, Variable::DYNAMIC_GLOBAL, true,
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000387 Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000388}
389
390
391void Scope::AddParameter(Variable* var) {
392 ASSERT(is_function_scope());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000393 ASSERT(LocalLookup(var->name()) == var);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000394 params_.Add(var);
395}
396
397
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000398VariableProxy* Scope::NewUnresolved(Handle<String> name,
399 bool inside_with,
400 int position) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000401 // Note that we must not share the unresolved variables with
402 // the same name because they may be removed selectively via
403 // RemoveUnresolved().
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000404 ASSERT(!resolved());
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000405 VariableProxy* proxy = new VariableProxy(name, false, inside_with, position);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000406 unresolved_.Add(proxy);
407 return proxy;
408}
409
410
411void Scope::RemoveUnresolved(VariableProxy* var) {
412 // Most likely (always?) any variable we want to remove
413 // was just added before, so we search backwards.
414 for (int i = unresolved_.length(); i-- > 0;) {
415 if (unresolved_[i] == var) {
416 unresolved_.Remove(i);
417 return;
418 }
419 }
420}
421
422
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000423Variable* Scope::NewTemporary(Handle<String> name) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000424 ASSERT(!resolved());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000425 Variable* var =
426 new Variable(this, name, Variable::TEMPORARY, true, Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000427 temps_.Add(var);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000428 return var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000429}
430
431
432void Scope::AddDeclaration(Declaration* declaration) {
433 decls_.Add(declaration);
434}
435
436
437void Scope::SetIllegalRedeclaration(Expression* expression) {
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000438 // Record only the first illegal redeclaration.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000439 if (!HasIllegalRedeclaration()) {
440 illegal_redecl_ = expression;
441 }
442 ASSERT(HasIllegalRedeclaration());
443}
444
445
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000446void Scope::VisitIllegalRedeclaration(AstVisitor* visitor) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000447 ASSERT(HasIllegalRedeclaration());
448 illegal_redecl_->Accept(visitor);
449}
450
451
452template<class Allocator>
453void Scope::CollectUsedVariables(List<Variable*, Allocator>* locals) {
454 // Collect variables in this scope.
455 // Note that the function_ variable - if present - is not
456 // collected here but handled separately in ScopeInfo
457 // which is the current user of this function).
458 for (int i = 0; i < temps_.length(); i++) {
459 Variable* var = temps_[i];
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000460 if (var->is_used()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000461 locals->Add(var);
462 }
463 }
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000464 for (VariableMap::Entry* p = variables_.Start();
465 p != NULL;
466 p = variables_.Next(p)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000467 Variable* var = reinterpret_cast<Variable*>(p->value);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000468 if (var->is_used()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000469 locals->Add(var);
470 }
471 }
472}
473
474
475// Make sure the method gets instantiated by the template system.
476template void Scope::CollectUsedVariables(
477 List<Variable*, FreeStoreAllocationPolicy>* locals);
478template void Scope::CollectUsedVariables(
479 List<Variable*, PreallocatedStorage>* locals);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000480template void Scope::CollectUsedVariables(
481 List<Variable*, ZoneListAllocationPolicy>* locals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000482
483
ager@chromium.org381abbb2009-02-25 13:23:22 +0000484void Scope::AllocateVariables(Handle<Context> context) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000485 ASSERT(outer_scope_ == NULL); // eval or global scopes only
486
487 // 1) Propagate scope information.
488 // If we are in an eval scope, we may have other outer scopes about
489 // which we don't know anything at this point. Thus we must be conservative
490 // and assume they may invoke eval themselves. Eventually we could capture
491 // this information in the ScopeInfo and then use it here (by traversing
492 // the call chain stack, at compile time).
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000493
ager@chromium.org381abbb2009-02-25 13:23:22 +0000494 bool eval_scope = is_eval_scope();
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000495 bool outer_scope_calls_eval = false;
496 bool outer_scope_calls_non_strict_eval = false;
497 if (!is_global_scope()) {
498 context->ComputeEvalScopeInfo(&outer_scope_calls_eval,
499 &outer_scope_calls_non_strict_eval);
500 }
501 PropagateScopeInfo(outer_scope_calls_eval,
502 outer_scope_calls_non_strict_eval,
503 eval_scope);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000504
505 // 2) Resolve variables.
506 Scope* global_scope = NULL;
507 if (is_global_scope()) global_scope = this;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000508 ResolveVariablesRecursively(global_scope, context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000509
510 // 3) Allocate variables.
511 AllocateVariablesRecursively();
512}
513
514
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000515bool Scope::AllowsLazyCompilation() const {
516 return !force_eager_compilation_ && HasTrivialOuterContext();
517}
518
519
520bool Scope::HasTrivialContext() const {
521 // A function scope has a trivial context if it always is the global
522 // context. We iteratively scan out the context chain to see if
523 // there is anything that makes this scope non-trivial; otherwise we
524 // return true.
525 for (const Scope* scope = this; scope != NULL; scope = scope->outer_scope_) {
526 if (scope->is_eval_scope()) return false;
527 if (scope->scope_inside_with_) return false;
528 if (scope->num_heap_slots_ > 0) return false;
529 }
530 return true;
531}
532
533
534bool Scope::HasTrivialOuterContext() const {
535 Scope* outer = outer_scope_;
536 if (outer == NULL) return true;
537 // Note that the outer context may be trivial in general, but the current
538 // scope may be inside a 'with' statement in which case the outer context
539 // for this scope is not trivial.
540 return !scope_inside_with_ && outer->HasTrivialContext();
541}
542
543
544int Scope::ContextChainLength(Scope* scope) {
545 int n = 0;
546 for (Scope* s = this; s != scope; s = s->outer_scope_) {
547 ASSERT(s != NULL); // scope must be in the scope chain
548 if (s->num_heap_slots() > 0) n++;
549 }
550 return n;
551}
552
553
554#ifdef DEBUG
555static const char* Header(Scope::Type type) {
556 switch (type) {
557 case Scope::EVAL_SCOPE: return "eval";
558 case Scope::FUNCTION_SCOPE: return "function";
559 case Scope::GLOBAL_SCOPE: return "global";
560 }
561 UNREACHABLE();
562 return NULL;
563}
564
565
566static void Indent(int n, const char* str) {
567 PrintF("%*s%s", n, "", str);
568}
569
570
571static void PrintName(Handle<String> name) {
572 SmartPointer<char> s = name->ToCString(DISALLOW_NULLS);
573 PrintF("%s", *s);
574}
575
576
577static void PrintVar(PrettyPrinter* printer, int indent, Variable* var) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000578 if (var->is_used() || var->rewrite() != NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000579 Indent(indent, Variable::Mode2String(var->mode()));
580 PrintF(" ");
581 PrintName(var->name());
582 PrintF("; // ");
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000583 if (var->rewrite() != NULL) {
584 PrintF("%s, ", printer->Print(var->rewrite()));
585 if (var->is_accessed_from_inner_scope()) PrintF(", ");
586 }
587 if (var->is_accessed_from_inner_scope()) PrintF("inner scope access");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000588 PrintF("\n");
589 }
590}
591
592
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000593static void PrintMap(PrettyPrinter* printer, int indent, VariableMap* map) {
594 for (VariableMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000595 Variable* var = reinterpret_cast<Variable*>(p->value);
596 PrintVar(printer, indent, var);
597 }
598}
599
600
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000601void Scope::Print(int n) {
602 int n0 = (n > 0 ? n : 0);
603 int n1 = n0 + 2; // indentation
604
605 // Print header.
606 Indent(n0, Header(type_));
607 if (scope_name_->length() > 0) {
608 PrintF(" ");
609 PrintName(scope_name_);
610 }
611
612 // Print parameters, if any.
613 if (is_function_scope()) {
614 PrintF(" (");
615 for (int i = 0; i < params_.length(); i++) {
616 if (i > 0) PrintF(", ");
617 PrintName(params_[i]->name());
618 }
619 PrintF(")");
620 }
621
622 PrintF(" {\n");
623
624 // Function name, if any (named function literals, only).
625 if (function_ != NULL) {
626 Indent(n1, "// (local) function name: ");
627 PrintName(function_->name());
628 PrintF("\n");
629 }
630
631 // Scope info.
632 if (HasTrivialOuterContext()) {
633 Indent(n1, "// scope has trivial outer context\n");
634 }
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000635 if (is_strict_mode()) Indent(n1, "// strict mode scope\n");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000636 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
637 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
638 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
639 if (outer_scope_calls_eval_) Indent(n1, "// outer scope calls 'eval'\n");
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000640 if (outer_scope_calls_non_strict_eval_) {
641 Indent(n1, "// outer scope calls 'eval' in non-strict context\n");
642 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000643 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
ager@chromium.org381abbb2009-02-25 13:23:22 +0000644 if (outer_scope_is_eval_scope_) {
645 Indent(n1, "// outer scope is 'eval' scope\n");
646 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000647 if (num_stack_slots_ > 0) { Indent(n1, "// ");
648 PrintF("%d stack slots\n", num_stack_slots_); }
649 if (num_heap_slots_ > 0) { Indent(n1, "// ");
650 PrintF("%d heap slots\n", num_heap_slots_); }
651
652 // Print locals.
653 PrettyPrinter printer;
654 Indent(n1, "// function var\n");
655 if (function_ != NULL) {
656 PrintVar(&printer, n1, function_);
657 }
658
659 Indent(n1, "// temporary vars\n");
660 for (int i = 0; i < temps_.length(); i++) {
661 PrintVar(&printer, n1, temps_[i]);
662 }
663
664 Indent(n1, "// local vars\n");
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000665 PrintMap(&printer, n1, &variables_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000666
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000667 Indent(n1, "// dynamic vars\n");
668 if (dynamics_ != NULL) {
669 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC));
670 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_LOCAL));
671 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_GLOBAL));
672 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000673
674 // Print inner scopes (disable by providing negative n).
675 if (n >= 0) {
676 for (int i = 0; i < inner_scopes_.length(); i++) {
677 PrintF("\n");
678 inner_scopes_[i]->Print(n1);
679 }
680 }
681
682 Indent(n0, "}\n");
683}
684#endif // DEBUG
685
686
ager@chromium.org381abbb2009-02-25 13:23:22 +0000687Variable* Scope::NonLocal(Handle<String> name, Variable::Mode mode) {
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000688 if (dynamics_ == NULL) dynamics_ = new DynamicScopePart();
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000689 VariableMap* map = dynamics_->GetMap(mode);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000690 Variable* var = map->Lookup(name);
691 if (var == NULL) {
692 // Declare a new non-local.
ager@chromium.org3e875802009-06-29 08:26:34 +0000693 var = map->Declare(NULL, name, mode, true, Variable::NORMAL);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000694 // Allocate it by giving it a dynamic lookup.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000695 var->set_rewrite(new Slot(var, Slot::LOOKUP, -1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000696 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000697 return var;
698}
699
700
701// Lookup a variable starting with this scope. The result is either
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000702// the statically resolved variable belonging to an outer scope, or
703// NULL. It may be NULL because a) we couldn't find a variable, or b)
704// because the variable is just a guess (and may be shadowed by
705// another variable that is introduced dynamically via an 'eval' call
706// or a 'with' statement).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000707Variable* Scope::LookupRecursive(Handle<String> name,
708 bool inner_lookup,
709 Variable** invalidated_local) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000710 // If we find a variable, but the current scope calls 'eval', the found
711 // variable may not be the correct one (the 'eval' may introduce a
712 // property with the same name). In that case, remember that the variable
713 // found is just a guess.
714 bool guess = scope_calls_eval_;
715
716 // Try to find the variable in this scope.
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000717 Variable* var = LocalLookup(name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000718
719 if (var != NULL) {
720 // We found a variable. If this is not an inner lookup, we are done.
721 // (Even if there is an 'eval' in this scope which introduces the
722 // same variable again, the resulting variable remains the same.
723 // Note that enclosing 'with' statements are handled at the call site.)
724 if (!inner_lookup)
725 return var;
726
727 } else {
728 // We did not find a variable locally. Check against the function variable,
729 // if any. We can do this for all scopes, since the function variable is
730 // only present - if at all - for function scopes.
731 //
732 // This lookup corresponds to a lookup in the "intermediate" scope sitting
733 // between this scope and the outer scope. (ECMA-262, 3rd., requires that
734 // the name of named function literal is kept in an intermediate scope
ager@chromium.org32912102009-01-16 10:38:43 +0000735 // in between this scope and the next outer scope.)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000736 if (function_ != NULL && function_->name().is_identical_to(name)) {
737 var = function_;
738
739 } else if (outer_scope_ != NULL) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000740 var = outer_scope_->LookupRecursive(name, true, invalidated_local);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000741 // We may have found a variable in an outer scope. However, if
742 // the current scope is inside a 'with', the actual variable may
743 // be a property introduced via the 'with' statement. Then, the
744 // variable we may have found is just a guess.
745 if (scope_inside_with_)
746 guess = true;
747 }
748
749 // If we did not find a variable, we are done.
750 if (var == NULL)
751 return NULL;
752 }
753
754 ASSERT(var != NULL);
755
756 // If this is a lookup from an inner scope, mark the variable.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000757 if (inner_lookup) {
758 var->MarkAsAccessedFromInnerScope();
759 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000760
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000761 // If the variable we have found is just a guess, invalidate the
762 // result. If the found variable is local, record that fact so we
763 // can generate fast code to get it if it is not shadowed by eval.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000764 if (guess) {
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000765 if (!var->is_global()) *invalidated_local = var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000766 var = NULL;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000767 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000768
769 return var;
770}
771
772
ager@chromium.org381abbb2009-02-25 13:23:22 +0000773void Scope::ResolveVariable(Scope* global_scope,
774 Handle<Context> context,
775 VariableProxy* proxy) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000776 ASSERT(global_scope == NULL || global_scope->is_global_scope());
777
778 // If the proxy is already resolved there's nothing to do
779 // (functions and consts may be resolved by the parser).
780 if (proxy->var() != NULL) return;
781
782 // Otherwise, try to resolve the variable.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000783 Variable* invalidated_local = NULL;
784 Variable* var = LookupRecursive(proxy->name(), false, &invalidated_local);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000785
786 if (proxy->inside_with()) {
787 // If we are inside a local 'with' statement, all bets are off
788 // and we cannot resolve the proxy to a local variable even if
789 // we found an outer matching variable.
790 // Note that we must do a lookup anyway, because if we find one,
791 // we must mark that variable as potentially accessed from this
792 // inner scope (the property may not be in the 'with' object).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000793 var = NonLocal(proxy->name(), Variable::DYNAMIC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000794
795 } else {
796 // We are not inside a local 'with' statement.
797
798 if (var == NULL) {
799 // We did not find the variable. We have a global variable
800 // if we are in the global scope (we know already that we
801 // are outside a 'with' statement) or if there is no way
802 // that the variable might be introduced dynamically (through
803 // a local or outer eval() call, or an outer 'with' statement),
804 // or we don't know about the outer scope (because we are
805 // in an eval scope).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000806 if (is_global_scope() ||
807 !(scope_inside_with_ || outer_scope_is_eval_scope_ ||
808 scope_calls_eval_ || outer_scope_calls_eval_)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000809 // We must have a global variable.
810 ASSERT(global_scope != NULL);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000811 var = global_scope->DeclareGlobal(proxy->name());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000812
813 } else if (scope_inside_with_) {
814 // If we are inside a with statement we give up and look up
815 // the variable at runtime.
816 var = NonLocal(proxy->name(), Variable::DYNAMIC);
817
818 } else if (invalidated_local != NULL) {
819 // No with statements are involved and we found a local
820 // variable that might be shadowed by eval introduced
821 // variables.
822 var = NonLocal(proxy->name(), Variable::DYNAMIC_LOCAL);
823 var->set_local_if_not_shadowed(invalidated_local);
824
825 } else if (outer_scope_is_eval_scope_) {
826 // No with statements and we did not find a local and the code
827 // is executed with a call to eval. The context contains
828 // scope information that we can use to determine if the
829 // variable is global if it is not shadowed by eval-introduced
830 // variables.
831 if (context->GlobalIfNotShadowedByEval(proxy->name())) {
832 var = NonLocal(proxy->name(), Variable::DYNAMIC_GLOBAL);
833
834 } else {
835 var = NonLocal(proxy->name(), Variable::DYNAMIC);
836 }
837
838 } else {
839 // No with statements and we did not find a local and the code
840 // is not executed with a call to eval. We know that this
841 // variable is global unless it is shadowed by eval-introduced
842 // variables.
843 var = NonLocal(proxy->name(), Variable::DYNAMIC_GLOBAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000844 }
845 }
846 }
847
848 proxy->BindTo(var);
849}
850
851
ager@chromium.org381abbb2009-02-25 13:23:22 +0000852void Scope::ResolveVariablesRecursively(Scope* global_scope,
853 Handle<Context> context) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000854 ASSERT(global_scope == NULL || global_scope->is_global_scope());
855
856 // Resolve unresolved variables for this scope.
857 for (int i = 0; i < unresolved_.length(); i++) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000858 ResolveVariable(global_scope, context, unresolved_[i]);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000859 }
860
861 // Resolve unresolved variables for inner scopes.
862 for (int i = 0; i < inner_scopes_.length(); i++) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000863 inner_scopes_[i]->ResolveVariablesRecursively(global_scope, context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000864 }
865}
866
867
ager@chromium.org381abbb2009-02-25 13:23:22 +0000868bool Scope::PropagateScopeInfo(bool outer_scope_calls_eval,
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000869 bool outer_scope_calls_non_strict_eval,
ager@chromium.org381abbb2009-02-25 13:23:22 +0000870 bool outer_scope_is_eval_scope) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000871 if (outer_scope_calls_eval) {
872 outer_scope_calls_eval_ = true;
873 }
874
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000875 if (outer_scope_calls_non_strict_eval) {
876 outer_scope_calls_non_strict_eval_ = true;
877 }
878
ager@chromium.org381abbb2009-02-25 13:23:22 +0000879 if (outer_scope_is_eval_scope) {
880 outer_scope_is_eval_scope_ = true;
881 }
882
883 bool calls_eval = scope_calls_eval_ || outer_scope_calls_eval_;
884 bool is_eval = is_eval_scope() || outer_scope_is_eval_scope_;
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000885 bool calls_non_strict_eval =
886 (scope_calls_eval_ && !is_strict_mode()) ||
887 outer_scope_calls_non_strict_eval_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000888 for (int i = 0; i < inner_scopes_.length(); i++) {
889 Scope* inner_scope = inner_scopes_[i];
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000890 if (inner_scope->PropagateScopeInfo(calls_eval,
891 calls_non_strict_eval,
892 is_eval)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000893 inner_scope_calls_eval_ = true;
894 }
895 if (inner_scope->force_eager_compilation_) {
896 force_eager_compilation_ = true;
897 }
898 }
899
900 return scope_calls_eval_ || inner_scope_calls_eval_;
901}
902
903
904bool Scope::MustAllocate(Variable* var) {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000905 // Give var a read/write use if there is a chance it might be accessed
906 // via an eval() call. This is only possible if the variable has a
907 // visible name.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000908 if ((var->is_this() || var->name()->length() > 0) &&
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000909 (var->is_accessed_from_inner_scope() ||
ager@chromium.org0ee099b2011-01-25 14:06:47 +0000910 scope_calls_eval_ || inner_scope_calls_eval_ ||
911 scope_contains_with_)) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000912 var->set_is_used(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000913 }
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000914 // Global variables do not need to be allocated.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000915 return !var->is_global() && var->is_used();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000916}
917
918
919bool Scope::MustAllocateInContext(Variable* var) {
920 // If var is accessed from an inner scope, or if there is a
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000921 // possibility that it might be accessed from the current or an inner
922 // scope (through an eval() call), it must be allocated in the
923 // context. Exception: temporary variables are not allocated in the
924 // context.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000925 return
926 var->mode() != Variable::TEMPORARY &&
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000927 (var->is_accessed_from_inner_scope() ||
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000928 scope_calls_eval_ || inner_scope_calls_eval_ ||
929 scope_contains_with_ || var->is_global());
930}
931
932
933bool Scope::HasArgumentsParameter() {
934 for (int i = 0; i < params_.length(); i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000935 if (params_[i]->name().is_identical_to(FACTORY->arguments_symbol()))
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000936 return true;
937 }
938 return false;
939}
940
941
942void Scope::AllocateStackSlot(Variable* var) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000943 var->set_rewrite(new Slot(var, Slot::LOCAL, num_stack_slots_++));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000944}
945
946
947void Scope::AllocateHeapSlot(Variable* var) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000948 var->set_rewrite(new Slot(var, Slot::CONTEXT, num_heap_slots_++));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000949}
950
951
952void Scope::AllocateParameterLocals() {
953 ASSERT(is_function_scope());
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000954 Variable* arguments = LocalLookup(FACTORY->arguments_symbol());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000955 ASSERT(arguments != NULL); // functions have 'arguments' declared implicitly
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000956
957 // Parameters are rewritten to arguments[i] if 'arguments' is used in
958 // a non-strict mode function. Strict mode code doesn't alias arguments.
959 bool rewrite_parameters = false;
960
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000961 if (MustAllocate(arguments) && !HasArgumentsParameter()) {
962 // 'arguments' is used. Unless there is also a parameter called
963 // 'arguments', we must be conservative and access all parameters via
964 // the arguments object: The i'th parameter is rewritten into
965 // '.arguments[i]' (*). If we have a parameter named 'arguments', a
966 // (new) value is always assigned to it via the function
967 // invocation. Then 'arguments' denotes that specific parameter value
968 // and cannot be used to access the parameters, which is why we don't
969 // need to rewrite in that case.
970 //
971 // (*) Instead of having a parameter called 'arguments', we may have an
972 // assignment to 'arguments' in the function body, at some arbitrary
973 // point in time (possibly through an 'eval()' call!). After that
974 // assignment any re-write of parameters would be invalid (was bug
975 // 881452). Thus, we introduce a shadow '.arguments'
976 // variable which also points to the arguments object. For rewrites we
977 // use '.arguments' which remains valid even if we assign to
978 // 'arguments'. To summarize: If we need to rewrite, we allocate an
979 // 'arguments' object dynamically upon function invocation. The compiler
980 // introduces 2 local variables 'arguments' and '.arguments', both of
981 // which originally point to the arguments object that was
982 // allocated. All parameters are rewritten into property accesses via
983 // the '.arguments' variable. Thus, any changes to properties of
984 // 'arguments' are reflected in the variables and vice versa. If the
985 // 'arguments' variable is changed, '.arguments' still points to the
986 // correct arguments object and the rewrites still work.
987
988 // We are using 'arguments'. Tell the code generator that is needs to
989 // allocate the arguments object by setting 'arguments_'.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000990 arguments_ = arguments;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000991
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000992 // In strict mode 'arguments' does not alias formal parameters.
993 // Therefore in strict mode we allocate parameters as if 'arguments'
994 // were not used.
995 rewrite_parameters = !is_strict_mode();
996 }
997
998 if (rewrite_parameters) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000999 // We also need the '.arguments' shadow variable. Declare it and create
1000 // and bind the corresponding proxy. It's ok to declare it only now
1001 // because it's a local variable that is allocated after the parameters
1002 // have been allocated.
1003 //
1004 // Note: This is "almost" at temporary variable but we cannot use
1005 // NewTemporary() because the mode needs to be INTERNAL since this
1006 // variable may be allocated in the heap-allocated context (temporaries
1007 // are never allocated in the context).
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001008 arguments_shadow_ = new Variable(this,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001009 FACTORY->arguments_shadow_symbol(),
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001010 Variable::INTERNAL,
1011 true,
1012 Variable::ARGUMENTS);
1013 arguments_shadow_->set_is_used(true);
1014 temps_.Add(arguments_shadow_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001015
1016 // Allocate the parameters by rewriting them into '.arguments[i]' accesses.
1017 for (int i = 0; i < params_.length(); i++) {
1018 Variable* var = params_[i];
1019 ASSERT(var->scope() == this);
1020 if (MustAllocate(var)) {
1021 if (MustAllocateInContext(var)) {
1022 // It is ok to set this only now, because arguments is a local
1023 // variable that is allocated after the parameters have been
1024 // allocated.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001025 arguments_shadow_->MarkAsAccessedFromInnerScope();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001026 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001027 Property* rewrite =
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001028 new Property(new VariableProxy(arguments_shadow_),
1029 new Literal(Handle<Object>(Smi::FromInt(i))),
1030 RelocInfo::kNoPosition,
1031 Property::SYNTHETIC);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001032 rewrite->set_is_arguments_access(true);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001033 var->set_rewrite(rewrite);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001034 }
1035 }
1036
1037 } else {
1038 // The arguments object is not used, so we can access parameters directly.
1039 // The same parameter may occur multiple times in the parameters_ list.
1040 // If it does, and if it is not copied into the context object, it must
1041 // receive the highest parameter index for that parameter; thus iteration
1042 // order is relevant!
1043 for (int i = 0; i < params_.length(); i++) {
1044 Variable* var = params_[i];
1045 ASSERT(var->scope() == this);
1046 if (MustAllocate(var)) {
1047 if (MustAllocateInContext(var)) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001048 ASSERT(var->rewrite() == NULL ||
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001049 (var->AsSlot() != NULL &&
1050 var->AsSlot()->type() == Slot::CONTEXT));
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001051 if (var->rewrite() == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001052 // Only set the heap allocation if the parameter has not
1053 // been allocated yet.
1054 AllocateHeapSlot(var);
1055 }
1056 } else {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001057 ASSERT(var->rewrite() == NULL ||
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001058 (var->AsSlot() != NULL &&
1059 var->AsSlot()->type() == Slot::PARAMETER));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001060 // Set the parameter index always, even if the parameter
1061 // was seen before! (We need to access the actual parameter
1062 // supplied for the last occurrence of a multiply declared
1063 // parameter.)
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001064 var->set_rewrite(new Slot(var, Slot::PARAMETER, i));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001065 }
1066 }
1067 }
1068 }
1069}
1070
1071
1072void Scope::AllocateNonParameterLocal(Variable* var) {
1073 ASSERT(var->scope() == this);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001074 ASSERT(var->rewrite() == NULL ||
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001075 (!var->IsVariable(FACTORY->result_symbol())) ||
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001076 (var->AsSlot() == NULL || var->AsSlot()->type() != Slot::LOCAL));
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001077 if (var->rewrite() == NULL && MustAllocate(var)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001078 if (MustAllocateInContext(var)) {
1079 AllocateHeapSlot(var);
1080 } else {
1081 AllocateStackSlot(var);
1082 }
1083 }
1084}
1085
1086
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001087void Scope::AllocateNonParameterLocals() {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001088 // All variables that have no rewrite yet are non-parameter locals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001089 for (int i = 0; i < temps_.length(); i++) {
1090 AllocateNonParameterLocal(temps_[i]);
1091 }
1092
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001093 for (VariableMap::Entry* p = variables_.Start();
1094 p != NULL;
1095 p = variables_.Next(p)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001096 Variable* var = reinterpret_cast<Variable*>(p->value);
1097 AllocateNonParameterLocal(var);
1098 }
1099
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001100 // For now, function_ must be allocated at the very end. If it gets
1101 // allocated in the context, it must be the last slot in the context,
1102 // because of the current ScopeInfo implementation (see
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001103 // ScopeInfo::ScopeInfo(FunctionScope* scope) constructor).
1104 if (function_ != NULL) {
1105 AllocateNonParameterLocal(function_);
1106 }
1107}
1108
1109
1110void Scope::AllocateVariablesRecursively() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001111 // Allocate variables for inner scopes.
1112 for (int i = 0; i < inner_scopes_.length(); i++) {
1113 inner_scopes_[i]->AllocateVariablesRecursively();
1114 }
1115
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001116 // If scope is already resolved, we still need to allocate
1117 // variables in inner scopes which might not had been resolved yet.
1118 if (resolved()) return;
1119 // The number of slots required for variables.
1120 num_stack_slots_ = 0;
1121 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
1122
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001123 // Allocate variables for this scope.
1124 // Parameters must be allocated first, if any.
1125 if (is_function_scope()) AllocateParameterLocals();
1126 AllocateNonParameterLocals();
1127
1128 // Allocate context if necessary.
1129 bool must_have_local_context = false;
1130 if (scope_calls_eval_ || scope_contains_with_) {
1131 // The context for the eval() call or 'with' statement in this scope.
1132 // Unless we are in the global or an eval scope, we need a local
1133 // context even if we didn't statically allocate any locals in it,
1134 // and the compiler will access the context variable. If we are
1135 // not in an inner scope, the scope is provided from the outside.
1136 must_have_local_context = is_function_scope();
1137 }
1138
1139 // If we didn't allocate any locals in the local context, then we only
1140 // need the minimal number of slots if we must have a local context.
1141 if (num_heap_slots_ == Context::MIN_CONTEXT_SLOTS &&
1142 !must_have_local_context) {
1143 num_heap_slots_ = 0;
1144 }
1145
1146 // Allocation done.
1147 ASSERT(num_heap_slots_ == 0 || num_heap_slots_ >= Context::MIN_CONTEXT_SLOTS);
1148}
1149
1150} } // namespace v8::internal