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

Unified Diff: src/heap.h

Issue 23477061: Make objects embedded in optimized code weak. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix names Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/handles.cc ('k') | src/heap.cc » ('j') | src/incremental-marking.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap.h
diff --git a/src/heap.h b/src/heap.h
index 4dfa076ebd7745c14e953cbf0deb3bd396eb5c5a..94ba4a0d6cc469693ce9bbe6ff5db8ddec494887 100644
--- a/src/heap.h
+++ b/src/heap.h
@@ -1887,6 +1887,23 @@ class Heap {
Heap* heap_;
};
Hannes Payer (out of office) 2013/10/01 13:13:50 What about? - Making weak_object_to_code, weak_obj
ulan 2013/10/01 14:50:29 I moved these methods up to the methods of the exi
+ Object* weak_object_to_code() {
+ return weak_object_to_code_;
+ }
+
+ Object** weak_object_to_code_address() {
+ return &weak_object_to_code_;
+ }
+
+ void set_weak_object_to_code(Object* value) {
+ ASSERT(!InNewSpace(value));
+ weak_object_to_code_ = value;
+ }
+
+ MaybeObject* AddWeakObjectToCodeDependency(Object* obj, DependentCode* dep);
+
+ DependentCode* LookupWeakObjectToCodeDependency(Object* obj);
+
private:
Heap();
@@ -2365,6 +2382,11 @@ class Heap {
bool relocation_mutex_locked_by_optimizer_thread_;
#endif // DEBUG;
+ // WeakHashTable that maps objects embedded in optimized code to dependent
+ // code list. It is initilized lazily and contains the undefined_value at
+ // start.
+ Object* weak_object_to_code_;
Hannes Payer (out of office) 2013/10/01 13:13:50 Can we move that up to the other weak list heads,
ulan 2013/10/01 14:50:29 Done.
+
friend class Factory;
friend class GCTracer;
friend class DisallowAllocationFailure;
« no previous file with comments | « src/handles.cc ('k') | src/heap.cc » ('j') | src/incremental-marking.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698