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 #if V8_TARGET_ARCH_MIPS | 5 #if V8_TARGET_ARCH_MIPS |
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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 a0, // receiver | 335 a0, // receiver |
336 }; | 336 }; |
337 data->InitializePlatformSpecific(arraysize(registers), registers); | 337 data->InitializePlatformSpecific(arraysize(registers), registers); |
338 } | 338 } |
339 | 339 |
340 | 340 |
341 void ArgumentAdaptorDescriptor::InitializePlatformSpecific( | 341 void ArgumentAdaptorDescriptor::InitializePlatformSpecific( |
342 CallInterfaceDescriptorData* data) { | 342 CallInterfaceDescriptorData* data) { |
343 Register registers[] = { | 343 Register registers[] = { |
344 a1, // JSFunction | 344 a1, // JSFunction |
| 345 a3, // the new target |
345 a0, // actual number of arguments | 346 a0, // actual number of arguments |
346 a2, // expected number of arguments | 347 a2, // expected number of arguments |
347 }; | 348 }; |
348 data->InitializePlatformSpecific(arraysize(registers), registers); | 349 data->InitializePlatformSpecific(arraysize(registers), registers); |
349 } | 350 } |
350 | 351 |
351 | 352 |
352 void ApiFunctionDescriptor::InitializePlatformSpecific( | 353 void ApiFunctionDescriptor::InitializePlatformSpecific( |
353 CallInterfaceDescriptorData* data) { | 354 CallInterfaceDescriptorData* data) { |
354 Register registers[] = { | 355 Register registers[] = { |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 a2, // address of first argument (argv) | 426 a2, // address of first argument (argv) |
426 a1 // the runtime function to call | 427 a1 // the runtime function to call |
427 }; | 428 }; |
428 data->InitializePlatformSpecific(arraysize(registers), registers); | 429 data->InitializePlatformSpecific(arraysize(registers), registers); |
429 } | 430 } |
430 | 431 |
431 } // namespace internal | 432 } // namespace internal |
432 } // namespace v8 | 433 } // namespace v8 |
433 | 434 |
434 #endif // V8_TARGET_ARCH_MIPS | 435 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |