| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #if V8_TARGET_ARCH_PPC | 7 #if V8_TARGET_ARCH_PPC |
| 8 | 8 |
| 9 #include "src/interface-descriptors.h" | 9 #include "src/interface-descriptors.h" |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 | 48 |
| 49 const Register MathPowTaggedDescriptor::exponent() { return r5; } | 49 const Register MathPowTaggedDescriptor::exponent() { return r5; } |
| 50 | 50 |
| 51 | 51 |
| 52 const Register MathPowIntegerDescriptor::exponent() { | 52 const Register MathPowIntegerDescriptor::exponent() { |
| 53 return MathPowTaggedDescriptor::exponent(); | 53 return MathPowTaggedDescriptor::exponent(); |
| 54 } | 54 } |
| 55 | 55 |
| 56 | 56 |
| 57 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r3; } |
| 58 const Register GrowArrayElementsDescriptor::KeyRegister() { return r6; } |
| 59 const Register GrowArrayElementsDescriptor::CapacityRegister() { return r5; } |
| 60 |
| 61 |
| 57 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 62 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
| 58 Register registers[] = {cp, r5}; | 63 Register registers[] = {cp, r5}; |
| 59 data->Initialize(arraysize(registers), registers, NULL); | 64 data->Initialize(arraysize(registers), registers, NULL); |
| 60 } | 65 } |
| 61 | 66 |
| 62 | 67 |
| 63 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 68 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
| 64 Register registers[] = {cp, r4}; | 69 Register registers[] = {cp, r4}; |
| 65 data->Initialize(arraysize(registers), registers, NULL); | 70 data->Initialize(arraysize(registers), registers, NULL); |
| 66 } | 71 } |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 Representation::Tagged(), // call_data | 360 Representation::Tagged(), // call_data |
| 356 Representation::Tagged(), // holder | 361 Representation::Tagged(), // holder |
| 357 Representation::External(), // api_function_address | 362 Representation::External(), // api_function_address |
| 358 }; | 363 }; |
| 359 data->Initialize(arraysize(registers), registers, representations); | 364 data->Initialize(arraysize(registers), registers, representations); |
| 360 } | 365 } |
| 361 } | 366 } |
| 362 } // namespace v8::internal | 367 } // namespace v8::internal |
| 363 | 368 |
| 364 #endif // V8_TARGET_ARCH_PPC | 369 #endif // V8_TARGET_ARCH_PPC |
| OLD | NEW |