diff options
Diffstat (limited to 'deps/v8/src/field-index.h')
-rw-r--r-- | deps/v8/src/field-index.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/deps/v8/src/field-index.h b/deps/v8/src/field-index.h index 404c0f613f..37b2f3c59d 100644 --- a/deps/v8/src/field-index.h +++ b/deps/v8/src/field-index.h @@ -27,12 +27,9 @@ class FieldIndex final { static FieldIndex ForInObjectOffset(int offset, Map* map = NULL); static FieldIndex ForDescriptor(Map* map, int descriptor_index); static FieldIndex ForLoadByFieldIndex(Map* map, int index); - static FieldIndex ForLoadByFieldOffset(Map* map, int index); - static FieldIndex ForKeyedLookupCacheIndex(Map* map, int index); static FieldIndex FromFieldAccessStubKey(int key); int GetLoadByFieldIndex() const; - int GetLoadByFieldOffset() const; bool is_inobject() const { return IsInObjectBits::decode(bit_field_); @@ -69,8 +66,6 @@ class FieldIndex final { return result; } - int GetKeyedLookupCacheIndex() const; - int GetFieldAccessStubKey() const { return bit_field_ & (IsInObjectBits::kMask | IsDoubleBits::kMask | IndexBits::kMask); |