| Index: src/stub-cache.h
|
| diff --git a/src/stub-cache.h b/src/stub-cache.h
|
| index 360bbfb5ade6ee53b7925cb62696742ef287f4c0..1f3fa9320213c5d2b6b4463ce723287b251449d7 100644
|
| --- a/src/stub-cache.h
|
| +++ b/src/stub-cache.h
|
| @@ -138,7 +138,7 @@ class StubCache {
|
|
|
| // ---
|
|
|
| - Handle<Code> ComputeCallInitialize(int argc, ContextualMode mode);
|
| + Handle<Code> ComputeCallInitialize(int argc);
|
|
|
| Handle<Code> ComputeKeyedCallInitialize(int argc);
|
|
|
| @@ -185,7 +185,7 @@ class StubCache {
|
| ExtraICState extra_ic_state);
|
|
|
| // Finds the Code object stored in the Heap::non_monomorphic_cache().
|
| - Code* FindCallInitialize(int argc, ContextualMode mode, Code::Kind kind);
|
| + Code* FindCallInitialize(int argc, Code::Kind kind);
|
| Code* FindPreMonomorphicIC(Code::Kind kind, ExtraICState extra_ic_state);
|
|
|
| #ifdef ENABLE_DEBUGGER_SUPPORT
|
| @@ -269,9 +269,7 @@ class StubCache {
|
| private:
|
| explicit StubCache(Isolate* isolate);
|
|
|
| - Handle<Code> ComputeCallInitialize(int argc,
|
| - ContextualMode mode,
|
| - Code::Kind kind);
|
| + Handle<Code> ComputeCallInitialize(int argc, Code::Kind kind);
|
|
|
| // The stub cache has a primary and secondary level. The two levels have
|
| // different hashing algorithms in order to avoid simultaneous collisions
|
| @@ -1000,8 +998,6 @@ class CallStubCompiler: public StubCompiler {
|
| Handle<JSFunction> function,
|
| Handle<String> name);
|
|
|
| - CallKind call_kind();
|
| -
|
| Handle<Code> GetCode(Code::StubType type, Handle<Name> name);
|
| Handle<Code> GetCode(Handle<JSFunction> function);
|
|
|
|
|