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

Unified Diff: src/ic/ic.h

Issue 2184063002: [stubs] Cleanup CodeFactory. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Created 4 years, 5 months 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/code-stubs.h ('k') | src/ic/ic.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « src/code-stubs.h ('k') | src/ic/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698