Ben Murdoch | f87a203 | 2010-10-22 12:50:53 +0100 | [diff] [blame] | 1 | // Copyright 2010 the V8 project authors. All rights reserved. |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 2 | // 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 | |
Ben Murdoch | f87a203 | 2010-10-22 12:50:53 +0100 | [diff] [blame] | 30 | #include "scopes.h" |
| 31 | |
| 32 | #include "bootstrapper.h" |
| 33 | #include "compiler.h" |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 34 | #include "prettyprinter.h" |
| 35 | #include "scopeinfo.h" |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 36 | |
| 37 | namespace v8 { |
| 38 | namespace internal { |
| 39 | |
| 40 | // ---------------------------------------------------------------------------- |
| 41 | // A Zone allocator for use with LocalsMap. |
| 42 | |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 43 | // TODO(isolates): It is probably worth it to change the Allocator class to |
| 44 | // take a pointer to an isolate. |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 45 | class ZoneAllocator: public Allocator { |
| 46 | public: |
| 47 | /* nothing to do */ |
| 48 | virtual ~ZoneAllocator() {} |
| 49 | |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 50 | virtual void* New(size_t size) { return ZONE->New(static_cast<int>(size)); } |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 51 | |
| 52 | /* ignored - Zone is freed in one fell swoop */ |
| 53 | virtual void Delete(void* p) {} |
| 54 | }; |
| 55 | |
| 56 | |
| 57 | static 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 | |
| 69 | static 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 |
| 79 | VariableMap::VariableMap(bool gotta_love_static_overloading) : HashMap() {} |
| 80 | |
| 81 | VariableMap::VariableMap() : HashMap(Match, &LocalsMapAllocator, 8) {} |
| 82 | VariableMap::~VariableMap() {} |
| 83 | |
| 84 | |
| 85 | Variable* VariableMap::Declare(Scope* scope, |
| 86 | Handle<String> name, |
| 87 | Variable::Mode mode, |
| 88 | bool is_valid_lhs, |
| 89 | Variable::Kind kind) { |
| 90 | 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()); |
| 94 | p->value = new Variable(scope, name, mode, is_valid_lhs, kind); |
| 95 | } |
| 96 | return reinterpret_cast<Variable*>(p->value); |
| 97 | } |
| 98 | |
| 99 | |
| 100 | Variable* VariableMap::Lookup(Handle<String> name) { |
| 101 | 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 |
| 116 | Scope::Scope(Type type) |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 117 | : inner_scopes_(0), |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 118 | variables_(false), |
| 119 | temps_(0), |
| 120 | params_(0), |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 121 | unresolved_(0), |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 122 | decls_(0) { |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame^] | 123 | SetDefaults(type, NULL, Handle<SerializedScopeInfo>::null()); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 124 | ASSERT(!resolved()); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | |
| 128 | Scope::Scope(Scope* outer_scope, Type type) |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 129 | : inner_scopes_(4), |
| 130 | variables_(), |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 131 | temps_(4), |
| 132 | params_(4), |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 133 | unresolved_(16), |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 134 | decls_(4) { |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame^] | 135 | SetDefaults(type, outer_scope, Handle<SerializedScopeInfo>::null()); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 136 | // 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()); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 141 | ASSERT(!resolved()); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame^] | 145 | Scope::Scope(Scope* inner_scope, Handle<SerializedScopeInfo> scope_info) |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 146 | : inner_scopes_(4), |
| 147 | variables_(), |
| 148 | temps_(4), |
| 149 | params_(4), |
| 150 | unresolved_(16), |
| 151 | decls_(4) { |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame^] | 152 | ASSERT(!scope_info.is_null()); |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 153 | SetDefaults(FUNCTION_SCOPE, NULL, scope_info); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 154 | ASSERT(resolved()); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 155 | if (scope_info->HasHeapAllocatedLocals()) { |
| 156 | num_heap_slots_ = scope_info_->NumberOfContextSlots(); |
| 157 | } |
| 158 | |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 159 | AddInnerScope(inner_scope); |
| 160 | |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 161 | // 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. |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 164 | Isolate* isolate = Isolate::Current(); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 165 | Variable::Mode mode; |
| 166 | int arguments_shadow_index = |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 167 | scope_info_->ContextSlotIndex( |
| 168 | isolate->heap()->arguments_shadow_symbol(), &mode); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 169 | if (arguments_shadow_index >= 0) { |
| 170 | ASSERT(mode == Variable::INTERNAL); |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 171 | arguments_shadow_ = new Variable( |
| 172 | this, |
| 173 | isolate->factory()->arguments_shadow_symbol(), |
| 174 | Variable::INTERNAL, |
| 175 | true, |
| 176 | Variable::ARGUMENTS); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 177 | arguments_shadow_->set_rewrite( |
| 178 | new Slot(arguments_shadow_, Slot::CONTEXT, arguments_shadow_index)); |
| 179 | arguments_shadow_->set_is_used(true); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame^] | 184 | void 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 | |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 211 | Scope* 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(); |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame^] | 223 | Handle<SerializedScopeInfo> scope_info(current->shared()->scope_info()); |
| 224 | if (*scope_info != SerializedScopeInfo::Empty()) { |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 225 | 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 | |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 239 | |
Ben Murdoch | f87a203 | 2010-10-22 12:50:53 +0100 | [diff] [blame] | 240 | bool Scope::Analyze(CompilationInfo* info) { |
| 241 | ASSERT(info->function() != NULL); |
| 242 | Scope* top = info->function()->scope(); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 243 | |
Ben Murdoch | f87a203 | 2010-10-22 12:50:53 +0100 | [diff] [blame] | 244 | while (top->outer_scope() != NULL) top = top->outer_scope(); |
| 245 | top->AllocateVariables(info->calling_context()); |
| 246 | |
| 247 | #ifdef DEBUG |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 248 | if (info->isolate()->bootstrapper()->IsActive() |
Ben Murdoch | f87a203 | 2010-10-22 12:50:53 +0100 | [diff] [blame] | 249 | ? 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 | |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 260 | void Scope::Initialize(bool inside_with) { |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 261 | ASSERT(!resolved()); |
| 262 | |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 263 | // 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 |
| 279 | Variable* var = |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 280 | variables_.Declare(this, FACTORY->this_symbol(), Variable::VAR, |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 281 | false, Variable::THIS); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 282 | var->set_rewrite(new Slot(var, Slot::PARAMETER, -1)); |
Leon Clarke | e46be81 | 2010-01-19 14:06:41 +0000 | [diff] [blame] | 283 | receiver_ = var; |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 284 | |
| 285 | if (is_function_scope()) { |
| 286 | // Declare 'arguments' variable which exists in all functions. |
| 287 | // Note that it might never be accessed, in which case it won't be |
| 288 | // allocated during variable allocation. |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 289 | variables_.Declare(this, FACTORY->arguments_symbol(), Variable::VAR, |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 290 | true, Variable::ARGUMENTS); |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 295 | Variable* Scope::LocalLookup(Handle<String> name) { |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 296 | 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 |
| 303 | // as it is implicitly present in any scope. |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 304 | ASSERT(*name != *FACTORY->arguments_symbol()); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 305 | |
| 306 | // Assert that there is no local slot with the given name. |
| 307 | ASSERT(scope_info_->StackSlotIndex(*name) < 0); |
| 308 | |
| 309 | // Check context slot lookup. |
| 310 | Variable::Mode mode; |
| 311 | int index = scope_info_->ContextSlotIndex(*name, &mode); |
| 312 | 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; |
| 317 | } |
| 318 | |
| 319 | 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; |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | |
| 349 | Variable* Scope::Lookup(Handle<String> name) { |
| 350 | for (Scope* scope = this; |
| 351 | scope != NULL; |
| 352 | scope = scope->outer_scope()) { |
| 353 | Variable* var = scope->LocalLookup(name); |
| 354 | if (var != NULL) return var; |
| 355 | } |
| 356 | return NULL; |
| 357 | } |
| 358 | |
| 359 | |
| 360 | Variable* Scope::DeclareFunctionVar(Handle<String> name) { |
| 361 | ASSERT(is_function_scope() && function_ == NULL); |
| 362 | function_ = new Variable(this, name, Variable::CONST, true, Variable::NORMAL); |
| 363 | return function_; |
| 364 | } |
| 365 | |
| 366 | |
| 367 | Variable* Scope::DeclareLocal(Handle<String> name, Variable::Mode mode) { |
| 368 | // DYNAMIC variables are introduces during variable allocation, |
| 369 | // INTERNAL variables are allocated explicitly, and TEMPORARY |
| 370 | // variables are allocated via NewTemporary(). |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 371 | ASSERT(!resolved()); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 372 | ASSERT(mode == Variable::VAR || mode == Variable::CONST); |
| 373 | return variables_.Declare(this, name, mode, true, Variable::NORMAL); |
| 374 | } |
| 375 | |
| 376 | |
| 377 | Variable* Scope::DeclareGlobal(Handle<String> name) { |
| 378 | ASSERT(is_global_scope()); |
Leon Clarke | e46be81 | 2010-01-19 14:06:41 +0000 | [diff] [blame] | 379 | return variables_.Declare(this, name, Variable::DYNAMIC_GLOBAL, true, |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 380 | Variable::NORMAL); |
| 381 | } |
| 382 | |
| 383 | |
| 384 | void Scope::AddParameter(Variable* var) { |
| 385 | ASSERT(is_function_scope()); |
| 386 | ASSERT(LocalLookup(var->name()) == var); |
| 387 | params_.Add(var); |
| 388 | } |
| 389 | |
| 390 | |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame^] | 391 | VariableProxy* Scope::NewUnresolved(Handle<String> name, |
| 392 | bool inside_with, |
| 393 | int position) { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 394 | // Note that we must not share the unresolved variables with |
| 395 | // the same name because they may be removed selectively via |
| 396 | // RemoveUnresolved(). |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 397 | ASSERT(!resolved()); |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame^] | 398 | VariableProxy* proxy = new VariableProxy(name, false, inside_with, position); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 399 | unresolved_.Add(proxy); |
| 400 | return proxy; |
| 401 | } |
| 402 | |
| 403 | |
| 404 | void 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 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 416 | Variable* Scope::NewTemporary(Handle<String> name) { |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 417 | ASSERT(!resolved()); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 418 | Variable* var = |
| 419 | new Variable(this, name, Variable::TEMPORARY, true, Variable::NORMAL); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 420 | temps_.Add(var); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 421 | return var; |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | |
| 425 | void Scope::AddDeclaration(Declaration* declaration) { |
| 426 | decls_.Add(declaration); |
| 427 | } |
| 428 | |
| 429 | |
| 430 | void Scope::SetIllegalRedeclaration(Expression* expression) { |
Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 431 | // Record only the first illegal redeclaration. |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 432 | if (!HasIllegalRedeclaration()) { |
| 433 | illegal_redecl_ = expression; |
| 434 | } |
| 435 | ASSERT(HasIllegalRedeclaration()); |
| 436 | } |
| 437 | |
| 438 | |
| 439 | void Scope::VisitIllegalRedeclaration(AstVisitor* visitor) { |
| 440 | ASSERT(HasIllegalRedeclaration()); |
| 441 | illegal_redecl_->Accept(visitor); |
| 442 | } |
| 443 | |
| 444 | |
| 445 | template<class Allocator> |
| 446 | void 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]; |
Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 453 | if (var->is_used()) { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 454 | locals->Add(var); |
| 455 | } |
| 456 | } |
| 457 | for (VariableMap::Entry* p = variables_.Start(); |
| 458 | p != NULL; |
| 459 | p = variables_.Next(p)) { |
| 460 | Variable* var = reinterpret_cast<Variable*>(p->value); |
Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 461 | if (var->is_used()) { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 462 | locals->Add(var); |
| 463 | } |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | |
| 468 | // Make sure the method gets instantiated by the template system. |
| 469 | template void Scope::CollectUsedVariables( |
| 470 | List<Variable*, FreeStoreAllocationPolicy>* locals); |
| 471 | template void Scope::CollectUsedVariables( |
| 472 | List<Variable*, PreallocatedStorage>* locals); |
| 473 | template void Scope::CollectUsedVariables( |
| 474 | List<Variable*, ZoneListAllocationPolicy>* locals); |
| 475 | |
| 476 | |
| 477 | void Scope::AllocateVariables(Handle<Context> context) { |
| 478 | 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). |
| 486 | bool eval_scope = is_eval_scope(); |
| 487 | PropagateScopeInfo(eval_scope, eval_scope); |
| 488 | |
| 489 | // 2) Resolve variables. |
| 490 | Scope* global_scope = NULL; |
| 491 | if (is_global_scope()) global_scope = this; |
| 492 | ResolveVariablesRecursively(global_scope, context); |
| 493 | |
| 494 | // 3) Allocate variables. |
| 495 | AllocateVariablesRecursively(); |
| 496 | } |
| 497 | |
| 498 | |
| 499 | bool Scope::AllowsLazyCompilation() const { |
| 500 | return !force_eager_compilation_ && HasTrivialOuterContext(); |
| 501 | } |
| 502 | |
| 503 | |
| 504 | bool 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 | |
| 518 | bool 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 | |
| 528 | int 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 |
| 539 | static 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 | |
| 550 | static void Indent(int n, const char* str) { |
| 551 | PrintF("%*s%s", n, "", str); |
| 552 | } |
| 553 | |
| 554 | |
| 555 | static void PrintName(Handle<String> name) { |
| 556 | SmartPointer<char> s = name->ToCString(DISALLOW_NULLS); |
| 557 | PrintF("%s", *s); |
| 558 | } |
| 559 | |
| 560 | |
| 561 | static void PrintVar(PrettyPrinter* printer, int indent, Variable* var) { |
Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 562 | if (var->is_used() || var->rewrite() != NULL) { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 563 | Indent(indent, Variable::Mode2String(var->mode())); |
| 564 | PrintF(" "); |
| 565 | PrintName(var->name()); |
| 566 | PrintF("; // "); |
Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 567 | 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"); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 572 | PrintF("\n"); |
| 573 | } |
| 574 | } |
| 575 | |
| 576 | |
| 577 | static void PrintMap(PrettyPrinter* printer, int indent, VariableMap* map) { |
| 578 | for (VariableMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) { |
| 579 | Variable* var = reinterpret_cast<Variable*>(p->value); |
| 580 | PrintVar(printer, indent, var); |
| 581 | } |
| 582 | } |
| 583 | |
| 584 | |
| 585 | void 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"); |
| 624 | if (outer_scope_is_eval_scope_) { |
| 625 | Indent(n1, "// outer scope is 'eval' scope\n"); |
| 626 | } |
| 627 | 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"); |
| 645 | PrintMap(&printer, n1, &variables_); |
| 646 | |
| 647 | 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 | } |
| 653 | |
| 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 | |
| 667 | Variable* Scope::NonLocal(Handle<String> name, Variable::Mode mode) { |
| 668 | if (dynamics_ == NULL) dynamics_ = new DynamicScopePart(); |
| 669 | VariableMap* map = dynamics_->GetMap(mode); |
| 670 | Variable* var = map->Lookup(name); |
| 671 | if (var == NULL) { |
| 672 | // Declare a new non-local. |
| 673 | var = map->Declare(NULL, name, mode, true, Variable::NORMAL); |
| 674 | // Allocate it by giving it a dynamic lookup. |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 675 | var->set_rewrite(new Slot(var, Slot::LOOKUP, -1)); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 676 | } |
| 677 | return var; |
| 678 | } |
| 679 | |
| 680 | |
| 681 | // Lookup a variable starting with this scope. The result is either |
Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 682 | // 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). |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 687 | Variable* Scope::LookupRecursive(Handle<String> name, |
| 688 | bool inner_lookup, |
| 689 | Variable** invalidated_local) { |
| 690 | // 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. |
| 697 | Variable* var = LocalLookup(name); |
| 698 | |
| 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 |
| 715 | // in between this scope and the next outer scope.) |
| 716 | if (function_ != NULL && function_->name().is_identical_to(name)) { |
| 717 | var = function_; |
| 718 | |
| 719 | } else if (outer_scope_ != NULL) { |
| 720 | var = outer_scope_->LookupRecursive(name, true, invalidated_local); |
| 721 | // 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. |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 737 | if (inner_lookup) { |
| 738 | var->MarkAsAccessedFromInnerScope(); |
| 739 | } |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 740 | |
Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 741 | // 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. |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 744 | if (guess) { |
Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 745 | if (!var->is_global()) *invalidated_local = var; |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 746 | var = NULL; |
| 747 | } |
| 748 | |
| 749 | return var; |
| 750 | } |
| 751 | |
| 752 | |
| 753 | void Scope::ResolveVariable(Scope* global_scope, |
| 754 | Handle<Context> context, |
| 755 | VariableProxy* proxy) { |
| 756 | 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. |
| 763 | Variable* invalidated_local = NULL; |
| 764 | Variable* var = LookupRecursive(proxy->name(), false, &invalidated_local); |
| 765 | |
| 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). |
| 773 | var = NonLocal(proxy->name(), Variable::DYNAMIC); |
| 774 | |
| 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). |
| 786 | if (is_global_scope() || |
| 787 | !(scope_inside_with_ || outer_scope_is_eval_scope_ || |
| 788 | scope_calls_eval_ || outer_scope_calls_eval_)) { |
| 789 | // We must have a global variable. |
| 790 | ASSERT(global_scope != NULL); |
| 791 | var = global_scope->DeclareGlobal(proxy->name()); |
| 792 | |
| 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); |
| 824 | } |
| 825 | } |
| 826 | } |
| 827 | |
| 828 | proxy->BindTo(var); |
| 829 | } |
| 830 | |
| 831 | |
| 832 | void Scope::ResolveVariablesRecursively(Scope* global_scope, |
| 833 | Handle<Context> context) { |
| 834 | 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++) { |
| 838 | ResolveVariable(global_scope, context, unresolved_[i]); |
| 839 | } |
| 840 | |
| 841 | // Resolve unresolved variables for inner scopes. |
| 842 | for (int i = 0; i < inner_scopes_.length(); i++) { |
| 843 | inner_scopes_[i]->ResolveVariablesRecursively(global_scope, context); |
| 844 | } |
| 845 | } |
| 846 | |
| 847 | |
| 848 | bool Scope::PropagateScopeInfo(bool outer_scope_calls_eval, |
| 849 | bool outer_scope_is_eval_scope) { |
| 850 | if (outer_scope_calls_eval) { |
| 851 | outer_scope_calls_eval_ = true; |
| 852 | } |
| 853 | |
| 854 | 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_; |
| 860 | for (int i = 0; i < inner_scopes_.length(); i++) { |
| 861 | Scope* inner_scope = inner_scopes_[i]; |
| 862 | if (inner_scope->PropagateScopeInfo(calls_eval, is_eval)) { |
| 863 | 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 | |
| 874 | bool Scope::MustAllocate(Variable* var) { |
| 875 | // 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. |
| 878 | if ((var->is_this() || var->name()->length() > 0) && |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 879 | (var->is_accessed_from_inner_scope() || |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 880 | scope_calls_eval_ || inner_scope_calls_eval_ || |
| 881 | scope_contains_with_)) { |
Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 882 | var->set_is_used(true); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 883 | } |
| 884 | // Global variables do not need to be allocated. |
Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 885 | return !var->is_global() && var->is_used(); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | |
| 889 | bool Scope::MustAllocateInContext(Variable* var) { |
| 890 | // If var is accessed from an inner scope, or if there is a |
| 891 | // 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. |
| 895 | return |
| 896 | var->mode() != Variable::TEMPORARY && |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 897 | (var->is_accessed_from_inner_scope() || |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 898 | scope_calls_eval_ || inner_scope_calls_eval_ || |
| 899 | scope_contains_with_ || var->is_global()); |
| 900 | } |
| 901 | |
| 902 | |
| 903 | bool Scope::HasArgumentsParameter() { |
| 904 | for (int i = 0; i < params_.length(); i++) { |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 905 | if (params_[i]->name().is_identical_to(FACTORY->arguments_symbol())) |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 906 | return true; |
| 907 | } |
| 908 | return false; |
| 909 | } |
| 910 | |
| 911 | |
| 912 | void Scope::AllocateStackSlot(Variable* var) { |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 913 | var->set_rewrite(new Slot(var, Slot::LOCAL, num_stack_slots_++)); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | |
| 917 | void Scope::AllocateHeapSlot(Variable* var) { |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 918 | var->set_rewrite(new Slot(var, Slot::CONTEXT, num_heap_slots_++)); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | |
| 922 | void Scope::AllocateParameterLocals() { |
| 923 | ASSERT(is_function_scope()); |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 924 | Variable* arguments = LocalLookup(FACTORY->arguments_symbol()); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 925 | ASSERT(arguments != NULL); // functions have 'arguments' declared implicitly |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 926 | |
| 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 | |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 931 | 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_'. |
Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 960 | arguments_ = arguments; |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 961 | |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 962 | // 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) { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 969 | // 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). |
Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 978 | arguments_shadow_ = new Variable(this, |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 979 | FACTORY->arguments_shadow_symbol(), |
Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 980 | Variable::INTERNAL, |
| 981 | true, |
| 982 | Variable::ARGUMENTS); |
| 983 | arguments_shadow_->set_is_used(true); |
| 984 | temps_.Add(arguments_shadow_); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 985 | |
| 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. |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 995 | arguments_shadow_->MarkAsAccessedFromInnerScope(); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 996 | } |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 997 | Property* rewrite = |
Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 998 | new Property(new VariableProxy(arguments_shadow_), |
| 999 | new Literal(Handle<Object>(Smi::FromInt(i))), |
| 1000 | RelocInfo::kNoPosition, |
| 1001 | Property::SYNTHETIC); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 1002 | rewrite->set_is_arguments_access(true); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 1003 | var->set_rewrite(rewrite); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1004 | } |
| 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)) { |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 1018 | ASSERT(var->rewrite() == NULL || |
Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 1019 | (var->AsSlot() != NULL && |
| 1020 | var->AsSlot()->type() == Slot::CONTEXT)); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 1021 | if (var->rewrite() == NULL) { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1022 | // Only set the heap allocation if the parameter has not |
| 1023 | // been allocated yet. |
| 1024 | AllocateHeapSlot(var); |
| 1025 | } |
| 1026 | } else { |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 1027 | ASSERT(var->rewrite() == NULL || |
Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 1028 | (var->AsSlot() != NULL && |
| 1029 | var->AsSlot()->type() == Slot::PARAMETER)); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1030 | // 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.) |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 1034 | var->set_rewrite(new Slot(var, Slot::PARAMETER, i)); |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1035 | } |
| 1036 | } |
| 1037 | } |
| 1038 | } |
| 1039 | } |
| 1040 | |
| 1041 | |
| 1042 | void Scope::AllocateNonParameterLocal(Variable* var) { |
| 1043 | ASSERT(var->scope() == this); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 1044 | ASSERT(var->rewrite() == NULL || |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 1045 | (!var->IsVariable(FACTORY->result_symbol())) || |
Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 1046 | (var->AsSlot() == NULL || var->AsSlot()->type() != Slot::LOCAL)); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 1047 | if (var->rewrite() == NULL && MustAllocate(var)) { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1048 | if (MustAllocateInContext(var)) { |
| 1049 | AllocateHeapSlot(var); |
| 1050 | } else { |
| 1051 | AllocateStackSlot(var); |
| 1052 | } |
| 1053 | } |
| 1054 | } |
| 1055 | |
| 1056 | |
| 1057 | void Scope::AllocateNonParameterLocals() { |
| 1058 | // All variables that have no rewrite yet are non-parameter locals. |
| 1059 | for (int i = 0; i < temps_.length(); i++) { |
| 1060 | AllocateNonParameterLocal(temps_[i]); |
| 1061 | } |
| 1062 | |
| 1063 | for (VariableMap::Entry* p = variables_.Start(); |
| 1064 | p != NULL; |
| 1065 | p = variables_.Next(p)) { |
| 1066 | Variable* var = reinterpret_cast<Variable*>(p->value); |
| 1067 | AllocateNonParameterLocal(var); |
| 1068 | } |
| 1069 | |
| 1070 | // 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 |
| 1073 | // ScopeInfo::ScopeInfo(FunctionScope* scope) constructor). |
| 1074 | if (function_ != NULL) { |
| 1075 | AllocateNonParameterLocal(function_); |
| 1076 | } |
| 1077 | } |
| 1078 | |
| 1079 | |
| 1080 | void Scope::AllocateVariablesRecursively() { |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1081 | // Allocate variables for inner scopes. |
| 1082 | for (int i = 0; i < inner_scopes_.length(); i++) { |
| 1083 | inner_scopes_[i]->AllocateVariablesRecursively(); |
| 1084 | } |
| 1085 | |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 1086 | // 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 | |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1093 | // 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 |