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

Side by Side Diff: src/heap.cc

Issue 48923002: Provide private symbols through internal APIs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Make privates a non-value; comments Created 7 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
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 3261 matching lines...) Expand 10 before | Expand all | Expand 10 after
3272 3272
3273 // Allocate object to hold object observation state. 3273 // Allocate object to hold object observation state.
3274 { MaybeObject* maybe_obj = AllocateMap(JS_OBJECT_TYPE, JSObject::kHeaderSize); 3274 { MaybeObject* maybe_obj = AllocateMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
3275 if (!maybe_obj->ToObject(&obj)) return false; 3275 if (!maybe_obj->ToObject(&obj)) return false;
3276 } 3276 }
3277 { MaybeObject* maybe_obj = AllocateJSObjectFromMap(Map::cast(obj)); 3277 { MaybeObject* maybe_obj = AllocateJSObjectFromMap(Map::cast(obj));
3278 if (!maybe_obj->ToObject(&obj)) return false; 3278 if (!maybe_obj->ToObject(&obj)) return false;
3279 } 3279 }
3280 set_observation_state(JSObject::cast(obj)); 3280 set_observation_state(JSObject::cast(obj));
3281 3281
3282 { MaybeObject* maybe_obj = AllocateSymbol(); 3282 { MaybeObject* maybe_obj = AllocatePrivate();
3283 if (!maybe_obj->ToObject(&obj)) return false; 3283 if (!maybe_obj->ToObject(&obj)) return false;
3284 } 3284 }
3285 set_frozen_symbol(Symbol::cast(obj)); 3285 set_frozen_symbol(Symbol::cast(obj));
3286 3286
3287 { MaybeObject* maybe_obj = AllocateSymbol(); 3287 { MaybeObject* maybe_obj = AllocatePrivate();
3288 if (!maybe_obj->ToObject(&obj)) return false; 3288 if (!maybe_obj->ToObject(&obj)) return false;
3289 } 3289 }
3290 set_elements_transition_symbol(Symbol::cast(obj)); 3290 set_elements_transition_symbol(Symbol::cast(obj));
3291 3291
3292 { MaybeObject* maybe_obj = SeededNumberDictionary::Allocate(this, 0, TENURED); 3292 { MaybeObject* maybe_obj = SeededNumberDictionary::Allocate(this, 0, TENURED);
3293 if (!maybe_obj->ToObject(&obj)) return false; 3293 if (!maybe_obj->ToObject(&obj)) return false;
3294 } 3294 }
3295 SeededNumberDictionary::cast(obj)->set_requires_slow_elements(); 3295 SeededNumberDictionary::cast(obj)->set_requires_slow_elements();
3296 set_empty_slow_element_dictionary(SeededNumberDictionary::cast(obj)); 3296 set_empty_slow_element_dictionary(SeededNumberDictionary::cast(obj));
3297 3297
3298 { MaybeObject* maybe_obj = AllocateSymbol(); 3298 { MaybeObject* maybe_obj = AllocatePrivate();
3299 if (!maybe_obj->ToObject(&obj)) return false; 3299 if (!maybe_obj->ToObject(&obj)) return false;
3300 } 3300 }
3301 set_observed_symbol(Symbol::cast(obj)); 3301 set_observed_symbol(Symbol::cast(obj));
3302 3302
3303 // Handling of script id generation is in Factory::NewScript. 3303 // Handling of script id generation is in Factory::NewScript.
3304 set_last_script_id(Smi::FromInt(v8::Script::kNoScriptId)); 3304 set_last_script_id(Smi::FromInt(v8::Script::kNoScriptId));
3305 3305
3306 // Initialize keyed lookup cache. 3306 // Initialize keyed lookup cache.
3307 isolate_->keyed_lookup_cache()->Clear(); 3307 isolate_->keyed_lookup_cache()->Clear();
3308 3308
(...skipping 2280 matching lines...) Expand 10 before | Expand all | Expand 10 after
5589 do { 5589 do {
5590 hash = isolate()->random_number_generator()->NextInt() & Name::kHashBitMask; 5590 hash = isolate()->random_number_generator()->NextInt() & Name::kHashBitMask;
5591 attempts++; 5591 attempts++;
5592 } while (hash == 0 && attempts < 30); 5592 } while (hash == 0 && attempts < 30);
5593 if (hash == 0) hash = 1; // never return 0 5593 if (hash == 0) hash = 1; // never return 0
5594 5594
5595 Symbol::cast(result)->set_hash_field( 5595 Symbol::cast(result)->set_hash_field(
5596 Name::kIsNotArrayIndexMask | (hash << Name::kHashShift)); 5596 Name::kIsNotArrayIndexMask | (hash << Name::kHashShift));
5597 Symbol::cast(result)->set_name(undefined_value()); 5597 Symbol::cast(result)->set_name(undefined_value());
5598 5598
5599 ASSERT(result->IsSymbol()); 5599 ASSERT(result->IsSymbol() && !result->IsPrivate());
5600 return result; 5600 return result;
5601 } 5601 }
5602 5602
5603
5604 MaybeObject* Heap::AllocatePrivate() {
5605 STATIC_ASSERT(Private::kSize == Symbol::kSize);
5606 MaybeObject* maybe = AllocateSymbol();
5607 Symbol* result;
5608 if (!maybe->To(&result)) return maybe;
5609 maybe = AllocateBox(undefined_value(), TENURED);
5610 Box* box;
5611 if (!maybe->To(&box)) return maybe;
5612 result->set_name(box); // Marker for private.
5613 ASSERT(result->IsPrivate());
5614 return result;
5615 }
5616
5603 5617
5604 MaybeObject* Heap::AllocateNativeContext() { 5618 MaybeObject* Heap::AllocateNativeContext() {
5605 Object* result; 5619 Object* result;
5606 { MaybeObject* maybe_result = 5620 { MaybeObject* maybe_result =
5607 AllocateFixedArray(Context::NATIVE_CONTEXT_SLOTS); 5621 AllocateFixedArray(Context::NATIVE_CONTEXT_SLOTS);
5608 if (!maybe_result->ToObject(&result)) return maybe_result; 5622 if (!maybe_result->ToObject(&result)) return maybe_result;
5609 } 5623 }
5610 Context* context = reinterpret_cast<Context*>(result); 5624 Context* context = reinterpret_cast<Context*>(result);
5611 context->set_map_no_write_barrier(native_context_map()); 5625 context->set_map_no_write_barrier(native_context_map());
5612 context->set_js_array_maps(undefined_value()); 5626 context->set_js_array_maps(undefined_value());
(...skipping 2354 matching lines...) Expand 10 before | Expand all | Expand 10 after
7967 if (FLAG_concurrent_recompilation) { 7981 if (FLAG_concurrent_recompilation) {
7968 heap_->relocation_mutex_->Lock(); 7982 heap_->relocation_mutex_->Lock();
7969 #ifdef DEBUG 7983 #ifdef DEBUG
7970 heap_->relocation_mutex_locked_by_optimizer_thread_ = 7984 heap_->relocation_mutex_locked_by_optimizer_thread_ =
7971 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread(); 7985 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread();
7972 #endif // DEBUG 7986 #endif // DEBUG
7973 } 7987 }
7974 } 7988 }
7975 7989
7976 } } // namespace v8::internal 7990 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698