OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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 #if V8_TARGET_ARCH_S390 | 5 #if V8_TARGET_ARCH_S390 |
6 | 6 |
7 #include "src/interface-descriptors.h" | 7 #include "src/interface-descriptors.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 Register registers[] = {r3, r2}; | 268 Register registers[] = {r3, r2}; |
269 data->InitializePlatformSpecific(arraysize(registers), registers); | 269 data->InitializePlatformSpecific(arraysize(registers), registers); |
270 } | 270 } |
271 | 271 |
272 void BinaryOpWithAllocationSiteDescriptor::InitializePlatformSpecific( | 272 void BinaryOpWithAllocationSiteDescriptor::InitializePlatformSpecific( |
273 CallInterfaceDescriptorData* data) { | 273 CallInterfaceDescriptorData* data) { |
274 Register registers[] = {r4, r3, r2}; | 274 Register registers[] = {r4, r3, r2}; |
275 data->InitializePlatformSpecific(arraysize(registers), registers); | 275 data->InitializePlatformSpecific(arraysize(registers), registers); |
276 } | 276 } |
277 | 277 |
| 278 void CountOpDescriptor::InitializePlatformSpecific( |
| 279 CallInterfaceDescriptorData* data) { |
| 280 Register registers[] = {r4}; |
| 281 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 282 } |
| 283 |
278 void StringAddDescriptor::InitializePlatformSpecific( | 284 void StringAddDescriptor::InitializePlatformSpecific( |
279 CallInterfaceDescriptorData* data) { | 285 CallInterfaceDescriptorData* data) { |
280 Register registers[] = {r3, r2}; | 286 Register registers[] = {r3, r2}; |
281 data->InitializePlatformSpecific(arraysize(registers), registers); | 287 data->InitializePlatformSpecific(arraysize(registers), registers); |
282 } | 288 } |
283 | 289 |
284 void KeyedDescriptor::InitializePlatformSpecific( | 290 void KeyedDescriptor::InitializePlatformSpecific( |
285 CallInterfaceDescriptorData* data) { | 291 CallInterfaceDescriptorData* data) { |
286 Register registers[] = { | 292 Register registers[] = { |
287 r4, // key | 293 r4, // key |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 r3, // the JSGeneratorObject to resume | 380 r3, // the JSGeneratorObject to resume |
375 r4 // the resume mode (tagged) | 381 r4 // the resume mode (tagged) |
376 }; | 382 }; |
377 data->InitializePlatformSpecific(arraysize(registers), registers); | 383 data->InitializePlatformSpecific(arraysize(registers), registers); |
378 } | 384 } |
379 | 385 |
380 } // namespace internal | 386 } // namespace internal |
381 } // namespace v8 | 387 } // namespace v8 |
382 | 388 |
383 #endif // V8_TARGET_ARCH_S390 | 389 #endif // V8_TARGET_ARCH_S390 |
OLD | NEW |