| Index: src/ic/ic.h
|
| diff --git a/src/ic/ic.h b/src/ic/ic.h
|
| index 66aee0a341c8e1f06d6a942312616d158bfffafb..52508bb267c995065390f36ab671312c66bb1c52 100644
|
| --- a/src/ic/ic.h
|
| +++ b/src/ic/ic.h
|
| @@ -260,11 +260,6 @@ class CallIC : public IC {
|
|
|
| void HandleMiss(Handle<Object> function);
|
|
|
| - // Code generator routines.
|
| - static Handle<Code> initialize_stub_in_optimized_code(
|
| - Isolate* isolate, int argc, ConvertReceiverMode mode,
|
| - TailCallMode tail_call_mode);
|
| -
|
| static void Clear(Isolate* isolate, Code* host, CallICNexus* nexus);
|
| };
|
|
|
| @@ -289,8 +284,6 @@ class LoadIC : public IC {
|
| static void GenerateRuntimeGetProperty(MacroAssembler* masm);
|
| static void GenerateNormal(MacroAssembler* masm);
|
|
|
| - static Handle<Code> initialize_stub_in_optimized_code(Isolate* isolate);
|
| -
|
| MUST_USE_RESULT MaybeHandle<Object> Load(Handle<Object> object,
|
| Handle<Name> name);
|
|
|
| @@ -321,9 +314,6 @@ class LoadGlobalIC : public LoadIC {
|
| LoadGlobalIC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus = NULL)
|
| : LoadIC(depth, isolate, nexus) {}
|
|
|
| - static Handle<Code> initialize_stub_in_optimized_code(
|
| - Isolate* isolate, ExtraICState extra_state);
|
| -
|
| MUST_USE_RESULT MaybeHandle<Object> Load(Handle<Name> name);
|
|
|
| static void Clear(Isolate* isolate, Code* host, LoadGlobalICNexus* nexus);
|
| @@ -355,7 +345,6 @@ class KeyedLoadIC : public LoadIC {
|
| static void GenerateRuntimeGetProperty(MacroAssembler* masm);
|
| static void GenerateMegamorphic(MacroAssembler* masm);
|
|
|
| - static Handle<Code> initialize_stub_in_optimized_code(Isolate* isolate);
|
| static Handle<Code> ChooseMegamorphicStub(Isolate* isolate,
|
| ExtraICState extra_state);
|
|
|
| @@ -386,9 +375,6 @@ class StoreIC : public IC {
|
| static void GenerateMiss(MacroAssembler* masm);
|
| static void GenerateNormal(MacroAssembler* masm);
|
|
|
| - static Handle<Code> initialize_stub_in_optimized_code(
|
| - Isolate* isolate, LanguageMode language_mode);
|
| -
|
| MUST_USE_RESULT MaybeHandle<Object> Store(
|
| Handle<Object> object, Handle<Name> name, Handle<Object> value,
|
| JSReceiver::StoreFromKeyed store_mode =
|
| @@ -452,8 +438,6 @@ class KeyedStoreIC : public StoreIC {
|
| static void GenerateMegamorphic(MacroAssembler* masm,
|
| LanguageMode language_mode);
|
|
|
| - static Handle<Code> initialize_stub_in_optimized_code(
|
| - Isolate* isolate, LanguageMode language_mode);
|
| static Handle<Code> ChooseMegamorphicStub(Isolate* isolate,
|
| ExtraICState extra_state);
|
|
|
| @@ -493,9 +477,6 @@ class CompareIC : public IC {
|
| // Helper function for computing the condition for a compare operation.
|
| static Condition ComputeCondition(Token::Value op);
|
|
|
| - // Factory method for getting an uninitialized compare stub.
|
| - static Handle<Code> GetUninitialized(Isolate* isolate, Token::Value op);
|
| -
|
| private:
|
| static bool HasInlinedSmiCode(Address address);
|
|
|
|
|