blob: e159257164086840e690f66f4006a202fb00df54 [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
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000369void Scope::DeclareParameter(Handle<String> name) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000370 ASSERT(!resolved());
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000371 ASSERT(is_function_scope());
372 Variable* var =
373 variables_.Declare(this, name, Variable::VAR, true, Variable::NORMAL);
374 params_.Add(var);
375}
376
377
378Variable* Scope::DeclareLocal(Handle<String> name, Variable::Mode mode) {
379 ASSERT(!resolved());
380 // This function handles VAR and CONST modes. DYNAMIC variables are
381 // introduces during variable allocation, INTERNAL variables are allocated
382 // explicitly, and TEMPORARY variables are allocated via NewTemporary().
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000383 ASSERT(mode == Variable::VAR || mode == Variable::CONST);
ricow@chromium.orgc54d3652011-05-30 09:20:16 +0000384 ++num_var_or_const_;
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000385 return variables_.Declare(this, name, mode, true, Variable::NORMAL);
386}
387
388
389Variable* Scope::DeclareGlobal(Handle<String> name) {
390 ASSERT(is_global_scope());
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000391 return variables_.Declare(this, name, Variable::DYNAMIC_GLOBAL, true,
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000392 Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000393}
394
395
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000396VariableProxy* Scope::NewUnresolved(Handle<String> name,
397 bool inside_with,
398 int position) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000399 // Note that we must not share the unresolved variables with
400 // the same name because they may be removed selectively via
401 // RemoveUnresolved().
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000402 ASSERT(!resolved());
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000403 VariableProxy* proxy = new VariableProxy(name, false, inside_with, position);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000404 unresolved_.Add(proxy);
405 return proxy;
406}
407
408
409void Scope::RemoveUnresolved(VariableProxy* var) {
410 // Most likely (always?) any variable we want to remove
411 // was just added before, so we search backwards.
412 for (int i = unresolved_.length(); i-- > 0;) {
413 if (unresolved_[i] == var) {
414 unresolved_.Remove(i);
415 return;
416 }
417 }
418}
419
420
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000421Variable* Scope::NewTemporary(Handle<String> name) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000422 ASSERT(!resolved());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000423 Variable* var =
424 new Variable(this, name, Variable::TEMPORARY, true, Variable::NORMAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000425 temps_.Add(var);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000426 return var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000427}
428
429
430void Scope::AddDeclaration(Declaration* declaration) {
431 decls_.Add(declaration);
432}
433
434
435void Scope::SetIllegalRedeclaration(Expression* expression) {
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000436 // Record only the first illegal redeclaration.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000437 if (!HasIllegalRedeclaration()) {
438 illegal_redecl_ = expression;
439 }
440 ASSERT(HasIllegalRedeclaration());
441}
442
443
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000444void Scope::VisitIllegalRedeclaration(AstVisitor* visitor) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000445 ASSERT(HasIllegalRedeclaration());
446 illegal_redecl_->Accept(visitor);
447}
448
449
450template<class Allocator>
451void Scope::CollectUsedVariables(List<Variable*, Allocator>* locals) {
452 // Collect variables in this scope.
453 // Note that the function_ variable - if present - is not
454 // collected here but handled separately in ScopeInfo
455 // which is the current user of this function).
456 for (int i = 0; i < temps_.length(); i++) {
457 Variable* var = temps_[i];
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000458 if (var->is_used()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000459 locals->Add(var);
460 }
461 }
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000462 for (VariableMap::Entry* p = variables_.Start();
463 p != NULL;
464 p = variables_.Next(p)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000465 Variable* var = reinterpret_cast<Variable*>(p->value);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000466 if (var->is_used()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000467 locals->Add(var);
468 }
469 }
470}
471
472
473// Make sure the method gets instantiated by the template system.
474template void Scope::CollectUsedVariables(
475 List<Variable*, FreeStoreAllocationPolicy>* locals);
476template void Scope::CollectUsedVariables(
477 List<Variable*, PreallocatedStorage>* locals);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000478template void Scope::CollectUsedVariables(
479 List<Variable*, ZoneListAllocationPolicy>* locals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000480
481
ager@chromium.org381abbb2009-02-25 13:23:22 +0000482void Scope::AllocateVariables(Handle<Context> context) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000483 ASSERT(outer_scope_ == NULL); // eval or global scopes only
484
485 // 1) Propagate scope information.
486 // If we are in an eval scope, we may have other outer scopes about
487 // which we don't know anything at this point. Thus we must be conservative
488 // and assume they may invoke eval themselves. Eventually we could capture
489 // this information in the ScopeInfo and then use it here (by traversing
490 // the call chain stack, at compile time).
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000491
ager@chromium.org381abbb2009-02-25 13:23:22 +0000492 bool eval_scope = is_eval_scope();
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000493 bool outer_scope_calls_eval = false;
494 bool outer_scope_calls_non_strict_eval = false;
495 if (!is_global_scope()) {
496 context->ComputeEvalScopeInfo(&outer_scope_calls_eval,
497 &outer_scope_calls_non_strict_eval);
498 }
499 PropagateScopeInfo(outer_scope_calls_eval,
500 outer_scope_calls_non_strict_eval,
501 eval_scope);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000502
503 // 2) Resolve variables.
504 Scope* global_scope = NULL;
505 if (is_global_scope()) global_scope = this;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000506 ResolveVariablesRecursively(global_scope, context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000507
508 // 3) Allocate variables.
509 AllocateVariablesRecursively();
510}
511
512
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000513bool Scope::AllowsLazyCompilation() const {
514 return !force_eager_compilation_ && HasTrivialOuterContext();
515}
516
517
518bool Scope::HasTrivialContext() const {
519 // A function scope has a trivial context if it always is the global
520 // context. We iteratively scan out the context chain to see if
521 // there is anything that makes this scope non-trivial; otherwise we
522 // return true.
523 for (const Scope* scope = this; scope != NULL; scope = scope->outer_scope_) {
524 if (scope->is_eval_scope()) return false;
525 if (scope->scope_inside_with_) return false;
526 if (scope->num_heap_slots_ > 0) return false;
527 }
528 return true;
529}
530
531
532bool Scope::HasTrivialOuterContext() const {
533 Scope* outer = outer_scope_;
534 if (outer == NULL) return true;
535 // Note that the outer context may be trivial in general, but the current
536 // scope may be inside a 'with' statement in which case the outer context
537 // for this scope is not trivial.
538 return !scope_inside_with_ && outer->HasTrivialContext();
539}
540
541
542int Scope::ContextChainLength(Scope* scope) {
543 int n = 0;
544 for (Scope* s = this; s != scope; s = s->outer_scope_) {
545 ASSERT(s != NULL); // scope must be in the scope chain
546 if (s->num_heap_slots() > 0) n++;
547 }
548 return n;
549}
550
551
552#ifdef DEBUG
553static const char* Header(Scope::Type type) {
554 switch (type) {
555 case Scope::EVAL_SCOPE: return "eval";
556 case Scope::FUNCTION_SCOPE: return "function";
557 case Scope::GLOBAL_SCOPE: return "global";
558 }
559 UNREACHABLE();
560 return NULL;
561}
562
563
564static void Indent(int n, const char* str) {
565 PrintF("%*s%s", n, "", str);
566}
567
568
569static void PrintName(Handle<String> name) {
570 SmartPointer<char> s = name->ToCString(DISALLOW_NULLS);
571 PrintF("%s", *s);
572}
573
574
575static void PrintVar(PrettyPrinter* printer, int indent, Variable* var) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000576 if (var->is_used() || var->rewrite() != NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000577 Indent(indent, Variable::Mode2String(var->mode()));
578 PrintF(" ");
579 PrintName(var->name());
580 PrintF("; // ");
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000581 if (var->rewrite() != NULL) {
582 PrintF("%s, ", printer->Print(var->rewrite()));
583 if (var->is_accessed_from_inner_scope()) PrintF(", ");
584 }
585 if (var->is_accessed_from_inner_scope()) PrintF("inner scope access");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000586 PrintF("\n");
587 }
588}
589
590
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000591static void PrintMap(PrettyPrinter* printer, int indent, VariableMap* map) {
592 for (VariableMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000593 Variable* var = reinterpret_cast<Variable*>(p->value);
594 PrintVar(printer, indent, var);
595 }
596}
597
598
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000599void Scope::Print(int n) {
600 int n0 = (n > 0 ? n : 0);
601 int n1 = n0 + 2; // indentation
602
603 // Print header.
604 Indent(n0, Header(type_));
605 if (scope_name_->length() > 0) {
606 PrintF(" ");
607 PrintName(scope_name_);
608 }
609
610 // Print parameters, if any.
611 if (is_function_scope()) {
612 PrintF(" (");
613 for (int i = 0; i < params_.length(); i++) {
614 if (i > 0) PrintF(", ");
615 PrintName(params_[i]->name());
616 }
617 PrintF(")");
618 }
619
620 PrintF(" {\n");
621
622 // Function name, if any (named function literals, only).
623 if (function_ != NULL) {
624 Indent(n1, "// (local) function name: ");
625 PrintName(function_->name());
626 PrintF("\n");
627 }
628
629 // Scope info.
630 if (HasTrivialOuterContext()) {
631 Indent(n1, "// scope has trivial outer context\n");
632 }
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000633 if (is_strict_mode()) Indent(n1, "// strict mode scope\n");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000634 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
635 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
636 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
637 if (outer_scope_calls_eval_) Indent(n1, "// outer scope calls 'eval'\n");
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000638 if (outer_scope_calls_non_strict_eval_) {
639 Indent(n1, "// outer scope calls 'eval' in non-strict context\n");
640 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000641 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
ager@chromium.org381abbb2009-02-25 13:23:22 +0000642 if (outer_scope_is_eval_scope_) {
643 Indent(n1, "// outer scope is 'eval' scope\n");
644 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000645 if (num_stack_slots_ > 0) { Indent(n1, "// ");
646 PrintF("%d stack slots\n", num_stack_slots_); }
647 if (num_heap_slots_ > 0) { Indent(n1, "// ");
648 PrintF("%d heap slots\n", num_heap_slots_); }
649
650 // Print locals.
651 PrettyPrinter printer;
652 Indent(n1, "// function var\n");
653 if (function_ != NULL) {
654 PrintVar(&printer, n1, function_);
655 }
656
657 Indent(n1, "// temporary vars\n");
658 for (int i = 0; i < temps_.length(); i++) {
659 PrintVar(&printer, n1, temps_[i]);
660 }
661
662 Indent(n1, "// local vars\n");
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000663 PrintMap(&printer, n1, &variables_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000664
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000665 Indent(n1, "// dynamic vars\n");
666 if (dynamics_ != NULL) {
667 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC));
668 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_LOCAL));
669 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_GLOBAL));
670 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000671
672 // Print inner scopes (disable by providing negative n).
673 if (n >= 0) {
674 for (int i = 0; i < inner_scopes_.length(); i++) {
675 PrintF("\n");
676 inner_scopes_[i]->Print(n1);
677 }
678 }
679
680 Indent(n0, "}\n");
681}
682#endif // DEBUG
683
684
ager@chromium.org381abbb2009-02-25 13:23:22 +0000685Variable* Scope::NonLocal(Handle<String> name, Variable::Mode mode) {
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000686 if (dynamics_ == NULL) dynamics_ = new DynamicScopePart();
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000687 VariableMap* map = dynamics_->GetMap(mode);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000688 Variable* var = map->Lookup(name);
689 if (var == NULL) {
690 // Declare a new non-local.
ager@chromium.org3e875802009-06-29 08:26:34 +0000691 var = map->Declare(NULL, name, mode, true, Variable::NORMAL);
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +0000692 // Allocate it by giving it a dynamic lookup.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000693 var->set_rewrite(new Slot(var, Slot::LOOKUP, -1));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000694 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000695 return var;
696}
697
698
699// Lookup a variable starting with this scope. The result is either
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000700// the statically resolved variable belonging to an outer scope, or
701// NULL. It may be NULL because a) we couldn't find a variable, or b)
702// because the variable is just a guess (and may be shadowed by
703// another variable that is introduced dynamically via an 'eval' call
704// or a 'with' statement).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000705Variable* Scope::LookupRecursive(Handle<String> name,
706 bool inner_lookup,
707 Variable** invalidated_local) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000708 // If we find a variable, but the current scope calls 'eval', the found
709 // variable may not be the correct one (the 'eval' may introduce a
710 // property with the same name). In that case, remember that the variable
711 // found is just a guess.
712 bool guess = scope_calls_eval_;
713
714 // Try to find the variable in this scope.
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000715 Variable* var = LocalLookup(name);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000716
717 if (var != NULL) {
718 // We found a variable. If this is not an inner lookup, we are done.
719 // (Even if there is an 'eval' in this scope which introduces the
720 // same variable again, the resulting variable remains the same.
721 // Note that enclosing 'with' statements are handled at the call site.)
722 if (!inner_lookup)
723 return var;
724
725 } else {
726 // We did not find a variable locally. Check against the function variable,
727 // if any. We can do this for all scopes, since the function variable is
728 // only present - if at all - for function scopes.
729 //
730 // This lookup corresponds to a lookup in the "intermediate" scope sitting
731 // between this scope and the outer scope. (ECMA-262, 3rd., requires that
732 // the name of named function literal is kept in an intermediate scope
ager@chromium.org32912102009-01-16 10:38:43 +0000733 // in between this scope and the next outer scope.)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000734 if (function_ != NULL && function_->name().is_identical_to(name)) {
735 var = function_;
736
737 } else if (outer_scope_ != NULL) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000738 var = outer_scope_->LookupRecursive(name, true, invalidated_local);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000739 // We may have found a variable in an outer scope. However, if
740 // the current scope is inside a 'with', the actual variable may
741 // be a property introduced via the 'with' statement. Then, the
742 // variable we may have found is just a guess.
743 if (scope_inside_with_)
744 guess = true;
745 }
746
747 // If we did not find a variable, we are done.
748 if (var == NULL)
749 return NULL;
750 }
751
752 ASSERT(var != NULL);
753
754 // If this is a lookup from an inner scope, mark the variable.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000755 if (inner_lookup) {
756 var->MarkAsAccessedFromInnerScope();
757 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000758
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000759 // If the variable we have found is just a guess, invalidate the
760 // result. If the found variable is local, record that fact so we
761 // can generate fast code to get it if it is not shadowed by eval.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000762 if (guess) {
ager@chromium.orgfe22fc42009-11-05 11:55:54 +0000763 if (!var->is_global()) *invalidated_local = var;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000764 var = NULL;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000765 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000766
767 return var;
768}
769
770
ager@chromium.org381abbb2009-02-25 13:23:22 +0000771void Scope::ResolveVariable(Scope* global_scope,
772 Handle<Context> context,
773 VariableProxy* proxy) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000774 ASSERT(global_scope == NULL || global_scope->is_global_scope());
775
776 // If the proxy is already resolved there's nothing to do
777 // (functions and consts may be resolved by the parser).
778 if (proxy->var() != NULL) return;
779
780 // Otherwise, try to resolve the variable.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000781 Variable* invalidated_local = NULL;
782 Variable* var = LookupRecursive(proxy->name(), false, &invalidated_local);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000783
784 if (proxy->inside_with()) {
785 // If we are inside a local 'with' statement, all bets are off
786 // and we cannot resolve the proxy to a local variable even if
787 // we found an outer matching variable.
788 // Note that we must do a lookup anyway, because if we find one,
789 // we must mark that variable as potentially accessed from this
790 // inner scope (the property may not be in the 'with' object).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000791 var = NonLocal(proxy->name(), Variable::DYNAMIC);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000792
793 } else {
794 // We are not inside a local 'with' statement.
795
796 if (var == NULL) {
797 // We did not find the variable. We have a global variable
798 // if we are in the global scope (we know already that we
799 // are outside a 'with' statement) or if there is no way
800 // that the variable might be introduced dynamically (through
801 // a local or outer eval() call, or an outer 'with' statement),
802 // or we don't know about the outer scope (because we are
803 // in an eval scope).
ager@chromium.org381abbb2009-02-25 13:23:22 +0000804 if (is_global_scope() ||
805 !(scope_inside_with_ || outer_scope_is_eval_scope_ ||
806 scope_calls_eval_ || outer_scope_calls_eval_)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000807 // We must have a global variable.
808 ASSERT(global_scope != NULL);
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000809 var = global_scope->DeclareGlobal(proxy->name());
ager@chromium.org381abbb2009-02-25 13:23:22 +0000810
811 } else if (scope_inside_with_) {
812 // If we are inside a with statement we give up and look up
813 // the variable at runtime.
814 var = NonLocal(proxy->name(), Variable::DYNAMIC);
815
816 } else if (invalidated_local != NULL) {
817 // No with statements are involved and we found a local
818 // variable that might be shadowed by eval introduced
819 // variables.
820 var = NonLocal(proxy->name(), Variable::DYNAMIC_LOCAL);
821 var->set_local_if_not_shadowed(invalidated_local);
822
823 } else if (outer_scope_is_eval_scope_) {
824 // No with statements and we did not find a local and the code
825 // is executed with a call to eval. The context contains
826 // scope information that we can use to determine if the
827 // variable is global if it is not shadowed by eval-introduced
828 // variables.
829 if (context->GlobalIfNotShadowedByEval(proxy->name())) {
830 var = NonLocal(proxy->name(), Variable::DYNAMIC_GLOBAL);
831
832 } else {
833 var = NonLocal(proxy->name(), Variable::DYNAMIC);
834 }
835
836 } else {
837 // No with statements and we did not find a local and the code
838 // is not executed with a call to eval. We know that this
839 // variable is global unless it is shadowed by eval-introduced
840 // variables.
841 var = NonLocal(proxy->name(), Variable::DYNAMIC_GLOBAL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000842 }
843 }
844 }
845
846 proxy->BindTo(var);
847}
848
849
ager@chromium.org381abbb2009-02-25 13:23:22 +0000850void Scope::ResolveVariablesRecursively(Scope* global_scope,
851 Handle<Context> context) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000852 ASSERT(global_scope == NULL || global_scope->is_global_scope());
853
854 // Resolve unresolved variables for this scope.
855 for (int i = 0; i < unresolved_.length(); i++) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000856 ResolveVariable(global_scope, context, unresolved_[i]);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000857 }
858
859 // Resolve unresolved variables for inner scopes.
860 for (int i = 0; i < inner_scopes_.length(); i++) {
ager@chromium.org381abbb2009-02-25 13:23:22 +0000861 inner_scopes_[i]->ResolveVariablesRecursively(global_scope, context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000862 }
863}
864
865
ager@chromium.org381abbb2009-02-25 13:23:22 +0000866bool Scope::PropagateScopeInfo(bool outer_scope_calls_eval,
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000867 bool outer_scope_calls_non_strict_eval,
ager@chromium.org381abbb2009-02-25 13:23:22 +0000868 bool outer_scope_is_eval_scope) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000869 if (outer_scope_calls_eval) {
870 outer_scope_calls_eval_ = true;
871 }
872
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000873 if (outer_scope_calls_non_strict_eval) {
874 outer_scope_calls_non_strict_eval_ = true;
875 }
876
ager@chromium.org381abbb2009-02-25 13:23:22 +0000877 if (outer_scope_is_eval_scope) {
878 outer_scope_is_eval_scope_ = true;
879 }
880
881 bool calls_eval = scope_calls_eval_ || outer_scope_calls_eval_;
882 bool is_eval = is_eval_scope() || outer_scope_is_eval_scope_;
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000883 bool calls_non_strict_eval =
884 (scope_calls_eval_ && !is_strict_mode()) ||
885 outer_scope_calls_non_strict_eval_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000886 for (int i = 0; i < inner_scopes_.length(); i++) {
887 Scope* inner_scope = inner_scopes_[i];
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000888 if (inner_scope->PropagateScopeInfo(calls_eval,
889 calls_non_strict_eval,
890 is_eval)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000891 inner_scope_calls_eval_ = true;
892 }
893 if (inner_scope->force_eager_compilation_) {
894 force_eager_compilation_ = true;
895 }
896 }
897
898 return scope_calls_eval_ || inner_scope_calls_eval_;
899}
900
901
902bool Scope::MustAllocate(Variable* var) {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000903 // Give var a read/write use if there is a chance it might be accessed
904 // via an eval() call. This is only possible if the variable has a
905 // visible name.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000906 if ((var->is_this() || var->name()->length() > 0) &&
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000907 (var->is_accessed_from_inner_scope() ||
ager@chromium.org0ee099b2011-01-25 14:06:47 +0000908 scope_calls_eval_ || inner_scope_calls_eval_ ||
909 scope_contains_with_)) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000910 var->set_is_used(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000911 }
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000912 // Global variables do not need to be allocated.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000913 return !var->is_global() && var->is_used();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000914}
915
916
917bool Scope::MustAllocateInContext(Variable* var) {
918 // If var is accessed from an inner scope, or if there is a
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000919 // possibility that it might be accessed from the current or an inner
920 // scope (through an eval() call), it must be allocated in the
921 // context. Exception: temporary variables are not allocated in the
922 // context.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000923 return
924 var->mode() != Variable::TEMPORARY &&
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000925 (var->is_accessed_from_inner_scope() ||
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000926 scope_calls_eval_ || inner_scope_calls_eval_ ||
927 scope_contains_with_ || var->is_global());
928}
929
930
931bool Scope::HasArgumentsParameter() {
932 for (int i = 0; i < params_.length(); i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000933 if (params_[i]->name().is_identical_to(FACTORY->arguments_symbol()))
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000934 return true;
935 }
936 return false;
937}
938
939
940void Scope::AllocateStackSlot(Variable* var) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000941 var->set_rewrite(new Slot(var, Slot::LOCAL, num_stack_slots_++));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000942}
943
944
945void Scope::AllocateHeapSlot(Variable* var) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000946 var->set_rewrite(new Slot(var, Slot::CONTEXT, num_heap_slots_++));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000947}
948
949
950void Scope::AllocateParameterLocals() {
951 ASSERT(is_function_scope());
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000952 Variable* arguments = LocalLookup(FACTORY->arguments_symbol());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000953 ASSERT(arguments != NULL); // functions have 'arguments' declared implicitly
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000954
955 // Parameters are rewritten to arguments[i] if 'arguments' is used in
956 // a non-strict mode function. Strict mode code doesn't alias arguments.
957 bool rewrite_parameters = false;
958
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000959 if (MustAllocate(arguments) && !HasArgumentsParameter()) {
960 // 'arguments' is used. Unless there is also a parameter called
961 // 'arguments', we must be conservative and access all parameters via
962 // the arguments object: The i'th parameter is rewritten into
963 // '.arguments[i]' (*). If we have a parameter named 'arguments', a
964 // (new) value is always assigned to it via the function
965 // invocation. Then 'arguments' denotes that specific parameter value
966 // and cannot be used to access the parameters, which is why we don't
967 // need to rewrite in that case.
968 //
969 // (*) Instead of having a parameter called 'arguments', we may have an
970 // assignment to 'arguments' in the function body, at some arbitrary
971 // point in time (possibly through an 'eval()' call!). After that
972 // assignment any re-write of parameters would be invalid (was bug
973 // 881452). Thus, we introduce a shadow '.arguments'
974 // variable which also points to the arguments object. For rewrites we
975 // use '.arguments' which remains valid even if we assign to
976 // 'arguments'. To summarize: If we need to rewrite, we allocate an
977 // 'arguments' object dynamically upon function invocation. The compiler
978 // introduces 2 local variables 'arguments' and '.arguments', both of
979 // which originally point to the arguments object that was
980 // allocated. All parameters are rewritten into property accesses via
981 // the '.arguments' variable. Thus, any changes to properties of
982 // 'arguments' are reflected in the variables and vice versa. If the
983 // 'arguments' variable is changed, '.arguments' still points to the
984 // correct arguments object and the rewrites still work.
985
986 // We are using 'arguments'. Tell the code generator that is needs to
987 // allocate the arguments object by setting 'arguments_'.
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000988 arguments_ = arguments;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000989
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000990 // In strict mode 'arguments' does not alias formal parameters.
991 // Therefore in strict mode we allocate parameters as if 'arguments'
992 // were not used.
993 rewrite_parameters = !is_strict_mode();
994 }
995
996 if (rewrite_parameters) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000997 // We also need the '.arguments' shadow variable. Declare it and create
998 // and bind the corresponding proxy. It's ok to declare it only now
999 // because it's a local variable that is allocated after the parameters
1000 // have been allocated.
1001 //
1002 // Note: This is "almost" at temporary variable but we cannot use
1003 // NewTemporary() because the mode needs to be INTERNAL since this
1004 // variable may be allocated in the heap-allocated context (temporaries
1005 // are never allocated in the context).
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001006 arguments_shadow_ = new Variable(this,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001007 FACTORY->arguments_shadow_symbol(),
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001008 Variable::INTERNAL,
1009 true,
1010 Variable::ARGUMENTS);
1011 arguments_shadow_->set_is_used(true);
1012 temps_.Add(arguments_shadow_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001013
1014 // Allocate the parameters by rewriting them into '.arguments[i]' accesses.
1015 for (int i = 0; i < params_.length(); i++) {
1016 Variable* var = params_[i];
1017 ASSERT(var->scope() == this);
1018 if (MustAllocate(var)) {
1019 if (MustAllocateInContext(var)) {
1020 // It is ok to set this only now, because arguments is a local
1021 // variable that is allocated after the parameters have been
1022 // allocated.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001023 arguments_shadow_->MarkAsAccessedFromInnerScope();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001024 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001025 Property* rewrite =
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001026 new Property(new VariableProxy(arguments_shadow_),
1027 new Literal(Handle<Object>(Smi::FromInt(i))),
1028 RelocInfo::kNoPosition,
1029 Property::SYNTHETIC);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001030 rewrite->set_is_arguments_access(true);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001031 var->set_rewrite(rewrite);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001032 }
1033 }
1034
1035 } else {
1036 // The arguments object is not used, so we can access parameters directly.
1037 // The same parameter may occur multiple times in the parameters_ list.
1038 // If it does, and if it is not copied into the context object, it must
1039 // receive the highest parameter index for that parameter; thus iteration
1040 // order is relevant!
1041 for (int i = 0; i < params_.length(); i++) {
1042 Variable* var = params_[i];
1043 ASSERT(var->scope() == this);
1044 if (MustAllocate(var)) {
1045 if (MustAllocateInContext(var)) {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001046 ASSERT(var->rewrite() == NULL ||
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001047 (var->AsSlot() != NULL &&
1048 var->AsSlot()->type() == Slot::CONTEXT));
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001049 if (var->rewrite() == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001050 // Only set the heap allocation if the parameter has not
1051 // been allocated yet.
1052 AllocateHeapSlot(var);
1053 }
1054 } else {
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001055 ASSERT(var->rewrite() == NULL ||
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001056 (var->AsSlot() != NULL &&
1057 var->AsSlot()->type() == Slot::PARAMETER));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001058 // Set the parameter index always, even if the parameter
1059 // was seen before! (We need to access the actual parameter
1060 // supplied for the last occurrence of a multiply declared
1061 // parameter.)
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001062 var->set_rewrite(new Slot(var, Slot::PARAMETER, i));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001063 }
1064 }
1065 }
1066 }
1067}
1068
1069
1070void Scope::AllocateNonParameterLocal(Variable* var) {
1071 ASSERT(var->scope() == this);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001072 ASSERT(var->rewrite() == NULL ||
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001073 (!var->IsVariable(FACTORY->result_symbol())) ||
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001074 (var->AsSlot() == NULL || var->AsSlot()->type() != Slot::LOCAL));
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001075 if (var->rewrite() == NULL && MustAllocate(var)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001076 if (MustAllocateInContext(var)) {
1077 AllocateHeapSlot(var);
1078 } else {
1079 AllocateStackSlot(var);
1080 }
1081 }
1082}
1083
1084
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001085void Scope::AllocateNonParameterLocals() {
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001086 // All variables that have no rewrite yet are non-parameter locals.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001087 for (int i = 0; i < temps_.length(); i++) {
1088 AllocateNonParameterLocal(temps_[i]);
1089 }
1090
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001091 for (VariableMap::Entry* p = variables_.Start();
1092 p != NULL;
1093 p = variables_.Next(p)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001094 Variable* var = reinterpret_cast<Variable*>(p->value);
1095 AllocateNonParameterLocal(var);
1096 }
1097
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001098 // For now, function_ must be allocated at the very end. If it gets
1099 // allocated in the context, it must be the last slot in the context,
1100 // because of the current ScopeInfo implementation (see
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001101 // ScopeInfo::ScopeInfo(FunctionScope* scope) constructor).
1102 if (function_ != NULL) {
1103 AllocateNonParameterLocal(function_);
1104 }
1105}
1106
1107
1108void Scope::AllocateVariablesRecursively() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001109 // Allocate variables for inner scopes.
1110 for (int i = 0; i < inner_scopes_.length(); i++) {
1111 inner_scopes_[i]->AllocateVariablesRecursively();
1112 }
1113
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001114 // If scope is already resolved, we still need to allocate
1115 // variables in inner scopes which might not had been resolved yet.
1116 if (resolved()) return;
1117 // The number of slots required for variables.
1118 num_stack_slots_ = 0;
1119 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
1120
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001121 // Allocate variables for this scope.
1122 // Parameters must be allocated first, if any.
1123 if (is_function_scope()) AllocateParameterLocals();
1124 AllocateNonParameterLocals();
1125
1126 // Allocate context if necessary.
1127 bool must_have_local_context = false;
1128 if (scope_calls_eval_ || scope_contains_with_) {
1129 // The context for the eval() call or 'with' statement in this scope.
1130 // Unless we are in the global or an eval scope, we need a local
1131 // context even if we didn't statically allocate any locals in it,
1132 // and the compiler will access the context variable. If we are
1133 // not in an inner scope, the scope is provided from the outside.
1134 must_have_local_context = is_function_scope();
1135 }
1136
1137 // If we didn't allocate any locals in the local context, then we only
1138 // need the minimal number of slots if we must have a local context.
1139 if (num_heap_slots_ == Context::MIN_CONTEXT_SLOTS &&
1140 !must_have_local_context) {
1141 num_heap_slots_ = 0;
1142 }
1143
1144 // Allocation done.
1145 ASSERT(num_heap_slots_ == 0 || num_heap_slots_ >= Context::MIN_CONTEXT_SLOTS);
1146}
1147
1148} } // namespace v8::internal