| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 Register registers[] = {r3, r2}; | 262 Register registers[] = {r3, r2}; |
| 263 data->InitializePlatformSpecific(arraysize(registers), registers); | 263 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 264 } | 264 } |
| 265 | 265 |
| 266 void CompareDescriptor::InitializePlatformSpecific( | 266 void CompareDescriptor::InitializePlatformSpecific( |
| 267 CallInterfaceDescriptorData* data) { | 267 CallInterfaceDescriptorData* data) { |
| 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 CompareNilDescriptor::InitializePlatformSpecific( | |
| 273 CallInterfaceDescriptorData* data) { | |
| 274 Register registers[] = {r2}; | |
| 275 data->InitializePlatformSpecific(arraysize(registers), registers); | |
| 276 } | |
| 277 | |
| 278 void ToBooleanDescriptor::InitializePlatformSpecific( | 272 void ToBooleanDescriptor::InitializePlatformSpecific( |
| 279 CallInterfaceDescriptorData* data) { | 273 CallInterfaceDescriptorData* data) { |
| 280 Register registers[] = {r2}; | 274 Register registers[] = {r2}; |
| 281 data->InitializePlatformSpecific(arraysize(registers), registers); | 275 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 282 } | 276 } |
| 283 | 277 |
| 284 void BinaryOpDescriptor::InitializePlatformSpecific( | 278 void BinaryOpDescriptor::InitializePlatformSpecific( |
| 285 CallInterfaceDescriptorData* data) { | 279 CallInterfaceDescriptorData* data) { |
| 286 Register registers[] = {r3, r2}; | 280 Register registers[] = {r3, r2}; |
| 287 data->InitializePlatformSpecific(arraysize(registers), registers); | 281 data->InitializePlatformSpecific(arraysize(registers), registers); |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 r4, // address of first argument (argv) | 376 r4, // address of first argument (argv) |
| 383 r3 // the runtime function to call | 377 r3 // the runtime function to call |
| 384 }; | 378 }; |
| 385 data->InitializePlatformSpecific(arraysize(registers), registers); | 379 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 386 } | 380 } |
| 387 | 381 |
| 388 } // namespace internal | 382 } // namespace internal |
| 389 } // namespace v8 | 383 } // namespace v8 |
| 390 | 384 |
| 391 #endif // V8_TARGET_ARCH_S390 | 385 #endif // V8_TARGET_ARCH_S390 |
| OLD | NEW |