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 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 Register value, // Value we are storing. | 619 Register value, // Value we are storing. |
620 bool can_value_be_smi = true); | 620 bool can_value_be_smi = true); |
621 | 621 |
622 void StoreIntoObjectNoBarrier(Register object, | 622 void StoreIntoObjectNoBarrier(Register object, |
623 const Address& dest, | 623 const Address& dest, |
624 Register value); | 624 Register value); |
625 void StoreIntoObjectNoBarrier(Register object, | 625 void StoreIntoObjectNoBarrier(Register object, |
626 const Address& dest, | 626 const Address& dest, |
627 const Object& value); | 627 const Object& value); |
628 | 628 |
629 void TraceStoreIntoObject(Register object, | |
630 const Address& dest, | |
631 Register value); | |
632 | |
633 void DoubleNegate(XmmRegister d); | 629 void DoubleNegate(XmmRegister d); |
634 void FloatNegate(XmmRegister f); | 630 void FloatNegate(XmmRegister f); |
635 | 631 |
636 void DoubleAbs(XmmRegister reg); | 632 void DoubleAbs(XmmRegister reg); |
637 | 633 |
638 void LockCmpxchgl(const Address& address, Register reg) { | 634 void LockCmpxchgl(const Address& address, Register reg) { |
639 lock(); | 635 lock(); |
640 cmpxchgl(address, reg); | 636 cmpxchgl(address, reg); |
641 } | 637 } |
642 | 638 |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
832 } | 828 } |
833 | 829 |
834 | 830 |
835 inline void Assembler::EmitOperandSizeOverride() { | 831 inline void Assembler::EmitOperandSizeOverride() { |
836 EmitUint8(0x66); | 832 EmitUint8(0x66); |
837 } | 833 } |
838 | 834 |
839 } // namespace dart | 835 } // namespace dart |
840 | 836 |
841 #endif // VM_ASSEMBLER_IA32_H_ | 837 #endif // VM_ASSEMBLER_IA32_H_ |
OLD | NEW |