contexts.cc 19.1 KB
Newer Older
1
// Copyright 2011 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4

5
#include "src/contexts.h"
6

7
#include "src/ast/modules.h"
8
#include "src/bootstrapper.h"
9
#include "src/debug/debug.h"
10
#include "src/isolate-inl.h"
11

12 13
namespace v8 {
namespace internal {
14

15

16 17 18
Handle<ScriptContextTable> ScriptContextTable::Extend(
    Handle<ScriptContextTable> table, Handle<Context> script_context) {
  Handle<ScriptContextTable> result;
19 20 21
  int used = table->used();
  int length = table->length();
  CHECK(used >= 0 && length > 0 && used < length);
22
  if (used + kFirstContextSlotIndex == length) {
23
    CHECK(length < Smi::kMaxValue / 2);
24 25 26 27 28
    Isolate* isolate = table->GetIsolate();
    Handle<FixedArray> copy =
        isolate->factory()->CopyFixedArrayAndGrow(table, length);
    copy->set_map(isolate->heap()->script_context_table_map());
    result = Handle<ScriptContextTable>::cast(copy);
29 30 31 32 33
  } else {
    result = table;
  }
  result->set_used(used + 1);

34
  DCHECK(script_context->IsScriptContext());
35
  result->set(used + kFirstContextSlotIndex, *script_context);
36 37 38 39
  return result;
}


40
bool ScriptContextTable::Lookup(Handle<ScriptContextTable> table,
41 42 43
                                Handle<String> name, LookupResult* result) {
  for (int i = 0; i < table->used(); i++) {
    Handle<Context> context = GetContext(table, i);
44
    DCHECK(context->IsScriptContext());
45
    Handle<ScopeInfo> scope_info(context->scope_info());
46
    int slot_index = ScopeInfo::ContextSlotIndex(
47
        scope_info, name, &result->mode, &result->init_flag,
48 49
        &result->maybe_assigned_flag);

50
    if (slot_index >= 0) {
51 52 53 54 55 56 57 58 59
      result->context_index = i;
      result->slot_index = slot_index;
      return true;
    }
  }
  return false;
}


60
bool Context::is_declaration_context() {
61 62
  if (IsFunctionContext() || IsNativeContext() || IsScriptContext() ||
      IsModuleContext()) {
63 64
    return true;
  }
65 66
  if (IsEvalContext())
    return closure()->shared()->language_mode() == LanguageMode::kStrict;
67 68 69 70
  if (!IsBlockContext()) return false;
  Object* ext = extension();
  // If we have the special extension, we immediately know it must be a
  // declaration scope. That's just a small performance shortcut.
71 72
  return ext->IsContextExtension() ||
         ScopeInfo::cast(ext)->is_declaration_scope();
73 74 75
}


76 77
Context* Context::declaration_context() {
  Context* current = this;
78
  while (!current->is_declaration_context()) {
79 80 81 82 83
    current = current->previous();
  }
  return current;
}

84 85 86
Context* Context::closure_context() {
  Context* current = this;
  while (!current->IsFunctionContext() && !current->IsScriptContext() &&
87 88
         !current->IsModuleContext() && !current->IsNativeContext() &&
         !current->IsEvalContext()) {
89 90 91 92 93
    current = current->previous();
    DCHECK(current->closure() == closure());
  }
  return current;
}
94

95
JSObject* Context::extension_object() {
96 97
  DCHECK(IsNativeContext() || IsFunctionContext() || IsBlockContext() ||
         IsEvalContext());
98
  HeapObject* object = extension();
99
  if (object->IsTheHole(GetIsolate())) return nullptr;
100
  if (IsBlockContext()) {
101 102
    if (!object->IsContextExtension()) return nullptr;
    object = JSObject::cast(ContextExtension::cast(object)->extension());
103 104 105 106 107 108 109
  }
  DCHECK(object->IsJSContextExtensionObject() ||
         (IsNativeContext() && object->IsJSGlobalObject()));
  return JSObject::cast(object);
}

JSReceiver* Context::extension_receiver() {
110
  DCHECK(IsNativeContext() || IsWithContext() || IsEvalContext() ||
111
         IsFunctionContext() || IsBlockContext());
112 113 114
  return IsWithContext() ? JSReceiver::cast(
                               ContextExtension::cast(extension())->extension())
                         : extension_object();
115 116 117
}

ScopeInfo* Context::scope_info() {
jochen's avatar
jochen committed
118
  DCHECK(!IsNativeContext());
119
  if (IsFunctionContext() || IsModuleContext() || IsEvalContext()) {
jochen's avatar
jochen committed
120 121
    return closure()->shared()->scope_info();
  }
122
  HeapObject* object = extension();
123
  if (object->IsContextExtension()) {
124 125
    DCHECK(IsBlockContext() || IsCatchContext() || IsWithContext() ||
           IsDebugEvaluateContext());
126
    object = ContextExtension::cast(object)->scope_info();
127 128 129 130
  }
  return ScopeInfo::cast(object);
}

131
Module* Context::module() {
132 133 134 135
  Context* current = this;
  while (!current->IsModuleContext()) {
    current = current->previous();
  }
136
  return Module::cast(current->extension());
137
}
138 139 140

String* Context::catch_name() {
  DCHECK(IsCatchContext());
141
  return String::cast(ContextExtension::cast(extension())->extension());
142 143 144
}


145 146 147 148 149
JSGlobalObject* Context::global_object() {
  return JSGlobalObject::cast(native_context()->extension());
}


150
Context* Context::script_context() {
151
  Context* current = this;
152
  while (!current->IsScriptContext()) {
153 154 155 156 157 158
    current = current->previous();
  }
  return current;
}


159
JSObject* Context::global_proxy() {
160
  return native_context()->global_proxy_object();
161 162
}

163

164
void Context::set_global_proxy(JSObject* object) {
165
  native_context()->set_global_proxy_object(object);
166 167 168
}


169 170 171 172
/**
 * Lookups a property in an object environment, taking the unscopables into
 * account. This is used For HasBinding spec algorithms for ObjectEnvironment.
 */
173
static Maybe<bool> UnscopableLookup(LookupIterator* it) {
174 175
  Isolate* isolate = it->isolate();

176
  Maybe<bool> found = JSReceiver::HasProperty(it);
177
  if (found.IsNothing() || !found.FromJust()) return found;
178 179

  Handle<Object> unscopables;
180 181
  ASSIGN_RETURN_ON_EXCEPTION_VALUE(
      isolate, unscopables,
182 183
      JSReceiver::GetProperty(Handle<JSReceiver>::cast(it->GetReceiver()),
                              isolate->factory()->unscopables_symbol()),
184 185
      Nothing<bool>());
  if (!unscopables->IsJSReceiver()) return Just(true);
186
  Handle<Object> blacklist;
187 188 189 190 191
  ASSIGN_RETURN_ON_EXCEPTION_VALUE(
      isolate, blacklist,
      JSReceiver::GetProperty(Handle<JSReceiver>::cast(unscopables),
                              it->name()),
      Nothing<bool>());
192
  return Just(!blacklist->BooleanValue());
193 194
}

195 196
static PropertyAttributes GetAttributesForMode(VariableMode mode) {
  DCHECK(IsDeclaredVariableMode(mode));
197
  return mode == CONST ? READ_ONLY : NONE;
198 199
}

200 201
Handle<Object> Context::Lookup(Handle<String> name, ContextLookupFlags flags,
                               int* index, PropertyAttributes* attributes,
202
                               InitializationFlag* init_flag,
203 204
                               VariableMode* variable_mode,
                               bool* is_sloppy_function_name) {
205 206
  Isolate* isolate = GetIsolate();
  Handle<Context> context(this, isolate);
207 208

  bool follow_context_chain = (flags & FOLLOW_CONTEXT_CHAIN) != 0;
209
  bool failed_whitelist = false;
210
  *index = kNotFound;
211
  *attributes = ABSENT;
212
  *init_flag = kCreatedInitialized;
213
  *variable_mode = VAR;
214 215 216
  if (is_sloppy_function_name != nullptr) {
    *is_sloppy_function_name = false;
  }
217 218 219 220 221 222 223 224 225

  if (FLAG_trace_contexts) {
    PrintF("Context::Lookup(");
    name->ShortPrint();
    PrintF(")\n");
  }

  do {
    if (FLAG_trace_contexts) {
226
      PrintF(" - looking in context %p", reinterpret_cast<void*>(*context));
227
      if (context->IsScriptContext()) PrintF(" (script context)");
228
      if (context->IsNativeContext()) PrintF(" (native context)");
229 230 231
      PrintF("\n");
    }

232
    // 1. Check global objects, subjects of with, and extension objects.
233 234
    DCHECK_IMPLIES(context->IsEvalContext(),
                   context->extension()->IsTheHole(isolate));
235 236
    if ((context->IsNativeContext() ||
         (context->IsWithContext() && ((flags & SKIP_WITH_CONTEXT) == 0)) ||
237 238 239
         context->IsFunctionContext() || context->IsBlockContext()) &&
        context->extension_receiver() != nullptr) {
      Handle<JSReceiver> object(context->extension_receiver());
240 241 242

      if (context->IsNativeContext()) {
        if (FLAG_trace_contexts) {
243
          PrintF(" - trying other script contexts\n");
244
        }
245 246 247 248 249
        // Try other script contexts.
        Handle<ScriptContextTable> script_contexts(
            context->global_object()->native_context()->script_context_table());
        ScriptContextTable::LookupResult r;
        if (ScriptContextTable::Lookup(script_contexts, name, &r)) {
250
          if (FLAG_trace_contexts) {
251
            Handle<Context> c = ScriptContextTable::GetContext(script_contexts,
252
                                                               r.context_index);
253
            PrintF("=> found property in script context %d: %p\n",
254 255 256
                   r.context_index, reinterpret_cast<void*>(*c));
          }
          *index = r.slot_index;
257
          *variable_mode = r.mode;
258
          *init_flag = r.init_flag;
259
          *attributes = GetAttributesForMode(r.mode);
260
          return ScriptContextTable::GetContext(script_contexts,
261 262 263 264
                                                r.context_index);
        }
      }

265 266 267
      // Context extension objects needs to behave as if they have no
      // prototype.  So even if we want to follow prototype chains, we need
      // to only do a local lookup for context extension objects.
268
      Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>();
269 270
      if ((flags & FOLLOW_PROTOTYPE_CHAIN) == 0 ||
          object->IsJSContextExtensionObject()) {
271
        maybe = JSReceiver::GetOwnPropertyAttributes(object, name);
272
      } else if (context->IsWithContext()) {
273 274 275 276 277 278 279 280
        // A with context will never bind "this", but debug-eval may look into
        // a with context when resolving "this". Other synthetic variables such
        // as new.target may be resolved as DYNAMIC_LOCAL due to bug v8:5405 ,
        // skipping them here serves as a workaround until a more thorough
        // fix can be applied.
        // TODO(v8:5405): Replace this check with a DCHECK when resolution of
        // of synthetic variables does not go through this code path.
        if (ScopeInfo::VariableIsSynthetic(*name)) {
281 282
          maybe = Just(ABSENT);
        } else {
283
          LookupIterator it(object, name, object);
284 285 286 287 288 289 290 291 292
          Maybe<bool> found = UnscopableLookup(&it);
          if (found.IsNothing()) {
            maybe = Nothing<PropertyAttributes>();
          } else {
            // Luckily, consumers of |maybe| only care whether the property
            // was absent or not, so we can return a dummy |NONE| value
            // for its attributes when it was present.
            maybe = Just(found.FromJust() ? NONE : ABSENT);
          }
293
        }
294
      } else {
295
        maybe = JSReceiver::GetPropertyAttributes(object, name);
296
      }
297

298
      if (maybe.IsNothing()) return Handle<Object>();
299
      DCHECK(!isolate->has_pending_exception());
300
      *attributes = maybe.FromJust();
301

302
      if (maybe.FromJust() != ABSENT) {
303 304 305
        if (FLAG_trace_contexts) {
          PrintF("=> found property in context object %p\n",
                 reinterpret_cast<void*>(*object));
306
        }
307
        return object;
308 309 310
      }
    }

311
    // 2. Check the context proper if it has slots.
312
    if (context->IsFunctionContext() || context->IsBlockContext() ||
313 314
        context->IsScriptContext() || context->IsEvalContext() ||
        context->IsModuleContext()) {
315 316
      // Use serialized scope information of functions and blocks to search
      // for the context index.
317
      Handle<ScopeInfo> scope_info(context->scope_info());
318
      VariableMode mode;
319
      InitializationFlag flag;
320
      MaybeAssignedFlag maybe_assigned_flag;
321 322
      int slot_index = ScopeInfo::ContextSlotIndex(scope_info, name, &mode,
                                                   &flag, &maybe_assigned_flag);
323
      DCHECK(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS);
324
      if (slot_index >= 0) {
325 326
        if (FLAG_trace_contexts) {
          PrintF("=> found local in context slot %d (mode = %d)\n",
327
                 slot_index, mode);
328
        }
329
        *index = slot_index;
330
        *variable_mode = mode;
331 332
        *init_flag = flag;
        *attributes = GetAttributesForMode(mode);
333 334 335
        return context;
      }

336
      // Check the slot corresponding to the intermediate context holding
337 338 339 340 341
      // only the function name variable. It's conceptually (and spec-wise)
      // in an outer scope of the function's declaration scope.
      if (follow_context_chain && (flags & STOP_AT_DECLARATION_SCOPE) == 0 &&
          context->IsFunctionContext()) {
        int function_index = scope_info->FunctionContextSlotIndex(*name);
342
        if (function_index >= 0) {
343 344
          if (FLAG_trace_contexts) {
            PrintF("=> found intermediate function in context slot %d\n",
345
                   function_index);
346
          }
347
          *index = function_index;
348
          *attributes = READ_ONLY;
349
          *init_flag = kCreatedInitialized;
350
          *variable_mode = CONST;
351 352 353 354
          if (is_sloppy_function_name != nullptr &&
              is_sloppy(scope_info->language_mode())) {
            *is_sloppy_function_name = true;
          }
355 356 357
          return context;
        }
      }
358

359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
      // Lookup variable in module imports and exports.
      if (context->IsModuleContext()) {
        VariableMode mode;
        InitializationFlag flag;
        MaybeAssignedFlag maybe_assigned_flag;
        int cell_index =
            scope_info->ModuleIndex(name, &mode, &flag, &maybe_assigned_flag);
        if (cell_index != 0) {
          if (FLAG_trace_contexts) {
            PrintF("=> found in module imports or exports\n");
          }
          *index = cell_index;
          *variable_mode = mode;
          *init_flag = flag;
          *attributes = ModuleDescriptor::GetCellIndexKind(cell_index) ==
                                ModuleDescriptor::kExport
                            ? GetAttributesForMode(mode)
                            : READ_ONLY;
          return handle(context->module(), isolate);
        }
      }
380 381
    } else if (context->IsCatchContext()) {
      // Catch contexts have the variable name in the extension slot.
382
      if (String::Equals(name, handle(context->catch_name()))) {
383 384 385 386 387
        if (FLAG_trace_contexts) {
          PrintF("=> found in catch context\n");
        }
        *index = Context::THROWN_OBJECT_INDEX;
        *attributes = NONE;
388
        *init_flag = kCreatedInitialized;
389
        *variable_mode = VAR;
390 391
        return context;
      }
392 393
    } else if (context->IsDebugEvaluateContext()) {
      // Check materialized locals.
394 395 396 397 398 399 400 401 402 403 404
      Object* ext = context->get(EXTENSION_INDEX);
      if (ext->IsContextExtension()) {
        Object* obj = ContextExtension::cast(ext)->extension();
        if (obj->IsJSReceiver()) {
          Handle<JSReceiver> extension(JSReceiver::cast(obj));
          LookupIterator it(extension, name, extension);
          Maybe<bool> found = JSReceiver::HasProperty(&it);
          if (found.FromMaybe(false)) {
            *attributes = NONE;
            return extension;
          }
405 406 407
        }
      }
      // Check the original context, but do not follow its context chain.
408
      Object* obj = context->get(WRAPPED_CONTEXT_INDEX);
409
      if (obj->IsContext()) {
410 411 412
        Handle<Object> result =
            Context::cast(obj)->Lookup(name, DONT_FOLLOW_CHAINS, index,
                                       attributes, init_flag, variable_mode);
413 414 415 416 417 418 419 420
        if (!result.is_null()) return result;
      }
      // Check whitelist. Names that do not pass whitelist shall only resolve
      // to with, script or native contexts up the context chain.
      obj = context->get(WHITE_LIST_INDEX);
      if (obj->IsStringSet()) {
        failed_whitelist = failed_whitelist || !StringSet::cast(obj)->Has(name);
      }
421 422
    }

423
    // 3. Prepare to continue with the previous (next outermost) context.
424 425 426
    if (context->IsNativeContext() ||
        ((flags & STOP_AT_DECLARATION_SCOPE) != 0 &&
         context->is_declaration_context())) {
427
      follow_context_chain = false;
428
    } else {
429 430 431
      do {
        context = Handle<Context>(context->previous(), isolate);
        // If we come across a whitelist context, and the name is not
432 433
        // whitelisted, then only consider with, script, module or native
        // contexts.
434
      } while (failed_whitelist && !context->IsScriptContext() &&
435 436
               !context->IsNativeContext() && !context->IsWithContext() &&
               !context->IsModuleContext());
437 438 439 440 441 442
    }
  } while (follow_context_chain);

  if (FLAG_trace_contexts) {
    PrintF("=> no property/slot found\n");
  }
443
  return Handle<Object>::null();
444 445
}

446

447
void Context::AddOptimizedCode(Code* code) {
448 449
  DCHECK(IsNativeContext());
  DCHECK(code->kind() == Code::OPTIMIZED_FUNCTION);
450
  DCHECK(code->next_code_link()->IsUndefined(GetIsolate()));
451
  code->set_next_code_link(get(OPTIMIZED_CODE_LIST));
452
  set(OPTIMIZED_CODE_LIST, code, UPDATE_WEAK_WRITE_BARRIER);
453 454 455 456
}


void Context::SetOptimizedCodeListHead(Object* head) {
457
  DCHECK(IsNativeContext());
458
  set(OPTIMIZED_CODE_LIST, head, UPDATE_WEAK_WRITE_BARRIER);
459 460 461 462
}


Object* Context::OptimizedCodeListHead() {
463
  DCHECK(IsNativeContext());
464 465 466 467 468
  return get(OPTIMIZED_CODE_LIST);
}


void Context::SetDeoptimizedCodeListHead(Object* head) {
469
  DCHECK(IsNativeContext());
470
  set(DEOPTIMIZED_CODE_LIST, head, UPDATE_WEAK_WRITE_BARRIER);
471 472 473 474
}


Object* Context::DeoptimizedCodeListHead() {
475
  DCHECK(IsNativeContext());
476
  return get(DEOPTIMIZED_CODE_LIST);
477 478 479
}


480
Handle<Object> Context::ErrorMessageForCodeGenerationFromStrings() {
481 482
  Isolate* isolate = GetIsolate();
  Handle<Object> result(error_message_for_code_gen_from_strings(), isolate);
483
  if (!result->IsUndefined(isolate)) return result;
484
  return isolate->factory()->NewStringFromStaticChars(
485
      "Code generation from strings disallowed for this context");
486 487 488
}


489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
#define COMPARE_NAME(index, type, name) \
  if (string->IsOneByteEqualTo(STATIC_CHAR_VECTOR(#name))) return index;

int Context::ImportedFieldIndexForName(Handle<String> string) {
  NATIVE_CONTEXT_IMPORTED_FIELDS(COMPARE_NAME)
  return kNotFound;
}


int Context::IntrinsicIndexForName(Handle<String> string) {
  NATIVE_CONTEXT_INTRINSIC_FUNCTIONS(COMPARE_NAME);
  return kNotFound;
}

#undef COMPARE_NAME

505 506 507 508 509 510 511 512 513 514 515
#define COMPARE_NAME(index, type, name) \
  if (strncmp(string, #name, length) == 0) return index;

int Context::IntrinsicIndexForName(const unsigned char* unsigned_string,
                                   int length) {
  const char* string = reinterpret_cast<const char*>(unsigned_string);
  NATIVE_CONTEXT_INTRINSIC_FUNCTIONS(COMPARE_NAME);
  return kNotFound;
}

#undef COMPARE_NAME
516

517
#ifdef DEBUG
518 519 520 521 522 523 524 525 526

bool Context::IsBootstrappingOrNativeContext(Isolate* isolate, Object* object) {
  // During bootstrapping we allow all objects to pass as global
  // objects. This is necessary to fix circular dependencies.
  return isolate->heap()->gc_state() != Heap::NOT_IN_GC ||
         isolate->bootstrapper()->IsActive() || object->IsNativeContext();
}


527 528
bool Context::IsBootstrappingOrValidParentContext(
    Object* object, Context* child) {
529 530
  // During bootstrapping we allow all objects to pass as
  // contexts. This is necessary to fix circular dependencies.
531
  if (child->GetIsolate()->bootstrapper()->IsActive()) return true;
532 533
  if (!object->IsContext()) return false;
  Context* context = Context::cast(object);
534
  return context->IsNativeContext() || context->IsScriptContext() ||
535
         context->IsModuleContext() || !child->IsModuleContext();
536 537 538 539
}

#endif

540 541 542 543
void Context::ResetErrorsThrown() {
  DCHECK(IsNativeContext());
  set_errors_thrown(Smi::FromInt(0));
}
544 545 546 547 548 549 550 551 552 553 554

void Context::IncrementErrorsThrown() {
  DCHECK(IsNativeContext());

  int previous_value = errors_thrown()->value();
  set_errors_thrown(Smi::FromInt(previous_value + 1));
}


int Context::GetErrorsThrown() { return errors_thrown()->value(); }

555 556
}  // namespace internal
}  // namespace v8