| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; } | 59 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; } |
| 60 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; } | 60 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; } |
| 61 | 61 |
| 62 void FastNewClosureDescriptor::InitializePlatformSpecific( | 62 void FastNewClosureDescriptor::InitializePlatformSpecific( |
| 63 CallInterfaceDescriptorData* data) { | 63 CallInterfaceDescriptorData* data) { |
| 64 Register registers[] = {r4}; | 64 Register registers[] = {r4}; |
| 65 data->InitializePlatformSpecific(arraysize(registers), registers); | 65 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 66 } | 66 } |
| 67 | 67 |
| 68 void FastNewObjectDescriptor::InitializePlatformSpecific( | |
| 69 CallInterfaceDescriptorData* data) { | |
| 70 Register registers[] = {r3, r5}; | |
| 71 data->InitializePlatformSpecific(arraysize(registers), registers); | |
| 72 } | |
| 73 | |
| 74 void FastNewRestParameterDescriptor::InitializePlatformSpecific( | 68 void FastNewRestParameterDescriptor::InitializePlatformSpecific( |
| 75 CallInterfaceDescriptorData* data) { | 69 CallInterfaceDescriptorData* data) { |
| 76 Register registers[] = {r3}; | 70 Register registers[] = {r3}; |
| 77 data->InitializePlatformSpecific(arraysize(registers), registers); | 71 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 78 } | 72 } |
| 79 | 73 |
| 80 void FastNewSloppyArgumentsDescriptor::InitializePlatformSpecific( | 74 void FastNewSloppyArgumentsDescriptor::InitializePlatformSpecific( |
| 81 CallInterfaceDescriptorData* data) { | 75 CallInterfaceDescriptorData* data) { |
| 82 Register registers[] = {r3}; | 76 Register registers[] = {r3}; |
| 83 data->InitializePlatformSpecific(arraysize(registers), registers); | 77 data->InitializePlatformSpecific(arraysize(registers), registers); |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 r3, // the JSGeneratorObject to resume | 378 r3, // the JSGeneratorObject to resume |
| 385 r4 // the resume mode (tagged) | 379 r4 // the resume mode (tagged) |
| 386 }; | 380 }; |
| 387 data->InitializePlatformSpecific(arraysize(registers), registers); | 381 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 388 } | 382 } |
| 389 | 383 |
| 390 } // namespace internal | 384 } // namespace internal |
| 391 } // namespace v8 | 385 } // namespace v8 |
| 392 | 386 |
| 393 #endif // V8_TARGET_ARCH_S390 | 387 #endif // V8_TARGET_ARCH_S390 |
| OLD | NEW |