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

Unified Diff: src/ic/ppc/access-compiler-ppc.cc

Issue 714093002: PowerPC specific sub-directories. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « no previous file | src/ic/ppc/handler-compiler-ppc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/ppc/access-compiler-ppc.cc
diff --git a/src/ic/arm/access-compiler-arm.cc b/src/ic/ppc/access-compiler-ppc.cc
similarity index 80%
copy from src/ic/arm/access-compiler-arm.cc
copy to src/ic/ppc/access-compiler-ppc.cc
index 4a4d688c053beb788125219c2f7941fcf105484c..e98f5172f8c90f054c90a036f826aaddaf6adcdc 100644
--- a/src/ic/arm/access-compiler-arm.cc
+++ b/src/ic/ppc/access-compiler-ppc.cc
@@ -4,7 +4,7 @@
#include "src/v8.h"
-#if V8_TARGET_ARCH_ARM
+#if V8_TARGET_ARCH_PPC
#include "src/ic/access-compiler.h"
@@ -24,7 +24,7 @@ Register* PropertyAccessCompiler::load_calling_convention() {
// receiver, name, scratch1, scratch2, scratch3, scratch4.
Register receiver = LoadDescriptor::ReceiverRegister();
Register name = LoadDescriptor::NameRegister();
- static Register registers[] = {receiver, name, r3, r0, r4, r5};
+ static Register registers[] = {receiver, name, r6, r3, r7, r8};
return registers;
}
@@ -33,8 +33,8 @@ Register* PropertyAccessCompiler::store_calling_convention() {
// receiver, name, scratch1, scratch2, scratch3.
Register receiver = StoreDescriptor::ReceiverRegister();
Register name = StoreDescriptor::NameRegister();
- DCHECK(r3.is(ElementTransitionAndStoreDescriptor::MapRegister()));
- static Register registers[] = {receiver, name, r3, r4, r5};
+ DCHECK(r6.is(ElementTransitionAndStoreDescriptor::MapRegister()));
+ static Register registers[] = {receiver, name, r6, r7, r8};
return registers;
}
@@ -43,4 +43,4 @@ Register* PropertyAccessCompiler::store_calling_convention() {
}
} // namespace v8::internal
-#endif // V8_TARGET_ARCH_IA32
+#endif // V8_TARGET_ARCH_PPC
« no previous file with comments | « no previous file | src/ic/ppc/handler-compiler-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698