diff options
author | Michaël Zasso <targos@protonmail.com> | 2017-02-14 11:27:26 +0100 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2017-02-22 15:55:42 +0100 |
commit | 7a77daf24344db7942e34c962b0f1ee729ab7af5 (patch) | |
tree | e7cbe7bf4e2f4b802a8f5bc18336c546cd6a0d7f /deps/v8/src/field-index.h | |
parent | 5f08871ee93ea739148cc49e0f7679e33c70295a (diff) | |
download | node-new-7a77daf24344db7942e34c962b0f1ee729ab7af5.tar.gz |
deps: update V8 to 5.6.326.55
PR-URL: https://github.com/nodejs/node/pull/10992
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
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); |