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

Unified Diff: src/code-stubs.cc

Issue 2676543002: [stubs] Rip out obsolete CallICState. (Closed)
Patch Set: Created 3 years, 11 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-state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index 6134204f68102379a3c8ea2d4ea0bb5aa6df324b..ec9d04a40da4ec7384334b83e6813366f7fa39c5 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -1756,7 +1756,11 @@ void HydrogenCodeStub::TraceTransition(StateType from, StateType to) {
}
void CallICStub::PrintState(std::ostream& os) const { // NOLINT
- os << state();
+ os << convert_mode() << ", " << tail_call_mode();
+}
+
+void CallICTrampolineStub::PrintState(std::ostream& os) const { // NOLINT
+ os << convert_mode() << ", " << tail_call_mode();
}
void CallICTrampolineStub::GenerateAssembly(
« no previous file with comments | « src/code-stubs.h ('k') | src/ic/ic-state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698