OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/arm/interface-descriptors-arm.h" | 5 #include "src/arm/interface-descriptors-arm.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_ARM | 7 #if V8_TARGET_ARCH_ARM |
8 | 8 |
9 #include "src/interface-descriptors.h" | 9 #include "src/interface-descriptors.h" |
10 | 10 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 108 |
109 // static | 109 // static |
110 const Register ToLengthDescriptor::ReceiverRegister() { return r0; } | 110 const Register ToLengthDescriptor::ReceiverRegister() { return r0; } |
111 | 111 |
112 | 112 |
113 // static | 113 // static |
114 const Register ToStringDescriptor::ReceiverRegister() { return r0; } | 114 const Register ToStringDescriptor::ReceiverRegister() { return r0; } |
115 | 115 |
116 | 116 |
117 // static | 117 // static |
| 118 const Register ToNameDescriptor::ReceiverRegister() { return r0; } |
| 119 |
| 120 |
| 121 // static |
118 const Register ToObjectDescriptor::ReceiverRegister() { return r0; } | 122 const Register ToObjectDescriptor::ReceiverRegister() { return r0; } |
119 | 123 |
120 | 124 |
121 void NumberToStringDescriptor::InitializePlatformSpecific( | 125 void NumberToStringDescriptor::InitializePlatformSpecific( |
122 CallInterfaceDescriptorData* data) { | 126 CallInterfaceDescriptorData* data) { |
123 Register registers[] = {r0}; | 127 Register registers[] = {r0}; |
124 data->InitializePlatformSpecific(arraysize(registers), registers); | 128 data->InitializePlatformSpecific(arraysize(registers), registers); |
125 } | 129 } |
126 | 130 |
127 | 131 |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 r2, // address of first argument (argv) | 460 r2, // address of first argument (argv) |
457 r1 // the runtime function to call | 461 r1 // the runtime function to call |
458 }; | 462 }; |
459 data->InitializePlatformSpecific(arraysize(registers), registers); | 463 data->InitializePlatformSpecific(arraysize(registers), registers); |
460 } | 464 } |
461 | 465 |
462 } // namespace internal | 466 } // namespace internal |
463 } // namespace v8 | 467 } // namespace v8 |
464 | 468 |
465 #endif // V8_TARGET_ARCH_ARM | 469 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |