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

Unified Diff: src/heap/heap.h

Issue 2087463004: Revert of [heap] Avoid the use of cells to point from code to new-space objects. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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/compiler.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/heap.h
diff --git a/src/heap/heap.h b/src/heap/heap.h
index a9461ee2e109044df1a0d65e41ddb46dea00391c..a7fd3b79d7bb799ea7414332645ac64dc178fcf0 100644
--- a/src/heap/heap.h
+++ b/src/heap/heap.h
@@ -189,11 +189,6 @@
V(FixedArray, detached_contexts, DetachedContexts) \
V(ArrayList, retained_maps, RetainedMaps) \
V(WeakHashTable, weak_object_to_code_table, WeakObjectToCodeTable) \
- /* weak_new_space_object_to_code_list is an array of weak cells, where */ \
- /* slots with even indices refer to the weak object, and the subsequent */ \
- /* slots refer to the code with the reference to the weak object. */ \
- V(ArrayList, weak_new_space_object_to_code_list, \
- WeakNewSpaceObjectToCodeList) \
V(PropertyCell, array_protector, ArrayProtector) \
V(Cell, is_concat_spreadable_protector, IsConcatSpreadableProtector) \
V(PropertyCell, empty_property_cell, EmptyPropertyCell) \
@@ -844,9 +839,6 @@
return new_space_.IsAtMaximumCapacity() && maximum_size_scavenges_ == 0;
}
- void AddWeakNewSpaceObjectToCodeDependency(Handle<HeapObject> obj,
- Handle<WeakCell> code);
-
void AddWeakObjectToCodeDependency(Handle<HeapObject> obj,
Handle<DependentCode> dep);
@@ -1107,8 +1099,6 @@
// Write barrier support for object[offset] = o;
inline void RecordWrite(Object* object, int offset, Object* o);
- inline void RecordWriteIntoCode(Code* host, RelocInfo* rinfo, Object* target);
- void RecordWriteIntoCodeSlow(Code* host, RelocInfo* rinfo, Object* target);
inline void RecordFixedArrayElements(FixedArray* array, int offset,
int length);
« no previous file with comments | « src/compiler.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698