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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 } | 120 } |
121 | 121 |
122 | 122 |
123 void TypeofDescriptor::InitializePlatformSpecific( | 123 void TypeofDescriptor::InitializePlatformSpecific( |
124 CallInterfaceDescriptorData* data) { | 124 CallInterfaceDescriptorData* data) { |
125 Register registers[] = {r3}; | 125 Register registers[] = {r3}; |
126 data->InitializePlatformSpecific(arraysize(registers), registers); | 126 data->InitializePlatformSpecific(arraysize(registers), registers); |
127 } | 127 } |
128 | 128 |
129 | 129 |
| 130 void FastCloneRegExpDescriptor::InitializePlatformSpecific( |
| 131 CallInterfaceDescriptorData* data) { |
| 132 Register registers[] = {r3, r2, r1, r0}; |
| 133 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 134 } |
| 135 |
| 136 |
130 void FastCloneShallowArrayDescriptor::InitializePlatformSpecific( | 137 void FastCloneShallowArrayDescriptor::InitializePlatformSpecific( |
131 CallInterfaceDescriptorData* data) { | 138 CallInterfaceDescriptorData* data) { |
132 Register registers[] = {r3, r2, r1}; | 139 Register registers[] = {r3, r2, r1}; |
133 data->InitializePlatformSpecific(arraysize(registers), registers); | 140 data->InitializePlatformSpecific(arraysize(registers), registers); |
134 } | 141 } |
135 | 142 |
136 | 143 |
137 void FastCloneShallowObjectDescriptor::InitializePlatformSpecific( | 144 void FastCloneShallowObjectDescriptor::InitializePlatformSpecific( |
138 CallInterfaceDescriptorData* data) { | 145 CallInterfaceDescriptorData* data) { |
139 Register registers[] = {r3, r2, r1, r0}; | 146 Register registers[] = {r3, r2, r1, r0}; |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 r2, // address of first argument (argv) | 468 r2, // address of first argument (argv) |
462 r1 // the runtime function to call | 469 r1 // the runtime function to call |
463 }; | 470 }; |
464 data->InitializePlatformSpecific(arraysize(registers), registers); | 471 data->InitializePlatformSpecific(arraysize(registers), registers); |
465 } | 472 } |
466 | 473 |
467 } // namespace internal | 474 } // namespace internal |
468 } // namespace v8 | 475 } // namespace v8 |
469 | 476 |
470 #endif // V8_TARGET_ARCH_ARM | 477 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |