blob: 5edbc5ac2d3d8f8a4c97a37f41f617f95b26c2ac [file] [log] [blame]
karlklose@chromium.org83a47282011-05-11 11:54:09 +00001// Copyright 2011 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#include "v8.h"
29
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +000030#include "bootstrapper.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000031#include "debug.h"
32#include "scopeinfo.h"
33
kasperl@chromium.org71affb52009-05-26 05:44:31 +000034namespace v8 {
35namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036
vegorov@chromium.org3cf47312011-06-29 13:20:01 +000037Context* Context::declaration_context() {
38 Context* current = this;
yangguo@chromium.org46839fb2012-08-28 09:06:19 +000039 while (!current->IsFunctionContext() && !current->IsNativeContext()) {
vegorov@chromium.org3cf47312011-06-29 13:20:01 +000040 current = current->previous();
41 ASSERT(current->closure() == closure());
42 }
43 return current;
44}
45
46
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000047JSBuiltinsObject* Context::builtins() {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +000048 GlobalObject* object = global_object();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000049 if (object->IsJSGlobalObject()) {
50 return JSGlobalObject::cast(object)->builtins();
51 } else {
52 ASSERT(object->IsJSBuiltinsObject());
53 return JSBuiltinsObject::cast(object);
54 }
55}
56
57
ulan@chromium.org8e8d8822012-11-23 14:36:46 +000058Context* Context::global_context() {
59 Context* current = this;
60 while (!current->IsGlobalContext()) {
61 current = current->previous();
62 }
63 return current;
64}
65
66
yangguo@chromium.org46839fb2012-08-28 09:06:19 +000067Context* Context::native_context() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000068 // Fast case: the global object for this context has been set. In
69 // that case, the global object has a direct pointer to the global
70 // context.
yangguo@chromium.org46839fb2012-08-28 09:06:19 +000071 if (global_object()->IsGlobalObject()) {
72 return global_object()->native_context();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000073 }
kasperl@chromium.org7b9eafd2009-12-21 15:20:30 +000074
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000075 // During bootstrapping, the global object might not be set and we
yangguo@chromium.org46839fb2012-08-28 09:06:19 +000076 // have to search the context chain to find the native context.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000077 ASSERT(Isolate::Current()->bootstrapper()->IsActive());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000078 Context* current = this;
yangguo@chromium.org46839fb2012-08-28 09:06:19 +000079 while (!current->IsNativeContext()) {
kasperl@chromium.org7b9eafd2009-12-21 15:20:30 +000080 JSFunction* closure = JSFunction::cast(current->closure());
81 current = Context::cast(closure->context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000082 }
83 return current;
84}
85
86
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000087JSObject* Context::global_proxy() {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +000088 return native_context()->global_proxy_object();
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000089}
90
91void Context::set_global_proxy(JSObject* object) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +000092 native_context()->set_global_proxy_object(object);
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000093}
94
95
whesse@chromium.org7b260152011-06-20 15:33:18 +000096Handle<Object> Context::Lookup(Handle<String> name,
97 ContextLookupFlags flags,
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000098 int* index,
yangguo@chromium.org80c42ed2011-08-31 09:03:56 +000099 PropertyAttributes* attributes,
100 BindingFlags* binding_flags) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000101 Isolate* isolate = GetIsolate();
102 Handle<Context> context(this, isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000103
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000104 bool follow_context_chain = (flags & FOLLOW_CONTEXT_CHAIN) != 0;
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000105 *index = -1;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000106 *attributes = ABSENT;
yangguo@chromium.org80c42ed2011-08-31 09:03:56 +0000107 *binding_flags = MISSING_BINDING;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000108
109 if (FLAG_trace_contexts) {
110 PrintF("Context::Lookup(");
111 name->ShortPrint();
112 PrintF(")\n");
113 }
114
115 do {
116 if (FLAG_trace_contexts) {
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +0000117 PrintF(" - looking in context %p", reinterpret_cast<void*>(*context));
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000118 if (context->IsNativeContext()) PrintF(" (native context)");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000119 PrintF("\n");
120 }
121
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000122 // 1. Check global objects, subjects of with, and extension objects.
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000123 if (context->IsNativeContext() ||
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000124 context->IsWithContext() ||
125 (context->IsFunctionContext() && context->has_extension())) {
126 Handle<JSObject> object(JSObject::cast(context->extension()), isolate);
127 // Context extension objects needs to behave as if they have no
128 // prototype. So even if we want to follow prototype chains, we need
129 // to only do a local lookup for context extension objects.
130 if ((flags & FOLLOW_PROTOTYPE_CHAIN) == 0 ||
131 object->IsJSContextExtensionObject()) {
132 *attributes = object->GetLocalPropertyAttribute(*name);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000133 } else {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000134 *attributes = object->GetPropertyAttribute(*name);
135 }
136 if (*attributes != ABSENT) {
137 if (FLAG_trace_contexts) {
138 PrintF("=> found property in context object %p\n",
139 reinterpret_cast<void*>(*object));
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000140 }
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000141 return object;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000142 }
143 }
144
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000145 // 2. Check the context proper if it has slots.
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000146 if (context->IsFunctionContext() || context->IsBlockContext()) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000147 // Use serialized scope information of functions and blocks to search
148 // for the context index.
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000149 Handle<ScopeInfo> scope_info;
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000150 if (context->IsFunctionContext()) {
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000151 scope_info = Handle<ScopeInfo>(
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000152 context->closure()->shared()->scope_info(), isolate);
153 } else {
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000154 scope_info = Handle<ScopeInfo>(
155 ScopeInfo::cast(context->extension()), isolate);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000156 }
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000157 VariableMode mode;
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000158 InitializationFlag init_flag;
159 int slot_index = scope_info->ContextSlotIndex(*name, &mode, &init_flag);
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000160 ASSERT(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS);
161 if (slot_index >= 0) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000162 if (FLAG_trace_contexts) {
163 PrintF("=> found local in context slot %d (mode = %d)\n",
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000164 slot_index, mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000165 }
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000166 *index = slot_index;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000167 // Note: Fixed context slots are statically allocated by the compiler.
168 // Statically allocated variables always have a statically known mode,
169 // which is the mode with which they were declared when added to the
170 // scope. Thus, the DYNAMIC mode (which corresponds to dynamically
171 // declared variables that were introduced through declaration nodes)
172 // must not appear here.
173 switch (mode) {
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000174 case INTERNAL: // Fall through.
175 case VAR:
yangguo@chromium.org80c42ed2011-08-31 09:03:56 +0000176 *attributes = NONE;
177 *binding_flags = MUTABLE_IS_INITIALIZED;
178 break;
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000179 case LET:
whesse@chromium.org7b260152011-06-20 15:33:18 +0000180 *attributes = NONE;
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000181 *binding_flags = (init_flag == kNeedsInitialization)
182 ? MUTABLE_CHECK_INITIALIZED : MUTABLE_IS_INITIALIZED;
whesse@chromium.org7b260152011-06-20 15:33:18 +0000183 break;
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000184 case CONST:
whesse@chromium.org7b260152011-06-20 15:33:18 +0000185 *attributes = READ_ONLY;
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000186 *binding_flags = (init_flag == kNeedsInitialization)
187 ? IMMUTABLE_CHECK_INITIALIZED : IMMUTABLE_IS_INITIALIZED;
whesse@chromium.org7b260152011-06-20 15:33:18 +0000188 break;
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000189 case CONST_HARMONY:
190 *attributes = READ_ONLY;
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000191 *binding_flags = (init_flag == kNeedsInitialization)
192 ? IMMUTABLE_CHECK_INITIALIZED_HARMONY :
193 IMMUTABLE_IS_INITIALIZED_HARMONY;
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000194 break;
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000195 case MODULE:
196 *attributes = READ_ONLY;
197 *binding_flags = IMMUTABLE_IS_INITIALIZED_HARMONY;
198 break;
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +0000199 case DYNAMIC:
200 case DYNAMIC_GLOBAL:
201 case DYNAMIC_LOCAL:
202 case TEMPORARY:
whesse@chromium.org7b260152011-06-20 15:33:18 +0000203 UNREACHABLE();
204 break;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000205 }
206 return context;
207 }
208
whesse@chromium.org7b260152011-06-20 15:33:18 +0000209 // Check the slot corresponding to the intermediate context holding
210 // only the function name variable.
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000211 if (follow_context_chain && context->IsFunctionContext()) {
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000212 VariableMode mode;
213 int function_index = scope_info->FunctionContextSlotIndex(*name, &mode);
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000214 if (function_index >= 0) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000215 if (FLAG_trace_contexts) {
216 PrintF("=> found intermediate function in context slot %d\n",
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000217 function_index);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000218 }
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000219 *index = function_index;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000220 *attributes = READ_ONLY;
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000221 ASSERT(mode == CONST || mode == CONST_HARMONY);
222 *binding_flags = (mode == CONST)
223 ? IMMUTABLE_IS_INITIALIZED : IMMUTABLE_IS_INITIALIZED_HARMONY;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000224 return context;
225 }
226 }
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000227
228 } else if (context->IsCatchContext()) {
229 // Catch contexts have the variable name in the extension slot.
230 if (name->Equals(String::cast(context->extension()))) {
231 if (FLAG_trace_contexts) {
232 PrintF("=> found in catch context\n");
233 }
234 *index = Context::THROWN_OBJECT_INDEX;
235 *attributes = NONE;
236 *binding_flags = MUTABLE_IS_INITIALIZED;
237 return context;
238 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000239 }
240
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000241 // 3. Prepare to continue with the previous (next outermost) context.
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000242 if (context->IsNativeContext()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000243 follow_context_chain = false;
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000244 } else {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000245 context = Handle<Context>(context->previous(), isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000246 }
247 } while (follow_context_chain);
248
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000249 if (FLAG_trace_contexts) {
250 PrintF("=> no property/slot found\n");
251 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000252 return Handle<Object>::null();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000253}
254
255
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000256void Context::AddOptimizedFunction(JSFunction* function) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000257 ASSERT(IsNativeContext());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000258#ifdef DEBUG
svenpanne@chromium.org619781a2012-07-05 08:22:44 +0000259 if (FLAG_enable_slow_asserts) {
260 Object* element = get(OPTIMIZED_FUNCTIONS_LIST);
261 while (!element->IsUndefined()) {
262 CHECK(element != function);
263 element = JSFunction::cast(element)->next_function_link();
264 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000265 }
266
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000267 // Check that the context belongs to the weak native contexts list.
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000268 bool found = false;
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000269 Object* context = GetHeap()->native_contexts_list();
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000270 while (!context->IsUndefined()) {
271 if (context == this) {
272 found = true;
273 break;
274 }
275 context = Context::cast(context)->get(Context::NEXT_CONTEXT_LINK);
276 }
277 CHECK(found);
278#endif
verwaest@chromium.orge4ee6de2012-11-06 12:13:00 +0000279
280 // If the function link field is already used then the function was
281 // enqueued as a code flushing candidate and we remove it now.
282 if (!function->next_function_link()->IsUndefined()) {
283 CodeFlusher* flusher = GetHeap()->mark_compact_collector()->code_flusher();
284 flusher->EvictCandidate(function);
285 }
286
287 ASSERT(function->next_function_link()->IsUndefined());
288
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000289 function->set_next_function_link(get(OPTIMIZED_FUNCTIONS_LIST));
290 set(OPTIMIZED_FUNCTIONS_LIST, function);
291}
292
293
294void Context::RemoveOptimizedFunction(JSFunction* function) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000295 ASSERT(IsNativeContext());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000296 Object* element = get(OPTIMIZED_FUNCTIONS_LIST);
297 JSFunction* prev = NULL;
298 while (!element->IsUndefined()) {
299 JSFunction* element_function = JSFunction::cast(element);
300 ASSERT(element_function->next_function_link()->IsUndefined() ||
301 element_function->next_function_link()->IsJSFunction());
302 if (element_function == function) {
303 if (prev == NULL) {
304 set(OPTIMIZED_FUNCTIONS_LIST, element_function->next_function_link());
305 } else {
306 prev->set_next_function_link(element_function->next_function_link());
307 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000308 element_function->set_next_function_link(GetHeap()->undefined_value());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000309 return;
310 }
311 prev = element_function;
312 element = element_function->next_function_link();
313 }
314 UNREACHABLE();
315}
316
317
318Object* Context::OptimizedFunctionsListHead() {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000319 ASSERT(IsNativeContext());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000320 return get(OPTIMIZED_FUNCTIONS_LIST);
321}
322
323
324void Context::ClearOptimizedFunctions() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000325 set(OPTIMIZED_FUNCTIONS_LIST, GetHeap()->undefined_value());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000326}
327
328
ulan@chromium.org56c14af2012-09-20 12:51:09 +0000329Handle<Object> Context::ErrorMessageForCodeGenerationFromStrings() {
ulan@chromium.org09d7ab52013-02-25 15:50:35 +0000330 Handle<Object> result(error_message_for_code_gen_from_strings(),
331 GetIsolate());
332 if (!result->IsUndefined()) return result;
333 return GetIsolate()->factory()->NewStringFromAscii(i::CStrVector(
334 "Code generation from strings disallowed for this context"));
ulan@chromium.org56c14af2012-09-20 12:51:09 +0000335}
336
337
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000338#ifdef DEBUG
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000339bool Context::IsBootstrappingOrValidParentContext(
340 Object* object, Context* child) {
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000341 // During bootstrapping we allow all objects to pass as
342 // contexts. This is necessary to fix circular dependencies.
ulan@chromium.org09d7ab52013-02-25 15:50:35 +0000343 if (child->GetIsolate()->bootstrapper()->IsActive()) return true;
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000344 if (!object->IsContext()) return false;
345 Context* context = Context::cast(object);
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000346 return context->IsNativeContext() || context->IsGlobalContext() ||
347 context->IsModuleContext() || !child->IsModuleContext();
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000348}
349
350
351bool Context::IsBootstrappingOrGlobalObject(Object* object) {
352 // During bootstrapping we allow all objects to pass as global
353 // objects. This is necessary to fix circular dependencies.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000354 Isolate* isolate = Isolate::Current();
355 return isolate->heap()->gc_state() != Heap::NOT_IN_GC ||
356 isolate->bootstrapper()->IsActive() ||
357 object->IsGlobalObject();
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000358}
359#endif
360
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000361} } // namespace v8::internal