| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; } | 70 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; } |
| 71 const Register GrowArrayElementsDescriptor::KeyRegister() { return r3; } | 71 const Register GrowArrayElementsDescriptor::KeyRegister() { return r3; } |
| 72 | 72 |
| 73 | 73 |
| 74 void FastNewClosureDescriptor::InitializePlatformSpecific( | 74 void FastNewClosureDescriptor::InitializePlatformSpecific( |
| 75 CallInterfaceDescriptorData* data) { | 75 CallInterfaceDescriptorData* data) { |
| 76 Register registers[] = {r2}; | 76 Register registers[] = {r2}; |
| 77 data->InitializePlatformSpecific(arraysize(registers), registers); | 77 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 78 } | 78 } |
| 79 | 79 |
| 80 | 80 void FastNewFunctionContextDescriptor::InitializePlatformSpecific( |
| 81 void FastNewContextDescriptor::InitializePlatformSpecific( | |
| 82 CallInterfaceDescriptorData* data) { | 81 CallInterfaceDescriptorData* data) { |
| 83 Register registers[] = {r1}; | 82 Register registers[] = {r1}; |
| 84 data->InitializePlatformSpecific(arraysize(registers), registers); | 83 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 85 } | 84 } |
| 86 | 85 |
| 87 void FastNewObjectDescriptor::InitializePlatformSpecific( | 86 void FastNewObjectDescriptor::InitializePlatformSpecific( |
| 88 CallInterfaceDescriptorData* data) { | 87 CallInterfaceDescriptorData* data) { |
| 89 Register registers[] = {r1, r3}; | 88 Register registers[] = {r1, r3}; |
| 90 data->InitializePlatformSpecific(arraysize(registers), registers); | 89 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 91 } | 90 } |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 r1, // the JSGeneratorObject to resume | 430 r1, // the JSGeneratorObject to resume |
| 432 r2 // the resume mode (tagged) | 431 r2 // the resume mode (tagged) |
| 433 }; | 432 }; |
| 434 data->InitializePlatformSpecific(arraysize(registers), registers); | 433 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 435 } | 434 } |
| 436 | 435 |
| 437 } // namespace internal | 436 } // namespace internal |
| 438 } // namespace v8 | 437 } // namespace v8 |
| 439 | 438 |
| 440 #endif // V8_TARGET_ARCH_ARM | 439 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |