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

Side by Side Diff: src/heap.cc

Issue 23477061: Make objects embedded in optimized code weak. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase and fix weak object verification. Created 7 years, 2 months 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 6713 matching lines...) Expand 10 before | Expand all | Expand 10 after
6724 // Create initial maps. 6724 // Create initial maps.
6725 if (!CreateInitialMaps()) return false; 6725 if (!CreateInitialMaps()) return false;
6726 if (!CreateApiObjects()) return false; 6726 if (!CreateApiObjects()) return false;
6727 6727
6728 // Create initial objects 6728 // Create initial objects
6729 if (!CreateInitialObjects()) return false; 6729 if (!CreateInitialObjects()) return false;
6730 6730
6731 native_contexts_list_ = undefined_value(); 6731 native_contexts_list_ = undefined_value();
6732 array_buffers_list_ = undefined_value(); 6732 array_buffers_list_ = undefined_value();
6733 allocation_sites_list_ = undefined_value(); 6733 allocation_sites_list_ = undefined_value();
6734 weak_object_to_code_table_ = undefined_value();
6734 return true; 6735 return true;
6735 } 6736 }
6736 6737
6737 6738
6738 void Heap::SetStackLimits() { 6739 void Heap::SetStackLimits() {
6739 ASSERT(isolate_ != NULL); 6740 ASSERT(isolate_ != NULL);
6740 ASSERT(isolate_ == isolate()); 6741 ASSERT(isolate_ == isolate());
6741 // On 64 bit machines, pointers are generally out of range of Smis. We write 6742 // On 64 bit machines, pointers are generally out of range of Smis. We write
6742 // something that looks like an out of range Smi to the GC. 6743 // something that looks like an out of range Smi to the GC.
6743 6744
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
6871 for (int i = 0; i < gc_epilogue_callbacks_.length(); ++i) { 6872 for (int i = 0; i < gc_epilogue_callbacks_.length(); ++i) {
6872 if (gc_epilogue_callbacks_[i].callback == callback) { 6873 if (gc_epilogue_callbacks_[i].callback == callback) {
6873 gc_epilogue_callbacks_.Remove(i); 6874 gc_epilogue_callbacks_.Remove(i);
6874 return; 6875 return;
6875 } 6876 }
6876 } 6877 }
6877 UNREACHABLE(); 6878 UNREACHABLE();
6878 } 6879 }
6879 6880
6880 6881
6882 MaybeObject* Heap::AddWeakObjectToCodeDependency(Object* obj,
6883 DependentCode* dep) {
6884 ASSERT(!InNewSpace(obj));
6885 ASSERT(!InNewSpace(dep));
6886 MaybeObject* maybe_obj =
6887 WeakHashTable::cast(weak_object_to_code_table_)->Put(obj, dep);
6888 WeakHashTable* table;
6889 if (!maybe_obj->To(&table)) return maybe_obj;
6890 set_weak_object_to_code_table(table);
6891 ASSERT_EQ(dep, WeakHashTable::cast(weak_object_to_code_table_)->Lookup(obj));
6892 return weak_object_to_code_table_;
6893 }
6894
6895
6896 DependentCode* Heap::LookupWeakObjectToCodeDependency(Object* obj) {
6897 Object* dep = WeakHashTable::cast(weak_object_to_code_table_)->Lookup(obj);
6898 if (dep->IsDependentCode()) return DependentCode::cast(dep);
6899 return DependentCode::cast(empty_fixed_array());
6900 }
6901
6902
6903 void Heap::EnsureWeakObjectToCodeTable() {
6904 if (!weak_object_to_code_table()->IsHashTable()) {
6905 set_weak_object_to_code_table(*isolate()->factory()->NewWeakHashTable(16));
6906 }
6907 }
6908
6909
6881 #ifdef DEBUG 6910 #ifdef DEBUG
6882 6911
6883 class PrintHandleVisitor: public ObjectVisitor { 6912 class PrintHandleVisitor: public ObjectVisitor {
6884 public: 6913 public:
6885 void VisitPointers(Object** start, Object** end) { 6914 void VisitPointers(Object** start, Object** end) {
6886 for (Object** p = start; p < end; p++) 6915 for (Object** p = start; p < end; p++)
6887 PrintF(" handle %p to %p\n", 6916 PrintF(" handle %p to %p\n",
6888 reinterpret_cast<void*>(p), 6917 reinterpret_cast<void*>(p),
6889 reinterpret_cast<void*>(*p)); 6918 reinterpret_cast<void*>(*p));
6890 } 6919 }
(...skipping 980 matching lines...) Expand 10 before | Expand all | Expand 10 after
7871 if (FLAG_concurrent_recompilation) { 7900 if (FLAG_concurrent_recompilation) {
7872 heap_->relocation_mutex_->Lock(); 7901 heap_->relocation_mutex_->Lock();
7873 #ifdef DEBUG 7902 #ifdef DEBUG
7874 heap_->relocation_mutex_locked_by_optimizer_thread_ = 7903 heap_->relocation_mutex_locked_by_optimizer_thread_ =
7875 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread(); 7904 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread();
7876 #endif // DEBUG 7905 #endif // DEBUG
7877 } 7906 }
7878 } 7907 }
7879 7908
7880 } } // namespace v8::internal 7909 } } // namespace v8::internal
OLDNEW
« src/heap.h ('K') | « src/heap.h ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698