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

Unified Diff: src/objects-body-descriptors.h

Issue 1479483004: Allow in-object properties in JSArrayBuffer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@in-obj-data-view-and-array-buffer-view
Patch Set: Test updated Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/objects.cc ('k') | src/objects-body-descriptors-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-body-descriptors.h
diff --git a/src/objects-body-descriptors.h b/src/objects-body-descriptors.h
index 8168447da688bf392fb3ad6a56fbd4f81e1cb71d..91cb8883be88739eab2b10df71f6f0d08aab436e 100644
--- a/src/objects-body-descriptors.h
+++ b/src/objects-body-descriptors.h
@@ -51,13 +51,15 @@ class BodyDescriptorBase BASE_EMBEDDED {
static inline void IteratePointer(Heap* heap, HeapObject* obj, int offset);
protected:
- // Returns true for all header fields.
+ // Returns true for all header and internal fields.
static inline bool IsValidSlotImpl(HeapObject* obj, int offset);
+ // Treats all header and internal fields in the range as tagged.
template <typename ObjectVisitor>
static inline void IterateBodyImpl(HeapObject* obj, int start_offset,
int end_offset, ObjectVisitor* v);
+ // Treats all header and internal fields in the range as tagged.
template <typename StaticVisitor>
static inline void IterateBodyImpl(Heap* heap, HeapObject* obj,
int start_offset, int end_offset);
« no previous file with comments | « src/objects.cc ('k') | src/objects-body-descriptors-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698