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_X87 | 5 #if V8_TARGET_ARCH_X87 |
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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 void ResumeGeneratorDescriptor::InitializePlatformSpecific( | 420 void ResumeGeneratorDescriptor::InitializePlatformSpecific( |
421 CallInterfaceDescriptorData* data) { | 421 CallInterfaceDescriptorData* data) { |
422 Register registers[] = { | 422 Register registers[] = { |
423 eax, // the value to pass to the generator | 423 eax, // the value to pass to the generator |
424 ebx, // the JSGeneratorObject to resume | 424 ebx, // the JSGeneratorObject to resume |
425 edx // the resume mode (tagged) | 425 edx // the resume mode (tagged) |
426 }; | 426 }; |
427 data->InitializePlatformSpecific(arraysize(registers), registers); | 427 data->InitializePlatformSpecific(arraysize(registers), registers); |
428 } | 428 } |
429 | 429 |
| 430 void AtomicsLoadDescriptor::InitializePlatformSpecific( |
| 431 CallInterfaceDescriptorData* data) { |
| 432 Register registers[] = { |
| 433 edx, // the typedarray object |
| 434 eax // the index to load (untagged) |
| 435 }; |
| 436 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 437 } |
| 438 |
430 } // namespace internal | 439 } // namespace internal |
431 } // namespace v8 | 440 } // namespace v8 |
432 | 441 |
433 #endif // V8_TARGET_ARCH_X87 | 442 #endif // V8_TARGET_ARCH_X87 |
OLD | NEW |