| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_ASSEMBLER_IA32_H_ | 5 #ifndef VM_ASSEMBLER_IA32_H_ |
| 6 #define VM_ASSEMBLER_IA32_H_ | 6 #define VM_ASSEMBLER_IA32_H_ |
| 7 | 7 |
| 8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
| 9 #error Do not include assembler_ia32.h directly; use assembler.h instead. | 9 #error Do not include assembler_ia32.h directly; use assembler.h instead. |
| 10 #endif | 10 #endif |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 const Object& value); | 621 const Object& value); |
| 622 | 622 |
| 623 void TraceStoreIntoObject(Register object, | 623 void TraceStoreIntoObject(Register object, |
| 624 const Address& dest, | 624 const Address& dest, |
| 625 Register value); | 625 Register value); |
| 626 | 626 |
| 627 void DoubleNegate(XmmRegister d); | 627 void DoubleNegate(XmmRegister d); |
| 628 void FloatNegate(XmmRegister f); | 628 void FloatNegate(XmmRegister f); |
| 629 | 629 |
| 630 void DoubleAbs(XmmRegister reg); | 630 void DoubleAbs(XmmRegister reg); |
| 631 void DoubleRound(XmmRegister dst, XmmRegister src, XmmRegister tmp); | |
| 632 | 631 |
| 633 void LockCmpxchgl(const Address& address, Register reg) { | 632 void LockCmpxchgl(const Address& address, Register reg) { |
| 634 lock(); | 633 lock(); |
| 635 cmpxchgl(address, reg); | 634 cmpxchgl(address, reg); |
| 636 } | 635 } |
| 637 | 636 |
| 638 void EnterFrame(intptr_t frame_space); | 637 void EnterFrame(intptr_t frame_space); |
| 639 void LeaveFrame(); | 638 void LeaveFrame(); |
| 640 void ReserveAlignedFrameSpace(intptr_t frame_space); | 639 void ReserveAlignedFrameSpace(intptr_t frame_space); |
| 641 | 640 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 770 } | 769 } |
| 771 | 770 |
| 772 | 771 |
| 773 inline void Assembler::EmitOperandSizeOverride() { | 772 inline void Assembler::EmitOperandSizeOverride() { |
| 774 EmitUint8(0x66); | 773 EmitUint8(0x66); |
| 775 } | 774 } |
| 776 | 775 |
| 777 } // namespace dart | 776 } // namespace dart |
| 778 | 777 |
| 779 #endif // VM_ASSEMBLER_IA32_H_ | 778 #endif // VM_ASSEMBLER_IA32_H_ |
| OLD | NEW |