Index: src/ic.h |
diff --git a/src/ic.h b/src/ic.h |
index 8562bcc24a80cb074d573ddce8b4c51fbe63ae9a..9996affa746ce50ce327cb2e1499b365b1c9296a 100644 |
--- a/src/ic.h |
+++ b/src/ic.h |
@@ -193,16 +193,29 @@ class CallICBase: public IC { |
public: |
MUST_USE_RESULT MaybeObject* LoadFunction(State state, |
+ Code::ExtraICState extra_ic_state, |
Handle<Object> object, |
Handle<String> name); |
protected: |
Code::Kind kind_; |
+ bool TryUpdateExtraICState(LookupResult* lookup, |
+ Handle<Object> object, |
+ Code::ExtraICState* extra_ic_state); |
+ |
+ MUST_USE_RESULT MaybeObject* ComputeMonomorphicStub( |
+ LookupResult* lookup, |
+ State state, |
+ Code::ExtraICState extra_ic_state, |
+ Handle<Object> object, |
+ Handle<String> name); |
+ |
// Update the inline cache and the global stub cache based on the |
// lookup result. |
void UpdateCaches(LookupResult* lookup, |
State state, |
+ Code::ExtraICState extra_ic_state, |
Handle<Object> object, |
Handle<String> name); |