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

Unified Diff: src/code-stubs.cc

Issue 1053143005: Collect type feedback on result of Math.[round|ceil|floor] (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Tweaks Created 5 years, 8 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/hydrogen.h » ('j') | src/ia32/code-stubs-ia32.cc » ('J')
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 29fbb3c8648a8fff2fbbdcba11ffefee7be3b826..41cac84db4ff8104eb4bcfb197f79c1e9a0009ec 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -537,6 +537,21 @@ Type* CompareNilICStub::GetInputType(Zone* zone, Handle<Map> map) {
}
+void CallIC_RoundStub::PrintState(std::ostream& os) const { // NOLINT
+ os << state() << " (Round)";
+}
+
+
+void CallIC_FloorStub::PrintState(std::ostream& os) const { // NOLINT
+ os << state() << " (Floor)";
+}
+
+
+void CallIC_CeilStub::PrintState(std::ostream& os) const { // NOLINT
+ os << state() << " (Ceil)";
+}
+
+
void CallIC_ArrayStub::PrintState(std::ostream& os) const { // NOLINT
os << state() << " (Array)";
}
« no previous file with comments | « src/code-stubs.h ('k') | src/hydrogen.h » ('j') | src/ia32/code-stubs-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698