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

Unified Diff: src/ic/ic-state.cc

Issue 1436493002: [builtins] Introduce specialized Call/CallFunction builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/ic/ic-state.h ('k') | src/mips/builtins-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/ic-state.cc
diff --git a/src/ic/ic-state.cc b/src/ic/ic-state.cc
index fa35a83ea88cfd9caa04d49b7ff7809e20f965c9..298eaa2707d7a9ec6a00f43b7039941573d3adf3 100644
--- a/src/ic/ic-state.cc
+++ b/src/ic/ic-state.cc
@@ -16,15 +16,8 @@ void ICUtility::Clear(Isolate* isolate, Address address,
}
-ExtraICState CallICState::GetExtraICState() const {
- ExtraICState extra_ic_state = ArgcBits::encode(argc_);
- return extra_ic_state;
-}
-
-
std::ostream& operator<<(std::ostream& os, const CallICState& s) {
- return os << "(args(" << s.arg_count() << "), "
- << ", ";
+ return os << "(args(" << s.argc() << "), " << s.convert_mode() << ", ";
}
« no previous file with comments | « src/ic/ic-state.h ('k') | src/mips/builtins-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698