blob: 7d9bce5c40da0d442d5084ebe4ee7a0b6dfa5e27 [file] [log] [blame]
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001// Copyright 2010 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;
202 inner_scope_calls_eval_ = false;
203 outer_scope_is_eval_scope_ = false;
204 force_eager_compilation_ = false;
205 num_stack_slots_ = 0;
206 num_heap_slots_ = 0;
207 scope_info_ = scope_info;
208}
209
210
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000211Scope* Scope::DeserializeScopeChain(CompilationInfo* info,
212 Scope* global_scope) {
213 ASSERT(!info->closure().is_null());
214 // If we have a serialized scope info, reuse it.
215 Scope* innermost_scope = NULL;
216 Scope* scope = NULL;
217
218 SerializedScopeInfo* scope_info = info->closure()->shared()->scope_info();
219 if (scope_info != SerializedScopeInfo::Empty()) {
220 JSFunction* current = *info->closure();
221 do {
222 current = current->context()->closure();
sgjesse@chromium.org34755092011-04-07 08:41:03 +0000223 Handle<SerializedScopeInfo> scope_info(current->shared()->scope_info());
224 if (*scope_info != SerializedScopeInfo::Empty()) {
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000225 scope = new Scope(scope, scope_info);
226 if (innermost_scope == NULL) innermost_scope = scope;
227 } else {
228 ASSERT(current->context()->IsGlobalContext());
229 }
230 } while (!current->context()->IsGlobalContext());
231 }
232
233 global_scope->AddInnerScope(scope);
234 if (innermost_scope == NULL) innermost_scope = global_scope;
235
236 return innermost_scope;
237}
238
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000239
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000240bool Scope::Analyze(CompilationInfo* info) {
241 ASSERT(info->function() != NULL);
242 Scope* top = info->function()->scope();
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000243
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000244 while (top->outer_scope() != NULL) top = top->outer_scope();
245 top->AllocateVariables(info->calling_context());
246
247#ifdef DEBUG
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000248 if (info->isolate()->bootstrapper()->IsActive()
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000249 ? FLAG_print_builtin_scopes
250 : FLAG_print_scopes) {
251 info->function()->scope()->Print();
252 }
253#endif
254
255 info->SetScope(info->function()->scope());
256 return true; // Can not fail.
257}
258
259
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000260void Scope::Initialize(bool inside_with) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000261 ASSERT(!resolved());
262
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000263 // Add this scope as a new inner scope of the outer scope.
264 if (outer_scope_ != NULL) {
265 outer_scope_->inner_scopes_.Add(this);
266 scope_inside_with_ = outer_scope_->scope_inside_with_ || inside_with;
267 } else {
268 scope_inside_with_ = inside_with;
269 }
270
271 // Declare convenience variables.
272 // Declare and allocate receiver (even for the global scope, and even
273 // if naccesses_ == 0).
274 // NOTE: When loading parameters in the global scope, we must take
275 // care not to access them as properties of the global object, but
276 // instead load them directly from the stack. Currently, the only
277 // such parameter is 'this' which is passed on the stack when
278 // invoking scripts
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000279 Variable* var =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000280 variables_.Declare(this, FACTORY->this_symbol(), Variable::VAR,
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000281 false, Variable::THIS);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000282 var->set_rewrite(new Slot(var, Slot::PARAMETER, -1));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000283 receiver_ = var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000284
285 if (is_function_scope()) {
286 // Declare 'arguments' variable which exists in all functions.
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000287 // Note that it might never be accessed, in which case it won't be
288 // allocated during variable allocation.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000289 variables_.Declare(this, FACTORY->arguments_symbol(), Variable::VAR,
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000290 true, Variable::ARGUMENTS);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000291 }
292}
293
294
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000295Variable* Scope::LocalLookup(Handle<String> name) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000296 Variable* result = variables_.Lookup(name);
297 if (result != NULL || !resolved()) {
298 return result;
299 }
300 // If the scope is resolved, we can find a variable in serialized scope info.
301
302 // We should never lookup 'arguments' in this scope
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000303 // as it is implicitly present in any scope.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000304 ASSERT(*name != *FACTORY->arguments_symbol());
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000305
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000306 // Assert that there is no local slot with the given name.
307 ASSERT(scope_info_->StackSlotIndex(*name) < 0);
308
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000309 // Check context slot lookup.
310 Variable::Mode mode;
311 int index = scope_info_->ContextSlotIndex(*name, &mode);
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000312 if (index >= 0) {
313 Variable* var =
314 variables_.Declare(this, name, mode, true, Variable::NORMAL);
315 var->set_rewrite(new Slot(var, Slot::CONTEXT, index));
316 return var;
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000317 }
318
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000319 index = scope_info_->ParameterIndex(*name);
320 if (index >= 0) {
321 // ".arguments" must be present in context slots.
322 ASSERT(arguments_shadow_ != NULL);
323 Variable* var =
324 variables_.Declare(this, name, Variable::VAR, true, Variable::NORMAL);
325 Property* rewrite =
326 new Property(new VariableProxy(arguments_shadow_),
327 new Literal(Handle<Object>(Smi::FromInt(index))),
328 RelocInfo::kNoPosition,
329 Property::SYNTHETIC);
330 rewrite->set_is_arguments_access(true);
331 var->set_rewrite(rewrite);
332 return var;
333 }
334
335 index = scope_info_->FunctionContextSlotIndex(*name);
336 if (index >= 0) {
337 // Check that there is no local slot with the given name.
338 ASSERT(scope_info_->StackSlotIndex(*name) < 0);
339 Variable* var =
340 variables_.Declare(this, name, Variable::VAR, true, Variable::NORMAL);
341 var->set_rewrite(new Slot(var, Slot::CONTEXT, index));
342 return var;
343 }
344
345 return NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000346}
347
348
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000349Variable* Scope::Lookup(Handle<String> name) {
350 for (Scope* scope = this;
351 scope != NULL;
352 scope = scope->outer_scope()) {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000353 Variable* var = scope->LocalLookup(name);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000354 if (var != NULL) return var;
355 }
356 return NULL;
357}
358
359
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000360Variable* Scope::DeclareFunctionVar(Handle<String> name) {
361 ASSERT(is_function_scope() && function_ == NULL);
ager@chromium.org3e875802009-06-29 08:26:34 +0000362 function_ = new Variable(this, name, Variable::CONST, true, Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000363 return function_;
364}
365
366
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000367Variable* Scope::DeclareLocal(Handle<String> name, Variable::Mode mode) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000368 // DYNAMIC variables are introduces during variable allocation,
369 // INTERNAL variables are allocated explicitly, and TEMPORARY
370 // variables are allocated via NewTemporary().
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000371 ASSERT(!resolved());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000372 ASSERT(mode == Variable::VAR || mode == Variable::CONST);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000373 return variables_.Declare(this, name, mode, true, Variable::NORMAL);
374}
375
376
377Variable* Scope::DeclareGlobal(Handle<String> name) {
378 ASSERT(is_global_scope());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000379 return variables_.Declare(this, name, Variable::DYNAMIC_GLOBAL, true,
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000380 Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000381}
382
383
384void Scope::AddParameter(Variable* var) {
385 ASSERT(is_function_scope());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000386 ASSERT(LocalLookup(var->name()) == var);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000387 params_.Add(var);
388}
389
390
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000391VariableProxy* Scope::NewUnresolved(Handle<String> name,
392 bool inside_with,
393 int position) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000394 // Note that we must not share the unresolved variables with
395 // the same name because they may be removed selectively via
396 // RemoveUnresolved().
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000397 ASSERT(!resolved());
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000398 VariableProxy* proxy = new VariableProxy(name, false, inside_with, position);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000399 unresolved_.Add(proxy);
400 return proxy;
401}
402
403
404void Scope::RemoveUnresolved(VariableProxy* var) {
405 // Most likely (always?) any variable we want to remove
406 // was just added before, so we search backwards.
407 for (int i = unresolved_.length(); i-- > 0;) {
408 if (unresolved_[i] == var) {
409 unresolved_.Remove(i);
410 return;
411 }
412 }
413}
414
415
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000416Variable* Scope::NewTemporary(Handle<String> name) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000417 ASSERT(!resolved());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000418 Variable* var =
419 new Variable(this, name, Variable::TEMPORARY, true, Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000420 temps_.Add(var);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000421 return var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000422}
423
424
425void Scope::AddDeclaration(Declaration* declaration) {
426 decls_.Add(declaration);
427}
428
429
430void Scope::SetIllegalRedeclaration(Expression* expression) {
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000431 // Record only the first illegal redeclaration.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000432 if (!HasIllegalRedeclaration()) {
433 illegal_redecl_ = expression;
434 }
435 ASSERT(HasIllegalRedeclaration());
436}
437
438
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000439void Scope::VisitIllegalRedeclaration(AstVisitor* visitor) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000440 ASSERT(HasIllegalRedeclaration());
441 illegal_redecl_->Accept(visitor);
442}
443
444
445template<class Allocator>
446void Scope::CollectUsedVariables(List<Variable*, Allocator>* locals) {
447 // Collect variables in this scope.
448 // Note that the function_ variable - if present - is not
449 // collected here but handled separately in ScopeInfo
450 // which is the current user of this function).
451 for (int i = 0; i < temps_.length(); i++) {
452 Variable* var = temps_[i];
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000453 if (var->is_used()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000454 locals->Add(var);
455 }
456 }
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000457 for (VariableMap::Entry* p = variables_.Start();
458 p != NULL;
459 p = variables_.Next(p)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000460 Variable* var = reinterpret_cast<Variable*>(p->value);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000461 if (var->is_used()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000462 locals->Add(var);
463 }
464 }
465}
466
467
468// Make sure the method gets instantiated by the template system.
469template void Scope::CollectUsedVariables(
470 List<Variable*, FreeStoreAllocationPolicy>* locals);
471template void Scope::CollectUsedVariables(
472 List<Variable*, PreallocatedStorage>* locals);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000473template void Scope::CollectUsedVariables(
474 List<Variable*, ZoneListAllocationPolicy>* locals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000475
476
ager@chromium.org381abbb2009-02-25 13:23:22 +0000477void Scope::AllocateVariables(Handle<Context> context) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000478 ASSERT(outer_scope_ == NULL); // eval or global scopes only
479
480 // 1) Propagate scope information.
481 // If we are in an eval scope, we may have other outer scopes about
482 // which we don't know anything at this point. Thus we must be conservative
483 // and assume they may invoke eval themselves. Eventually we could capture
484 // this information in the ScopeInfo and then use it here (by traversing
485 // the call chain stack, at compile time).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000486 bool eval_scope = is_eval_scope();
487 PropagateScopeInfo(eval_scope, eval_scope);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000488
489 // 2) Resolve variables.
490 Scope* global_scope = NULL;
491 if (is_global_scope()) global_scope = this;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000492 ResolveVariablesRecursively(global_scope, context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000493
494 // 3) Allocate variables.
495 AllocateVariablesRecursively();
496}
497
498
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000499bool Scope::AllowsLazyCompilation() const {
500 return !force_eager_compilation_ && HasTrivialOuterContext();
501}
502
503
504bool Scope::HasTrivialContext() const {
505 // A function scope has a trivial context if it always is the global
506 // context. We iteratively scan out the context chain to see if
507 // there is anything that makes this scope non-trivial; otherwise we
508 // return true.
509 for (const Scope* scope = this; scope != NULL; scope = scope->outer_scope_) {
510 if (scope->is_eval_scope()) return false;
511 if (scope->scope_inside_with_) return false;
512 if (scope->num_heap_slots_ > 0) return false;
513 }
514 return true;
515}
516
517
518bool Scope::HasTrivialOuterContext() const {
519 Scope* outer = outer_scope_;
520 if (outer == NULL) return true;
521 // Note that the outer context may be trivial in general, but the current
522 // scope may be inside a 'with' statement in which case the outer context
523 // for this scope is not trivial.
524 return !scope_inside_with_ && outer->HasTrivialContext();
525}
526
527
528int Scope::ContextChainLength(Scope* scope) {
529 int n = 0;
530 for (Scope* s = this; s != scope; s = s->outer_scope_) {
531 ASSERT(s != NULL); // scope must be in the scope chain
532 if (s->num_heap_slots() > 0) n++;
533 }
534 return n;
535}
536
537
538#ifdef DEBUG
539static const char* Header(Scope::Type type) {
540 switch (type) {
541 case Scope::EVAL_SCOPE: return "eval";
542 case Scope::FUNCTION_SCOPE: return "function";
543 case Scope::GLOBAL_SCOPE: return "global";
544 }
545 UNREACHABLE();
546 return NULL;
547}
548
549
550static void Indent(int n, const char* str) {
551 PrintF("%*s%s", n, "", str);
552}
553
554
555static void PrintName(Handle<String> name) {
556 SmartPointer<char> s = name->ToCString(DISALLOW_NULLS);
557 PrintF("%s", *s);
558}
559
560
561static void PrintVar(PrettyPrinter* printer, int indent, Variable* var) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000562 if (var->is_used() || var->rewrite() != NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000563 Indent(indent, Variable::Mode2String(var->mode()));
564 PrintF(" ");
565 PrintName(var->name());
566 PrintF("; // ");
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000567 if (var->rewrite() != NULL) {
568 PrintF("%s, ", printer->Print(var->rewrite()));
569 if (var->is_accessed_from_inner_scope()) PrintF(", ");
570 }
571 if (var->is_accessed_from_inner_scope()) PrintF("inner scope access");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000572 PrintF("\n");
573 }
574}
575
576
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000577static void PrintMap(PrettyPrinter* printer, int indent, VariableMap* map) {
578 for (VariableMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000579 Variable* var = reinterpret_cast<Variable*>(p->value);
580 PrintVar(printer, indent, var);
581 }
582}
583
584
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000585void Scope::Print(int n) {
586 int n0 = (n > 0 ? n : 0);
587 int n1 = n0 + 2; // indentation
588
589 // Print header.
590 Indent(n0, Header(type_));
591 if (scope_name_->length() > 0) {
592 PrintF(" ");
593 PrintName(scope_name_);
594 }
595
596 // Print parameters, if any.
597 if (is_function_scope()) {
598 PrintF(" (");
599 for (int i = 0; i < params_.length(); i++) {
600 if (i > 0) PrintF(", ");
601 PrintName(params_[i]->name());
602 }
603 PrintF(")");
604 }
605
606 PrintF(" {\n");
607
608 // Function name, if any (named function literals, only).
609 if (function_ != NULL) {
610 Indent(n1, "// (local) function name: ");
611 PrintName(function_->name());
612 PrintF("\n");
613 }
614
615 // Scope info.
616 if (HasTrivialOuterContext()) {
617 Indent(n1, "// scope has trivial outer context\n");
618 }
619 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
620 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
621 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
622 if (outer_scope_calls_eval_) Indent(n1, "// outer scope calls 'eval'\n");
623 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
ager@chromium.org381abbb2009-02-25 13:23:22 +0000624 if (outer_scope_is_eval_scope_) {
625 Indent(n1, "// outer scope is 'eval' scope\n");
626 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000627 if (num_stack_slots_ > 0) { Indent(n1, "// ");
628 PrintF("%d stack slots\n", num_stack_slots_); }
629 if (num_heap_slots_ > 0) { Indent(n1, "// ");
630 PrintF("%d heap slots\n", num_heap_slots_); }
631
632 // Print locals.
633 PrettyPrinter printer;
634 Indent(n1, "// function var\n");
635 if (function_ != NULL) {
636 PrintVar(&printer, n1, function_);
637 }
638
639 Indent(n1, "// temporary vars\n");
640 for (int i = 0; i < temps_.length(); i++) {
641 PrintVar(&printer, n1, temps_[i]);
642 }
643
644 Indent(n1, "// local vars\n");
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000645 PrintMap(&printer, n1, &variables_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000646
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000647 Indent(n1, "// dynamic vars\n");
648 if (dynamics_ != NULL) {
649 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC));
650 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_LOCAL));
651 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_GLOBAL));
652 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000653
654 // Print inner scopes (disable by providing negative n).
655 if (n >= 0) {
656 for (int i = 0; i < inner_scopes_.length(); i++) {
657 PrintF("\n");
658 inner_scopes_[i]->Print(n1);
659 }
660 }
661
662 Indent(n0, "}\n");
663}
664#endif // DEBUG
665
666
ager@chromium.org381abbb2009-02-25 13:23:22 +0000667Variable* Scope::NonLocal(Handle<String> name, Variable::Mode mode) {
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000668 if (dynamics_ == NULL) dynamics_ = new DynamicScopePart();
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000669 VariableMap* map = dynamics_->GetMap(mode);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000670 Variable* var = map->Lookup(name);
671 if (var == NULL) {
672 // Declare a new non-local.
ager@chromium.org3e875802009-06-29 08:26:34 +0000673 var = map->Declare(NULL, name, mode, true, Variable::NORMAL);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000674 // Allocate it by giving it a dynamic lookup.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000675 var->set_rewrite(new Slot(var, Slot::LOOKUP, -1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000676 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000677 return var;
678}
679
680
681// Lookup a variable starting with this scope. The result is either
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000682// the statically resolved variable belonging to an outer scope, or
683// NULL. It may be NULL because a) we couldn't find a variable, or b)
684// because the variable is just a guess (and may be shadowed by
685// another variable that is introduced dynamically via an 'eval' call
686// or a 'with' statement).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000687Variable* Scope::LookupRecursive(Handle<String> name,
688 bool inner_lookup,
689 Variable** invalidated_local) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000690 // If we find a variable, but the current scope calls 'eval', the found
691 // variable may not be the correct one (the 'eval' may introduce a
692 // property with the same name). In that case, remember that the variable
693 // found is just a guess.
694 bool guess = scope_calls_eval_;
695
696 // Try to find the variable in this scope.
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000697 Variable* var = LocalLookup(name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000698
699 if (var != NULL) {
700 // We found a variable. If this is not an inner lookup, we are done.
701 // (Even if there is an 'eval' in this scope which introduces the
702 // same variable again, the resulting variable remains the same.
703 // Note that enclosing 'with' statements are handled at the call site.)
704 if (!inner_lookup)
705 return var;
706
707 } else {
708 // We did not find a variable locally. Check against the function variable,
709 // if any. We can do this for all scopes, since the function variable is
710 // only present - if at all - for function scopes.
711 //
712 // This lookup corresponds to a lookup in the "intermediate" scope sitting
713 // between this scope and the outer scope. (ECMA-262, 3rd., requires that
714 // the name of named function literal is kept in an intermediate scope
ager@chromium.org32912102009-01-16 10:38:43 +0000715 // in between this scope and the next outer scope.)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000716 if (function_ != NULL && function_->name().is_identical_to(name)) {
717 var = function_;
718
719 } else if (outer_scope_ != NULL) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000720 var = outer_scope_->LookupRecursive(name, true, invalidated_local);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000721 // We may have found a variable in an outer scope. However, if
722 // the current scope is inside a 'with', the actual variable may
723 // be a property introduced via the 'with' statement. Then, the
724 // variable we may have found is just a guess.
725 if (scope_inside_with_)
726 guess = true;
727 }
728
729 // If we did not find a variable, we are done.
730 if (var == NULL)
731 return NULL;
732 }
733
734 ASSERT(var != NULL);
735
736 // If this is a lookup from an inner scope, mark the variable.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000737 if (inner_lookup) {
738 var->MarkAsAccessedFromInnerScope();
739 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000740
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000741 // If the variable we have found is just a guess, invalidate the
742 // result. If the found variable is local, record that fact so we
743 // can generate fast code to get it if it is not shadowed by eval.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000744 if (guess) {
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000745 if (!var->is_global()) *invalidated_local = var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000746 var = NULL;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000747 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000748
749 return var;
750}
751
752
ager@chromium.org381abbb2009-02-25 13:23:22 +0000753void Scope::ResolveVariable(Scope* global_scope,
754 Handle<Context> context,
755 VariableProxy* proxy) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000756 ASSERT(global_scope == NULL || global_scope->is_global_scope());
757
758 // If the proxy is already resolved there's nothing to do
759 // (functions and consts may be resolved by the parser).
760 if (proxy->var() != NULL) return;
761
762 // Otherwise, try to resolve the variable.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000763 Variable* invalidated_local = NULL;
764 Variable* var = LookupRecursive(proxy->name(), false, &invalidated_local);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000765
766 if (proxy->inside_with()) {
767 // If we are inside a local 'with' statement, all bets are off
768 // and we cannot resolve the proxy to a local variable even if
769 // we found an outer matching variable.
770 // Note that we must do a lookup anyway, because if we find one,
771 // we must mark that variable as potentially accessed from this
772 // inner scope (the property may not be in the 'with' object).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000773 var = NonLocal(proxy->name(), Variable::DYNAMIC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000774
775 } else {
776 // We are not inside a local 'with' statement.
777
778 if (var == NULL) {
779 // We did not find the variable. We have a global variable
780 // if we are in the global scope (we know already that we
781 // are outside a 'with' statement) or if there is no way
782 // that the variable might be introduced dynamically (through
783 // a local or outer eval() call, or an outer 'with' statement),
784 // or we don't know about the outer scope (because we are
785 // in an eval scope).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000786 if (is_global_scope() ||
787 !(scope_inside_with_ || outer_scope_is_eval_scope_ ||
788 scope_calls_eval_ || outer_scope_calls_eval_)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000789 // We must have a global variable.
790 ASSERT(global_scope != NULL);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000791 var = global_scope->DeclareGlobal(proxy->name());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000792
793 } else if (scope_inside_with_) {
794 // If we are inside a with statement we give up and look up
795 // the variable at runtime.
796 var = NonLocal(proxy->name(), Variable::DYNAMIC);
797
798 } else if (invalidated_local != NULL) {
799 // No with statements are involved and we found a local
800 // variable that might be shadowed by eval introduced
801 // variables.
802 var = NonLocal(proxy->name(), Variable::DYNAMIC_LOCAL);
803 var->set_local_if_not_shadowed(invalidated_local);
804
805 } else if (outer_scope_is_eval_scope_) {
806 // No with statements and we did not find a local and the code
807 // is executed with a call to eval. The context contains
808 // scope information that we can use to determine if the
809 // variable is global if it is not shadowed by eval-introduced
810 // variables.
811 if (context->GlobalIfNotShadowedByEval(proxy->name())) {
812 var = NonLocal(proxy->name(), Variable::DYNAMIC_GLOBAL);
813
814 } else {
815 var = NonLocal(proxy->name(), Variable::DYNAMIC);
816 }
817
818 } else {
819 // No with statements and we did not find a local and the code
820 // is not executed with a call to eval. We know that this
821 // variable is global unless it is shadowed by eval-introduced
822 // variables.
823 var = NonLocal(proxy->name(), Variable::DYNAMIC_GLOBAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000824 }
825 }
826 }
827
828 proxy->BindTo(var);
829}
830
831
ager@chromium.org381abbb2009-02-25 13:23:22 +0000832void Scope::ResolveVariablesRecursively(Scope* global_scope,
833 Handle<Context> context) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000834 ASSERT(global_scope == NULL || global_scope->is_global_scope());
835
836 // Resolve unresolved variables for this scope.
837 for (int i = 0; i < unresolved_.length(); i++) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000838 ResolveVariable(global_scope, context, unresolved_[i]);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000839 }
840
841 // Resolve unresolved variables for inner scopes.
842 for (int i = 0; i < inner_scopes_.length(); i++) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000843 inner_scopes_[i]->ResolveVariablesRecursively(global_scope, context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000844 }
845}
846
847
ager@chromium.org381abbb2009-02-25 13:23:22 +0000848bool Scope::PropagateScopeInfo(bool outer_scope_calls_eval,
849 bool outer_scope_is_eval_scope) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000850 if (outer_scope_calls_eval) {
851 outer_scope_calls_eval_ = true;
852 }
853
ager@chromium.org381abbb2009-02-25 13:23:22 +0000854 if (outer_scope_is_eval_scope) {
855 outer_scope_is_eval_scope_ = true;
856 }
857
858 bool calls_eval = scope_calls_eval_ || outer_scope_calls_eval_;
859 bool is_eval = is_eval_scope() || outer_scope_is_eval_scope_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000860 for (int i = 0; i < inner_scopes_.length(); i++) {
861 Scope* inner_scope = inner_scopes_[i];
ager@chromium.org381abbb2009-02-25 13:23:22 +0000862 if (inner_scope->PropagateScopeInfo(calls_eval, is_eval)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000863 inner_scope_calls_eval_ = true;
864 }
865 if (inner_scope->force_eager_compilation_) {
866 force_eager_compilation_ = true;
867 }
868 }
869
870 return scope_calls_eval_ || inner_scope_calls_eval_;
871}
872
873
874bool Scope::MustAllocate(Variable* var) {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000875 // Give var a read/write use if there is a chance it might be accessed
876 // via an eval() call. This is only possible if the variable has a
877 // visible name.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000878 if ((var->is_this() || var->name()->length() > 0) &&
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000879 (var->is_accessed_from_inner_scope() ||
ager@chromium.org0ee099b2011-01-25 14:06:47 +0000880 scope_calls_eval_ || inner_scope_calls_eval_ ||
881 scope_contains_with_)) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000882 var->set_is_used(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000883 }
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000884 // Global variables do not need to be allocated.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000885 return !var->is_global() && var->is_used();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000886}
887
888
889bool Scope::MustAllocateInContext(Variable* var) {
890 // If var is accessed from an inner scope, or if there is a
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000891 // possibility that it might be accessed from the current or an inner
892 // scope (through an eval() call), it must be allocated in the
893 // context. Exception: temporary variables are not allocated in the
894 // context.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000895 return
896 var->mode() != Variable::TEMPORARY &&
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000897 (var->is_accessed_from_inner_scope() ||
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000898 scope_calls_eval_ || inner_scope_calls_eval_ ||
899 scope_contains_with_ || var->is_global());
900}
901
902
903bool Scope::HasArgumentsParameter() {
904 for (int i = 0; i < params_.length(); i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000905 if (params_[i]->name().is_identical_to(FACTORY->arguments_symbol()))
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000906 return true;
907 }
908 return false;
909}
910
911
912void Scope::AllocateStackSlot(Variable* var) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000913 var->set_rewrite(new Slot(var, Slot::LOCAL, num_stack_slots_++));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000914}
915
916
917void Scope::AllocateHeapSlot(Variable* var) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000918 var->set_rewrite(new Slot(var, Slot::CONTEXT, num_heap_slots_++));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000919}
920
921
922void Scope::AllocateParameterLocals() {
923 ASSERT(is_function_scope());
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000924 Variable* arguments = LocalLookup(FACTORY->arguments_symbol());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000925 ASSERT(arguments != NULL); // functions have 'arguments' declared implicitly
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000926
927 // Parameters are rewritten to arguments[i] if 'arguments' is used in
928 // a non-strict mode function. Strict mode code doesn't alias arguments.
929 bool rewrite_parameters = false;
930
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000931 if (MustAllocate(arguments) && !HasArgumentsParameter()) {
932 // 'arguments' is used. Unless there is also a parameter called
933 // 'arguments', we must be conservative and access all parameters via
934 // the arguments object: The i'th parameter is rewritten into
935 // '.arguments[i]' (*). If we have a parameter named 'arguments', a
936 // (new) value is always assigned to it via the function
937 // invocation. Then 'arguments' denotes that specific parameter value
938 // and cannot be used to access the parameters, which is why we don't
939 // need to rewrite in that case.
940 //
941 // (*) Instead of having a parameter called 'arguments', we may have an
942 // assignment to 'arguments' in the function body, at some arbitrary
943 // point in time (possibly through an 'eval()' call!). After that
944 // assignment any re-write of parameters would be invalid (was bug
945 // 881452). Thus, we introduce a shadow '.arguments'
946 // variable which also points to the arguments object. For rewrites we
947 // use '.arguments' which remains valid even if we assign to
948 // 'arguments'. To summarize: If we need to rewrite, we allocate an
949 // 'arguments' object dynamically upon function invocation. The compiler
950 // introduces 2 local variables 'arguments' and '.arguments', both of
951 // which originally point to the arguments object that was
952 // allocated. All parameters are rewritten into property accesses via
953 // the '.arguments' variable. Thus, any changes to properties of
954 // 'arguments' are reflected in the variables and vice versa. If the
955 // 'arguments' variable is changed, '.arguments' still points to the
956 // correct arguments object and the rewrites still work.
957
958 // We are using 'arguments'. Tell the code generator that is needs to
959 // allocate the arguments object by setting 'arguments_'.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000960 arguments_ = arguments;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000961
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000962 // In strict mode 'arguments' does not alias formal parameters.
963 // Therefore in strict mode we allocate parameters as if 'arguments'
964 // were not used.
965 rewrite_parameters = !is_strict_mode();
966 }
967
968 if (rewrite_parameters) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000969 // We also need the '.arguments' shadow variable. Declare it and create
970 // and bind the corresponding proxy. It's ok to declare it only now
971 // because it's a local variable that is allocated after the parameters
972 // have been allocated.
973 //
974 // Note: This is "almost" at temporary variable but we cannot use
975 // NewTemporary() because the mode needs to be INTERNAL since this
976 // variable may be allocated in the heap-allocated context (temporaries
977 // are never allocated in the context).
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000978 arguments_shadow_ = new Variable(this,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000979 FACTORY->arguments_shadow_symbol(),
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000980 Variable::INTERNAL,
981 true,
982 Variable::ARGUMENTS);
983 arguments_shadow_->set_is_used(true);
984 temps_.Add(arguments_shadow_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000985
986 // Allocate the parameters by rewriting them into '.arguments[i]' accesses.
987 for (int i = 0; i < params_.length(); i++) {
988 Variable* var = params_[i];
989 ASSERT(var->scope() == this);
990 if (MustAllocate(var)) {
991 if (MustAllocateInContext(var)) {
992 // It is ok to set this only now, because arguments is a local
993 // variable that is allocated after the parameters have been
994 // allocated.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000995 arguments_shadow_->MarkAsAccessedFromInnerScope();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000996 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000997 Property* rewrite =
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000998 new Property(new VariableProxy(arguments_shadow_),
999 new Literal(Handle<Object>(Smi::FromInt(i))),
1000 RelocInfo::kNoPosition,
1001 Property::SYNTHETIC);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001002 rewrite->set_is_arguments_access(true);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001003 var->set_rewrite(rewrite);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001004 }
1005 }
1006
1007 } else {
1008 // The arguments object is not used, so we can access parameters directly.
1009 // The same parameter may occur multiple times in the parameters_ list.
1010 // If it does, and if it is not copied into the context object, it must
1011 // receive the highest parameter index for that parameter; thus iteration
1012 // order is relevant!
1013 for (int i = 0; i < params_.length(); i++) {
1014 Variable* var = params_[i];
1015 ASSERT(var->scope() == this);
1016 if (MustAllocate(var)) {
1017 if (MustAllocateInContext(var)) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001018 ASSERT(var->rewrite() == NULL ||
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001019 (var->AsSlot() != NULL &&
1020 var->AsSlot()->type() == Slot::CONTEXT));
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001021 if (var->rewrite() == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001022 // Only set the heap allocation if the parameter has not
1023 // been allocated yet.
1024 AllocateHeapSlot(var);
1025 }
1026 } else {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001027 ASSERT(var->rewrite() == NULL ||
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001028 (var->AsSlot() != NULL &&
1029 var->AsSlot()->type() == Slot::PARAMETER));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001030 // Set the parameter index always, even if the parameter
1031 // was seen before! (We need to access the actual parameter
1032 // supplied for the last occurrence of a multiply declared
1033 // parameter.)
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001034 var->set_rewrite(new Slot(var, Slot::PARAMETER, i));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001035 }
1036 }
1037 }
1038 }
1039}
1040
1041
1042void Scope::AllocateNonParameterLocal(Variable* var) {
1043 ASSERT(var->scope() == this);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001044 ASSERT(var->rewrite() == NULL ||
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001045 (!var->IsVariable(FACTORY->result_symbol())) ||
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001046 (var->AsSlot() == NULL || var->AsSlot()->type() != Slot::LOCAL));
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001047 if (var->rewrite() == NULL && MustAllocate(var)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001048 if (MustAllocateInContext(var)) {
1049 AllocateHeapSlot(var);
1050 } else {
1051 AllocateStackSlot(var);
1052 }
1053 }
1054}
1055
1056
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001057void Scope::AllocateNonParameterLocals() {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001058 // All variables that have no rewrite yet are non-parameter locals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001059 for (int i = 0; i < temps_.length(); i++) {
1060 AllocateNonParameterLocal(temps_[i]);
1061 }
1062
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001063 for (VariableMap::Entry* p = variables_.Start();
1064 p != NULL;
1065 p = variables_.Next(p)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001066 Variable* var = reinterpret_cast<Variable*>(p->value);
1067 AllocateNonParameterLocal(var);
1068 }
1069
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001070 // For now, function_ must be allocated at the very end. If it gets
1071 // allocated in the context, it must be the last slot in the context,
1072 // because of the current ScopeInfo implementation (see
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001073 // ScopeInfo::ScopeInfo(FunctionScope* scope) constructor).
1074 if (function_ != NULL) {
1075 AllocateNonParameterLocal(function_);
1076 }
1077}
1078
1079
1080void Scope::AllocateVariablesRecursively() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001081 // Allocate variables for inner scopes.
1082 for (int i = 0; i < inner_scopes_.length(); i++) {
1083 inner_scopes_[i]->AllocateVariablesRecursively();
1084 }
1085
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001086 // If scope is already resolved, we still need to allocate
1087 // variables in inner scopes which might not had been resolved yet.
1088 if (resolved()) return;
1089 // The number of slots required for variables.
1090 num_stack_slots_ = 0;
1091 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
1092
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001093 // Allocate variables for this scope.
1094 // Parameters must be allocated first, if any.
1095 if (is_function_scope()) AllocateParameterLocals();
1096 AllocateNonParameterLocals();
1097
1098 // Allocate context if necessary.
1099 bool must_have_local_context = false;
1100 if (scope_calls_eval_ || scope_contains_with_) {
1101 // The context for the eval() call or 'with' statement in this scope.
1102 // Unless we are in the global or an eval scope, we need a local
1103 // context even if we didn't statically allocate any locals in it,
1104 // and the compiler will access the context variable. If we are
1105 // not in an inner scope, the scope is provided from the outside.
1106 must_have_local_context = is_function_scope();
1107 }
1108
1109 // If we didn't allocate any locals in the local context, then we only
1110 // need the minimal number of slots if we must have a local context.
1111 if (num_heap_slots_ == Context::MIN_CONTEXT_SLOTS &&
1112 !must_have_local_context) {
1113 num_heap_slots_ = 0;
1114 }
1115
1116 // Allocation done.
1117 ASSERT(num_heap_slots_ == 0 || num_heap_slots_ >= Context::MIN_CONTEXT_SLOTS);
1118}
1119
1120} } // namespace v8::internal