blob: aa46b4793170a41c755d3f5c8b86f4678c0ba8f8 [file] [log] [blame]
Ben Murdoch257744e2011-11-30 15:57:28 +00001// Copyright 2011 the V8 project authors. All rights reserved.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
Steve Blocka7e24c12009-10-30 11:49:00 +00004
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00005#include "src/contexts.h"
Steve Blocka7e24c12009-10-30 11:49:00 +00006
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00007#include "src/ast/scopeinfo.h"
Ben Murdochb8a8cc12014-11-26 15:28:44 +00008#include "src/bootstrapper.h"
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00009#include "src/debug/debug.h"
10#include "src/isolate-inl.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000011
12namespace v8 {
13namespace internal {
14
Emily Bernierd0a1eb72015-03-24 16:35:39 -040015
16Handle<ScriptContextTable> ScriptContextTable::Extend(
17 Handle<ScriptContextTable> table, Handle<Context> script_context) {
18 Handle<ScriptContextTable> result;
19 int used = table->used();
20 int length = table->length();
21 CHECK(used >= 0 && length > 0 && used < length);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000022 if (used + kFirstContextSlot == length) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -040023 CHECK(length < Smi::kMaxValue / 2);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000024 Isolate* isolate = table->GetIsolate();
25 Handle<FixedArray> copy =
26 isolate->factory()->CopyFixedArrayAndGrow(table, length);
27 copy->set_map(isolate->heap()->script_context_table_map());
28 result = Handle<ScriptContextTable>::cast(copy);
Emily Bernierd0a1eb72015-03-24 16:35:39 -040029 } else {
30 result = table;
31 }
32 result->set_used(used + 1);
33
34 DCHECK(script_context->IsScriptContext());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000035 result->set(used + kFirstContextSlot, *script_context);
Emily Bernierd0a1eb72015-03-24 16:35:39 -040036 return result;
37}
38
39
40bool ScriptContextTable::Lookup(Handle<ScriptContextTable> table,
41 Handle<String> name, LookupResult* result) {
42 for (int i = 0; i < table->used(); i++) {
43 Handle<Context> context = GetContext(table, i);
44 DCHECK(context->IsScriptContext());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000045 Handle<ScopeInfo> scope_info(context->scope_info());
Emily Bernierd0a1eb72015-03-24 16:35:39 -040046 int slot_index = ScopeInfo::ContextSlotIndex(
47 scope_info, name, &result->mode, &result->init_flag,
48 &result->maybe_assigned_flag);
49
50 if (slot_index >= 0) {
51 result->context_index = i;
52 result->slot_index = slot_index;
53 return true;
54 }
55 }
56 return false;
57}
58
59
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000060bool Context::is_declaration_context() {
61 if (IsFunctionContext() || IsNativeContext() || IsScriptContext()) {
62 return true;
63 }
64 if (!IsBlockContext()) return false;
65 Object* ext = extension();
66 // If we have the special extension, we immediately know it must be a
67 // declaration scope. That's just a small performance shortcut.
68 return ext->IsSloppyBlockWithEvalContextExtension()
69 || ScopeInfo::cast(ext)->is_declaration_scope();
70}
71
72
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000073Context* Context::declaration_context() {
74 Context* current = this;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000075 while (!current->is_declaration_context()) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000076 current = current->previous();
Ben Murdochb8a8cc12014-11-26 15:28:44 +000077 DCHECK(current->closure() == closure());
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000078 }
79 return current;
80}
81
Ben Murdoch097c5b22016-05-18 11:27:45 +010082Context* Context::closure_context() {
83 Context* current = this;
84 while (!current->IsFunctionContext() && !current->IsScriptContext() &&
85 !current->IsNativeContext()) {
86 current = current->previous();
87 DCHECK(current->closure() == closure());
88 }
89 return current;
90}
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000091
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000092JSObject* Context::extension_object() {
93 DCHECK(IsNativeContext() || IsFunctionContext() || IsBlockContext());
94 HeapObject* object = extension();
Ben Murdoch61f157c2016-09-16 13:49:30 +010095 if (object->IsTheHole(GetIsolate())) return nullptr;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000096 if (IsBlockContext()) {
97 if (!object->IsSloppyBlockWithEvalContextExtension()) return nullptr;
98 object = SloppyBlockWithEvalContextExtension::cast(object)->extension();
Steve Blocka7e24c12009-10-30 11:49:00 +000099 }
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000100 DCHECK(object->IsJSContextExtensionObject() ||
101 (IsNativeContext() && object->IsJSGlobalObject()));
102 return JSObject::cast(object);
103}
104
105
106JSReceiver* Context::extension_receiver() {
107 DCHECK(IsNativeContext() || IsWithContext() ||
108 IsFunctionContext() || IsBlockContext());
109 return IsWithContext() ? JSReceiver::cast(extension()) : extension_object();
110}
111
112
113ScopeInfo* Context::scope_info() {
114 DCHECK(IsModuleContext() || IsScriptContext() || IsBlockContext());
115 HeapObject* object = extension();
116 if (object->IsSloppyBlockWithEvalContextExtension()) {
117 DCHECK(IsBlockContext());
118 object = SloppyBlockWithEvalContextExtension::cast(object)->scope_info();
119 }
120 return ScopeInfo::cast(object);
121}
122
123
124String* Context::catch_name() {
125 DCHECK(IsCatchContext());
126 return String::cast(extension());
127}
128
129
130JSGlobalObject* Context::global_object() {
131 return JSGlobalObject::cast(native_context()->extension());
Steve Blocka7e24c12009-10-30 11:49:00 +0000132}
133
134
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400135Context* Context::script_context() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000136 Context* current = this;
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400137 while (!current->IsScriptContext()) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000138 current = current->previous();
139 }
140 return current;
141}
142
143
Steve Blocka7e24c12009-10-30 11:49:00 +0000144JSObject* Context::global_proxy() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000145 return native_context()->global_proxy_object();
Steve Blocka7e24c12009-10-30 11:49:00 +0000146}
147
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000148
Steve Blocka7e24c12009-10-30 11:49:00 +0000149void Context::set_global_proxy(JSObject* object) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000150 native_context()->set_global_proxy_object(object);
151}
152
153
154/**
155 * Lookups a property in an object environment, taking the unscopables into
156 * account. This is used For HasBinding spec algorithms for ObjectEnvironment.
157 */
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000158static Maybe<bool> UnscopableLookup(LookupIterator* it) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000159 Isolate* isolate = it->isolate();
160
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000161 Maybe<bool> found = JSReceiver::HasProperty(it);
162 if (!found.IsJust() || !found.FromJust()) return found;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000163
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000164 Handle<Object> unscopables;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000165 ASSIGN_RETURN_ON_EXCEPTION_VALUE(
166 isolate, unscopables,
Ben Murdochda12d292016-06-02 14:46:10 +0100167 JSReceiver::GetProperty(Handle<JSReceiver>::cast(it->GetReceiver()),
168 isolate->factory()->unscopables_symbol()),
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000169 Nothing<bool>());
170 if (!unscopables->IsJSReceiver()) return Just(true);
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400171 Handle<Object> blacklist;
Ben Murdochda12d292016-06-02 14:46:10 +0100172 ASSIGN_RETURN_ON_EXCEPTION_VALUE(
173 isolate, blacklist,
174 JSReceiver::GetProperty(Handle<JSReceiver>::cast(unscopables),
175 it->name()),
176 Nothing<bool>());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000177 return Just(!blacklist->BooleanValue());
Steve Blocka7e24c12009-10-30 11:49:00 +0000178}
179
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400180static void GetAttributesAndBindingFlags(VariableMode mode,
181 InitializationFlag init_flag,
182 PropertyAttributes* attributes,
183 BindingFlags* binding_flags) {
184 switch (mode) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400185 case VAR:
186 *attributes = NONE;
Ben Murdochc5610432016-08-08 18:44:38 +0100187 *binding_flags = BINDING_IS_INITIALIZED;
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400188 break;
189 case LET:
190 *attributes = NONE;
191 *binding_flags = (init_flag == kNeedsInitialization)
Ben Murdochc5610432016-08-08 18:44:38 +0100192 ? BINDING_CHECK_INITIALIZED
193 : BINDING_IS_INITIALIZED;
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400194 break;
195 case CONST_LEGACY:
Ben Murdochc5610432016-08-08 18:44:38 +0100196 DCHECK_EQ(kCreatedInitialized, init_flag);
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400197 *attributes = READ_ONLY;
Ben Murdochc5610432016-08-08 18:44:38 +0100198 *binding_flags = BINDING_IS_INITIALIZED;
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400199 break;
200 case CONST:
201 *attributes = READ_ONLY;
202 *binding_flags = (init_flag == kNeedsInitialization)
Ben Murdochc5610432016-08-08 18:44:38 +0100203 ? BINDING_CHECK_INITIALIZED
204 : BINDING_IS_INITIALIZED;
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400205 break;
206 case DYNAMIC:
207 case DYNAMIC_GLOBAL:
208 case DYNAMIC_LOCAL:
209 case TEMPORARY:
210 // Note: Fixed context slots are statically allocated by the compiler.
211 // Statically allocated variables always have a statically known mode,
212 // which is the mode with which they were declared when added to the
213 // scope. Thus, the DYNAMIC mode (which corresponds to dynamically
214 // declared variables that were introduced through declaration nodes)
215 // must not appear here.
216 UNREACHABLE();
217 break;
218 }
219}
220
Steve Blocka7e24c12009-10-30 11:49:00 +0000221
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000222Handle<Object> Context::Lookup(Handle<String> name,
223 ContextLookupFlags flags,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100224 int* index,
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000225 PropertyAttributes* attributes,
226 BindingFlags* binding_flags) {
Steve Block44f0eee2011-05-26 01:26:41 +0100227 Isolate* isolate = GetIsolate();
228 Handle<Context> context(this, isolate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000229
230 bool follow_context_chain = (flags & FOLLOW_CONTEXT_CHAIN) != 0;
Ben Murdochda12d292016-06-02 14:46:10 +0100231 bool failed_whitelist = false;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000232 *index = kNotFound;
Steve Blocka7e24c12009-10-30 11:49:00 +0000233 *attributes = ABSENT;
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000234 *binding_flags = MISSING_BINDING;
Steve Blocka7e24c12009-10-30 11:49:00 +0000235
236 if (FLAG_trace_contexts) {
237 PrintF("Context::Lookup(");
238 name->ShortPrint();
239 PrintF(")\n");
240 }
241
242 do {
243 if (FLAG_trace_contexts) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100244 PrintF(" - looking in context %p", reinterpret_cast<void*>(*context));
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400245 if (context->IsScriptContext()) PrintF(" (script context)");
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000246 if (context->IsNativeContext()) PrintF(" (native context)");
Steve Blocka7e24c12009-10-30 11:49:00 +0000247 PrintF("\n");
248 }
249
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100250 // 1. Check global objects, subjects of with, and extension objects.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000251 if ((context->IsNativeContext() ||
252 (context->IsWithContext() && ((flags & SKIP_WITH_CONTEXT) == 0)) ||
253 context->IsFunctionContext() || context->IsBlockContext()) &&
254 context->extension_receiver() != nullptr) {
255 Handle<JSReceiver> object(context->extension_receiver());
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400256
257 if (context->IsNativeContext()) {
258 if (FLAG_trace_contexts) {
259 PrintF(" - trying other script contexts\n");
260 }
261 // Try other script contexts.
262 Handle<ScriptContextTable> script_contexts(
263 context->global_object()->native_context()->script_context_table());
264 ScriptContextTable::LookupResult r;
265 if (ScriptContextTable::Lookup(script_contexts, name, &r)) {
266 if (FLAG_trace_contexts) {
267 Handle<Context> c = ScriptContextTable::GetContext(script_contexts,
268 r.context_index);
269 PrintF("=> found property in script context %d: %p\n",
270 r.context_index, reinterpret_cast<void*>(*c));
271 }
272 *index = r.slot_index;
273 GetAttributesAndBindingFlags(r.mode, r.init_flag, attributes,
274 binding_flags);
275 return ScriptContextTable::GetContext(script_contexts,
276 r.context_index);
277 }
278 }
279
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100280 // Context extension objects needs to behave as if they have no
281 // prototype. So even if we want to follow prototype chains, we need
282 // to only do a local lookup for context extension objects.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000283 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>();
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100284 if ((flags & FOLLOW_PROTOTYPE_CHAIN) == 0 ||
285 object->IsJSContextExtensionObject()) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000286 maybe = JSReceiver::GetOwnPropertyAttributes(object, name);
287 } else if (context->IsWithContext()) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000288 // A with context will never bind "this".
289 if (name->Equals(*isolate->factory()->this_string())) {
290 maybe = Just(ABSENT);
291 } else {
Ben Murdochda12d292016-06-02 14:46:10 +0100292 LookupIterator it(object, name, object);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000293 Maybe<bool> found = UnscopableLookup(&it);
294 if (found.IsNothing()) {
295 maybe = Nothing<PropertyAttributes>();
296 } else {
297 // Luckily, consumers of |maybe| only care whether the property
298 // was absent or not, so we can return a dummy |NONE| value
299 // for its attributes when it was present.
300 maybe = Just(found.FromJust() ? NONE : ABSENT);
301 }
302 }
Ben Murdoch85b71792012-04-11 18:30:58 +0100303 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000304 maybe = JSReceiver::GetPropertyAttributes(object, name);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100305 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000306
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000307 if (!maybe.IsJust()) return Handle<Object>();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000308 DCHECK(!isolate->has_pending_exception());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000309 *attributes = maybe.FromJust();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000310
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000311 if (maybe.FromJust() != ABSENT) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100312 if (FLAG_trace_contexts) {
313 PrintF("=> found property in context object %p\n",
314 reinterpret_cast<void*>(*object));
Ben Murdoch85b71792012-04-11 18:30:58 +0100315 }
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100316 return object;
Steve Blocka7e24c12009-10-30 11:49:00 +0000317 }
318 }
319
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100320 // 2. Check the context proper if it has slots.
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400321 if (context->IsFunctionContext() || context->IsBlockContext() ||
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000322 context->IsScriptContext()) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100323 // Use serialized scope information of functions and blocks to search
324 // for the context index.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000325 Handle<ScopeInfo> scope_info(context->IsFunctionContext()
326 ? context->closure()->shared()->scope_info()
327 : context->scope_info());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100328 VariableMode mode;
329 InitializationFlag init_flag;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000330 // TODO(sigurds) Figure out whether maybe_assigned_flag should
331 // be used to compute binding_flags.
332 MaybeAssignedFlag maybe_assigned_flag;
333 int slot_index = ScopeInfo::ContextSlotIndex(
334 scope_info, name, &mode, &init_flag, &maybe_assigned_flag);
335 DCHECK(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100336 if (slot_index >= 0) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000337 if (FLAG_trace_contexts) {
338 PrintF("=> found local in context slot %d (mode = %d)\n",
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100339 slot_index, mode);
Steve Blocka7e24c12009-10-30 11:49:00 +0000340 }
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100341 *index = slot_index;
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400342 GetAttributesAndBindingFlags(mode, init_flag, attributes,
343 binding_flags);
Steve Blocka7e24c12009-10-30 11:49:00 +0000344 return context;
345 }
346
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000347 // Check the slot corresponding to the intermediate context holding
348 // only the function name variable.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100349 if (follow_context_chain && context->IsFunctionContext()) {
350 VariableMode mode;
351 int function_index = scope_info->FunctionContextSlotIndex(*name, &mode);
352 if (function_index >= 0) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000353 if (FLAG_trace_contexts) {
354 PrintF("=> found intermediate function in context slot %d\n",
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100355 function_index);
Steve Blocka7e24c12009-10-30 11:49:00 +0000356 }
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100357 *index = function_index;
Steve Blocka7e24c12009-10-30 11:49:00 +0000358 *attributes = READ_ONLY;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000359 DCHECK(mode == CONST_LEGACY || mode == CONST);
Ben Murdochc5610432016-08-08 18:44:38 +0100360 *binding_flags = BINDING_IS_INITIALIZED;
Steve Blocka7e24c12009-10-30 11:49:00 +0000361 return context;
362 }
363 }
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100364
365 } else if (context->IsCatchContext()) {
366 // Catch contexts have the variable name in the extension slot.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000367 if (String::Equals(name, handle(context->catch_name()))) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100368 if (FLAG_trace_contexts) {
369 PrintF("=> found in catch context\n");
370 }
371 *index = Context::THROWN_OBJECT_INDEX;
372 *attributes = NONE;
Ben Murdochc5610432016-08-08 18:44:38 +0100373 *binding_flags = BINDING_IS_INITIALIZED;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100374 return context;
375 }
Ben Murdochda12d292016-06-02 14:46:10 +0100376 } else if (context->IsDebugEvaluateContext()) {
377 // Check materialized locals.
378 Object* obj = context->get(EXTENSION_INDEX);
379 if (obj->IsJSReceiver()) {
380 Handle<JSReceiver> extension(JSReceiver::cast(obj));
381 LookupIterator it(extension, name, extension);
382 Maybe<bool> found = JSReceiver::HasProperty(&it);
383 if (found.FromMaybe(false)) {
384 *attributes = NONE;
385 return extension;
386 }
387 }
388 // Check the original context, but do not follow its context chain.
389 obj = context->get(WRAPPED_CONTEXT_INDEX);
390 if (obj->IsContext()) {
391 Handle<Object> result = Context::cast(obj)->Lookup(
392 name, DONT_FOLLOW_CHAINS, index, attributes, binding_flags);
393 if (!result.is_null()) return result;
394 }
395 // Check whitelist. Names that do not pass whitelist shall only resolve
396 // to with, script or native contexts up the context chain.
397 obj = context->get(WHITE_LIST_INDEX);
398 if (obj->IsStringSet()) {
399 failed_whitelist = failed_whitelist || !StringSet::cast(obj)->Has(name);
400 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000401 }
402
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100403 // 3. Prepare to continue with the previous (next outermost) context.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000404 if (context->IsNativeContext() ||
405 ((flags & STOP_AT_DECLARATION_SCOPE) != 0 &&
406 context->is_declaration_context())) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000407 follow_context_chain = false;
Steve Blocka7e24c12009-10-30 11:49:00 +0000408 } else {
Ben Murdochda12d292016-06-02 14:46:10 +0100409 do {
410 context = Handle<Context>(context->previous(), isolate);
411 // If we come across a whitelist context, and the name is not
412 // whitelisted, then only consider with, script or native contexts.
413 } while (failed_whitelist && !context->IsScriptContext() &&
414 !context->IsNativeContext() && !context->IsWithContext());
Steve Blocka7e24c12009-10-30 11:49:00 +0000415 }
416 } while (follow_context_chain);
417
Steve Blocka7e24c12009-10-30 11:49:00 +0000418 if (FLAG_trace_contexts) {
419 PrintF("=> no property/slot found\n");
420 }
421 return Handle<Object>::null();
422}
423
424
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000425void Context::InitializeGlobalSlots() {
426 DCHECK(IsScriptContext());
427 DisallowHeapAllocation no_gc;
428
429 ScopeInfo* scope_info = this->scope_info();
430
431 int context_globals = scope_info->ContextGlobalCount();
432 if (context_globals > 0) {
433 PropertyCell* empty_cell = GetHeap()->empty_property_cell();
434
435 int context_locals = scope_info->ContextLocalCount();
436 int index = Context::MIN_CONTEXT_SLOTS + context_locals;
437 for (int i = 0; i < context_globals; i++) {
438 set(index++, empty_cell);
439 }
440 }
441}
442
443
Ben Murdochb0fe1622011-05-05 13:52:32 +0100444void Context::AddOptimizedFunction(JSFunction* function) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000445 DCHECK(IsNativeContext());
Ben Murdoch61f157c2016-09-16 13:49:30 +0100446 Isolate* isolate = GetIsolate();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000447#ifdef ENABLE_SLOW_DCHECKS
448 if (FLAG_enable_slow_asserts) {
449 Object* element = get(OPTIMIZED_FUNCTIONS_LIST);
Ben Murdoch61f157c2016-09-16 13:49:30 +0100450 while (!element->IsUndefined(isolate)) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000451 CHECK(element != function);
452 element = JSFunction::cast(element)->next_function_link();
453 }
Ben Murdochb0fe1622011-05-05 13:52:32 +0100454 }
455
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000456 // Check that the context belongs to the weak native contexts list.
Ben Murdochb0fe1622011-05-05 13:52:32 +0100457 bool found = false;
Ben Murdoch61f157c2016-09-16 13:49:30 +0100458 Object* context = isolate->heap()->native_contexts_list();
459 while (!context->IsUndefined(isolate)) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100460 if (context == this) {
461 found = true;
462 break;
463 }
Ben Murdochc5610432016-08-08 18:44:38 +0100464 context = Context::cast(context)->next_context_link();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100465 }
466 CHECK(found);
467#endif
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000468
469 // If the function link field is already used then the function was
470 // enqueued as a code flushing candidate and we remove it now.
Ben Murdoch61f157c2016-09-16 13:49:30 +0100471 if (!function->next_function_link()->IsUndefined(isolate)) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000472 CodeFlusher* flusher = GetHeap()->mark_compact_collector()->code_flusher();
473 flusher->EvictCandidate(function);
474 }
475
Ben Murdoch61f157c2016-09-16 13:49:30 +0100476 DCHECK(function->next_function_link()->IsUndefined(isolate));
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000477
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000478 function->set_next_function_link(get(OPTIMIZED_FUNCTIONS_LIST),
479 UPDATE_WEAK_WRITE_BARRIER);
480 set(OPTIMIZED_FUNCTIONS_LIST, function, UPDATE_WEAK_WRITE_BARRIER);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100481}
482
483
484void Context::RemoveOptimizedFunction(JSFunction* function) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000485 DCHECK(IsNativeContext());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100486 Object* element = get(OPTIMIZED_FUNCTIONS_LIST);
487 JSFunction* prev = NULL;
Ben Murdoch61f157c2016-09-16 13:49:30 +0100488 Isolate* isolate = function->GetIsolate();
489 while (!element->IsUndefined(isolate)) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100490 JSFunction* element_function = JSFunction::cast(element);
Ben Murdoch61f157c2016-09-16 13:49:30 +0100491 DCHECK(element_function->next_function_link()->IsUndefined(isolate) ||
Ben Murdochb0fe1622011-05-05 13:52:32 +0100492 element_function->next_function_link()->IsJSFunction());
493 if (element_function == function) {
494 if (prev == NULL) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000495 set(OPTIMIZED_FUNCTIONS_LIST, element_function->next_function_link(),
496 UPDATE_WEAK_WRITE_BARRIER);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100497 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000498 prev->set_next_function_link(element_function->next_function_link(),
499 UPDATE_WEAK_WRITE_BARRIER);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100500 }
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000501 element_function->set_next_function_link(GetHeap()->undefined_value(),
502 UPDATE_WEAK_WRITE_BARRIER);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100503 return;
504 }
505 prev = element_function;
506 element = element_function->next_function_link();
507 }
508 UNREACHABLE();
509}
510
511
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000512void Context::SetOptimizedFunctionsListHead(Object* head) {
513 DCHECK(IsNativeContext());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000514 set(OPTIMIZED_FUNCTIONS_LIST, head, UPDATE_WEAK_WRITE_BARRIER);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000515}
516
517
Ben Murdochb0fe1622011-05-05 13:52:32 +0100518Object* Context::OptimizedFunctionsListHead() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000519 DCHECK(IsNativeContext());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100520 return get(OPTIMIZED_FUNCTIONS_LIST);
521}
522
523
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000524void Context::AddOptimizedCode(Code* code) {
525 DCHECK(IsNativeContext());
526 DCHECK(code->kind() == Code::OPTIMIZED_FUNCTION);
Ben Murdoch61f157c2016-09-16 13:49:30 +0100527 DCHECK(code->next_code_link()->IsUndefined(GetIsolate()));
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000528 code->set_next_code_link(get(OPTIMIZED_CODE_LIST));
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000529 set(OPTIMIZED_CODE_LIST, code, UPDATE_WEAK_WRITE_BARRIER);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000530}
531
532
533void Context::SetOptimizedCodeListHead(Object* head) {
534 DCHECK(IsNativeContext());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000535 set(OPTIMIZED_CODE_LIST, head, UPDATE_WEAK_WRITE_BARRIER);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000536}
537
538
539Object* Context::OptimizedCodeListHead() {
540 DCHECK(IsNativeContext());
541 return get(OPTIMIZED_CODE_LIST);
542}
543
544
545void Context::SetDeoptimizedCodeListHead(Object* head) {
546 DCHECK(IsNativeContext());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000547 set(DEOPTIMIZED_CODE_LIST, head, UPDATE_WEAK_WRITE_BARRIER);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000548}
549
550
551Object* Context::DeoptimizedCodeListHead() {
552 DCHECK(IsNativeContext());
553 return get(DEOPTIMIZED_CODE_LIST);
554}
555
556
557Handle<Object> Context::ErrorMessageForCodeGenerationFromStrings() {
558 Isolate* isolate = GetIsolate();
559 Handle<Object> result(error_message_for_code_gen_from_strings(), isolate);
Ben Murdoch61f157c2016-09-16 13:49:30 +0100560 if (!result->IsUndefined(isolate)) return result;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000561 return isolate->factory()->NewStringFromStaticChars(
562 "Code generation from strings disallowed for this context");
Ben Murdochb0fe1622011-05-05 13:52:32 +0100563}
564
565
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000566#define COMPARE_NAME(index, type, name) \
567 if (string->IsOneByteEqualTo(STATIC_CHAR_VECTOR(#name))) return index;
568
569int Context::ImportedFieldIndexForName(Handle<String> string) {
570 NATIVE_CONTEXT_IMPORTED_FIELDS(COMPARE_NAME)
571 return kNotFound;
572}
573
574
575int Context::IntrinsicIndexForName(Handle<String> string) {
576 NATIVE_CONTEXT_INTRINSIC_FUNCTIONS(COMPARE_NAME);
577 return kNotFound;
578}
579
580#undef COMPARE_NAME
581
582
Steve Blocka7e24c12009-10-30 11:49:00 +0000583#ifdef DEBUG
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000584
585bool Context::IsBootstrappingOrNativeContext(Isolate* isolate, Object* object) {
586 // During bootstrapping we allow all objects to pass as global
587 // objects. This is necessary to fix circular dependencies.
588 return isolate->heap()->gc_state() != Heap::NOT_IN_GC ||
589 isolate->bootstrapper()->IsActive() || object->IsNativeContext();
590}
591
592
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000593bool Context::IsBootstrappingOrValidParentContext(
594 Object* object, Context* child) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000595 // During bootstrapping we allow all objects to pass as
596 // contexts. This is necessary to fix circular dependencies.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000597 if (child->GetIsolate()->bootstrapper()->IsActive()) return true;
598 if (!object->IsContext()) return false;
599 Context* context = Context::cast(object);
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400600 return context->IsNativeContext() || context->IsScriptContext() ||
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000601 context->IsModuleContext() || !child->IsModuleContext();
Steve Blocka7e24c12009-10-30 11:49:00 +0000602}
603
Steve Blocka7e24c12009-10-30 11:49:00 +0000604#endif
605
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000606
607void Context::IncrementErrorsThrown() {
608 DCHECK(IsNativeContext());
609
610 int previous_value = errors_thrown()->value();
611 set_errors_thrown(Smi::FromInt(previous_value + 1));
612}
613
614
615int Context::GetErrorsThrown() { return errors_thrown()->value(); }
616
617} // namespace internal
618} // namespace v8