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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 | 369 |
370 void ResumeGeneratorDescriptor::InitializePlatformSpecific( | 370 void ResumeGeneratorDescriptor::InitializePlatformSpecific( |
371 CallInterfaceDescriptorData* data) { | 371 CallInterfaceDescriptorData* data) { |
372 Register registers[] = { | 372 Register registers[] = { |
373 r2, // the value to pass to the generator | 373 r2, // the value to pass to the generator |
374 r3, // the JSGeneratorObject to resume | 374 r3, // the JSGeneratorObject to resume |
375 r4 // the resume mode (tagged) | 375 r4 // the resume mode (tagged) |
376 }; | 376 }; |
377 data->InitializePlatformSpecific(arraysize(registers), registers); | 377 data->InitializePlatformSpecific(arraysize(registers), registers); |
378 } | 378 } |
| 379 |
| 380 void AtomicsLoadDescriptor::InitializePlatformSpecific( |
| 381 CallInterfaceDescriptorData* data) { |
| 382 Register registers[] = { |
| 383 r3, // the typedarray object |
| 384 r2 // the index to load (untagged) |
| 385 }; |
| 386 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 387 } |
379 } // namespace internal | 388 } // namespace internal |
380 } // namespace v8 | 389 } // namespace v8 |
381 | 390 |
382 #endif // V8_TARGET_ARCH_S390 | 391 #endif // V8_TARGET_ARCH_S390 |
OLD | NEW |