Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: src/contexts.h

Issue 11266011: Delivery logic for Object.observe (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Renamed and added comment Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/bootstrapper.cc ('k') | src/isolate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 V(ALLOW_CODE_GEN_FROM_STRINGS_INDEX, Object, allow_code_gen_from_strings) \ 156 V(ALLOW_CODE_GEN_FROM_STRINGS_INDEX, Object, allow_code_gen_from_strings) \
157 V(ERROR_MESSAGE_FOR_CODE_GEN_FROM_STRINGS_INDEX, Object, \ 157 V(ERROR_MESSAGE_FOR_CODE_GEN_FROM_STRINGS_INDEX, Object, \
158 error_message_for_code_gen_from_strings) \ 158 error_message_for_code_gen_from_strings) \
159 V(TO_COMPLETE_PROPERTY_DESCRIPTOR_INDEX, JSFunction, \ 159 V(TO_COMPLETE_PROPERTY_DESCRIPTOR_INDEX, JSFunction, \
160 to_complete_property_descriptor) \ 160 to_complete_property_descriptor) \
161 V(DERIVED_HAS_TRAP_INDEX, JSFunction, derived_has_trap) \ 161 V(DERIVED_HAS_TRAP_INDEX, JSFunction, derived_has_trap) \
162 V(DERIVED_GET_TRAP_INDEX, JSFunction, derived_get_trap) \ 162 V(DERIVED_GET_TRAP_INDEX, JSFunction, derived_get_trap) \
163 V(DERIVED_SET_TRAP_INDEX, JSFunction, derived_set_trap) \ 163 V(DERIVED_SET_TRAP_INDEX, JSFunction, derived_set_trap) \
164 V(PROXY_ENUMERATE_INDEX, JSFunction, proxy_enumerate) \ 164 V(PROXY_ENUMERATE_INDEX, JSFunction, proxy_enumerate) \
165 V(OBSERVERS_NOTIFY_CHANGE_INDEX, JSFunction, observers_notify_change) \ 165 V(OBSERVERS_NOTIFY_CHANGE_INDEX, JSFunction, observers_notify_change) \
166 V(OBSERVERS_DELIVER_CHANGES_INDEX, JSFunction, observers_deliver_changes) \
166 V(RANDOM_SEED_INDEX, ByteArray, random_seed) 167 V(RANDOM_SEED_INDEX, ByteArray, random_seed)
167 168
168 // JSFunctions are pairs (context, function code), sometimes also called 169 // JSFunctions are pairs (context, function code), sometimes also called
169 // closures. A Context object is used to represent function contexts and 170 // closures. A Context object is used to represent function contexts and
170 // dynamically pushed 'with' contexts (or 'scopes' in ECMA-262 speak). 171 // dynamically pushed 'with' contexts (or 'scopes' in ECMA-262 speak).
171 // 172 //
172 // At runtime, the contexts build a stack in parallel to the execution 173 // At runtime, the contexts build a stack in parallel to the execution
173 // stack, with the top-most context being the current context. All contexts 174 // stack, with the top-most context being the current context. All contexts
174 // have the following slots: 175 // have the following slots:
175 // 176 //
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 OUT_OF_MEMORY_INDEX, 285 OUT_OF_MEMORY_INDEX,
285 EMBEDDER_DATA_INDEX, 286 EMBEDDER_DATA_INDEX,
286 ALLOW_CODE_GEN_FROM_STRINGS_INDEX, 287 ALLOW_CODE_GEN_FROM_STRINGS_INDEX,
287 ERROR_MESSAGE_FOR_CODE_GEN_FROM_STRINGS_INDEX, 288 ERROR_MESSAGE_FOR_CODE_GEN_FROM_STRINGS_INDEX,
288 TO_COMPLETE_PROPERTY_DESCRIPTOR_INDEX, 289 TO_COMPLETE_PROPERTY_DESCRIPTOR_INDEX,
289 DERIVED_HAS_TRAP_INDEX, 290 DERIVED_HAS_TRAP_INDEX,
290 DERIVED_GET_TRAP_INDEX, 291 DERIVED_GET_TRAP_INDEX,
291 DERIVED_SET_TRAP_INDEX, 292 DERIVED_SET_TRAP_INDEX,
292 PROXY_ENUMERATE_INDEX, 293 PROXY_ENUMERATE_INDEX,
293 OBSERVERS_NOTIFY_CHANGE_INDEX, 294 OBSERVERS_NOTIFY_CHANGE_INDEX,
295 OBSERVERS_DELIVER_CHANGES_INDEX,
294 RANDOM_SEED_INDEX, 296 RANDOM_SEED_INDEX,
295 297
296 // Properties from here are treated as weak references by the full GC. 298 // Properties from here are treated as weak references by the full GC.
297 // Scavenge treats them as strong references. 299 // Scavenge treats them as strong references.
298 OPTIMIZED_FUNCTIONS_LIST, // Weak. 300 OPTIMIZED_FUNCTIONS_LIST, // Weak.
299 MAP_CACHE_INDEX, // Weak. 301 MAP_CACHE_INDEX, // Weak.
300 NEXT_CONTEXT_LINK, // Weak. 302 NEXT_CONTEXT_LINK, // Weak.
301 303
302 // Total number of slots. 304 // Total number of slots.
303 NATIVE_CONTEXT_SLOTS, 305 NATIVE_CONTEXT_SLOTS,
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 static bool IsBootstrappingOrGlobalObject(Object* object); 451 static bool IsBootstrappingOrGlobalObject(Object* object);
450 #endif 452 #endif
451 453
452 STATIC_CHECK(kHeaderSize == Internals::kContextHeaderSize); 454 STATIC_CHECK(kHeaderSize == Internals::kContextHeaderSize);
453 STATIC_CHECK(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); 455 STATIC_CHECK(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex);
454 }; 456 };
455 457
456 } } // namespace v8::internal 458 } } // namespace v8::internal
457 459
458 #endif // V8_CONTEXTS_H_ 460 #endif // V8_CONTEXTS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698