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 77% |
copy from src/ic/arm/access-compiler-arm.cc |
copy to src/ic/ppc/access-compiler-ppc.cc |
index 4a4d688c053beb788125219c2f7941fcf105484c..3876cb98cf6ee58d1b485209d0eaf568da3facc9 100644 |
--- a/src/ic/arm/access-compiler-arm.cc |
+++ b/src/ic/ppc/access-compiler-ppc.cc |
@@ -1,10 +1,13 @@ |
// Copyright 2014 the V8 project authors. All rights reserved. |
+// |
+// Copyright IBM Corp. 2012, 2013. All rights reserved. |
danno
2014/09/23 09:06:15
Could you remove IBM copyright from all the new fi
|
+// |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
#include "src/v8.h" |
-#if V8_TARGET_ARCH_ARM |
+#if V8_TARGET_ARCH_PPC |
#include "src/ic/access-compiler.h" |
@@ -24,7 +27,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 +36,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 +46,4 @@ Register* PropertyAccessCompiler::store_calling_convention() { |
} |
} // namespace v8::internal |
-#endif // V8_TARGET_ARCH_IA32 |
+#endif // V8_TARGET_ARCH_PPC |