| Index: src/stub-cache.h
|
| diff --git a/src/stub-cache.h b/src/stub-cache.h
|
| index 954c249e68108983d007e6724b497eb95ff77d44..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
|
|
|