diff options
Diffstat (limited to 'deps/v8/src/ic.h')
-rw-r--r-- | deps/v8/src/ic.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/deps/v8/src/ic.h b/deps/v8/src/ic.h index 4b301c5baa..9a663ba6aa 100644 --- a/deps/v8/src/ic.h +++ b/deps/v8/src/ic.h @@ -358,8 +358,6 @@ class KeyedIC: public IC { virtual Code::Kind kind() const = 0; - virtual String* GetStubNameForCache(IC::State ic_state) = 0; - MaybeObject* ComputeStub(JSObject* receiver, bool is_store, StrictModeFlag strict_mode, @@ -426,8 +424,6 @@ class KeyedLoadIC: public KeyedIC { protected: virtual Code::Kind kind() const { return Code::KEYED_LOAD_IC; } - virtual String* GetStubNameForCache(IC::State ic_state); - virtual MaybeObject* ConstructMegamorphicStub( MapList* receiver_maps, CodeList* targets, @@ -581,8 +577,6 @@ class KeyedStoreIC: public KeyedIC { protected: virtual Code::Kind kind() const { return Code::KEYED_STORE_IC; } - virtual String* GetStubNameForCache(IC::State ic_state); - virtual MaybeObject* ConstructMegamorphicStub( MapList* receiver_maps, CodeList* targets, |