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

Unified Diff: src/compiler/ppc/linkage-ppc.cc

Issue 1191513003: [turbofan] Add CalleeSavedFPRegisters to CallDescriptor. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Added ports (except ppc). Created 5 years, 6 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
Index: src/compiler/ppc/linkage-ppc.cc
diff --git a/src/compiler/ppc/linkage-ppc.cc b/src/compiler/ppc/linkage-ppc.cc
index 39ebb63efa3b59a7dccac5b604521809606d2f3b..f80aeaf7cfba3745c0edb2cc7ac3cfcc9a64c712 100644
--- a/src/compiler/ppc/linkage-ppc.cc
+++ b/src/compiler/ppc/linkage-ppc.cc
@@ -25,6 +25,10 @@ struct PPCLinkageHelperTraits {
r24.bit() | r25.bit() | r26.bit() | r27.bit() | r28.bit() |
r29.bit() | r30.bit() | fp.bit();
}
+ static RegList CCalleeSaveFPRegisters() {
+ // TODO(palfia): finish.
paul.l... 2015/06/23 02:15:02 Remove the comment for now, and let's just return
akos.palfi.imgtec 2015/06/23 19:48:57 Done.
+ return 0;
+ }
static Register CRegisterParameter(int i) {
static Register register_parameters[] = {r3, r4, r5, r6, r7, r8, r9, r10};
return register_parameters[i];

Powered by Google App Engine
This is Rietveld 408576698