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

Unified Diff: src/arguments.cc

Issue 78283002: Restore saved caller FP registers on stub failure (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/arguments.h ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arguments.cc
diff --git a/src/arguments.cc b/src/arguments.cc
index 3a4d733152ff8c7a0b0b7f059118541971852b1e..abcc8a7756457d9c461dd07799eb9fa3ac7b6cef 100644
--- a/src/arguments.cc
+++ b/src/arguments.cc
@@ -116,5 +116,11 @@ FOR_EACH_CALLBACK_TABLE_MAPPING_2_VOID_RETURN(WRITE_CALL_2_VOID)
#undef WRITE_CALL_2
#undef WRITE_CALL_2_VOID
+#ifdef DEBUG
+double ClobberDoubleRegisters(double x1, double x2, double x3, double x4) {
danno 2013/11/20 13:55:52 This is pretty fragile. How about making this a pl
ulan 2013/11/20 16:20:05 Removed DEBUG and add TODO for platform specific a
+ return x1 * 1.01 + x2 * 2.02 + x3 * 3.03 + x4 * 4.04;
+}
+#endif
+
} } // namespace v8::internal
« no previous file with comments | « src/arguments.h ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698