| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 | 380 |
| 381 void sqrtsd(XmmRegister dst, XmmRegister src); | 381 void sqrtsd(XmmRegister dst, XmmRegister src); |
| 382 void sqrtss(XmmRegister dst, XmmRegister src); | 382 void sqrtss(XmmRegister dst, XmmRegister src); |
| 383 | 383 |
| 384 void xorpd(XmmRegister dst, const Address& src); | 384 void xorpd(XmmRegister dst, const Address& src); |
| 385 void xorpd(XmmRegister dst, XmmRegister src); | 385 void xorpd(XmmRegister dst, XmmRegister src); |
| 386 void xorps(XmmRegister dst, const Address& src); | 386 void xorps(XmmRegister dst, const Address& src); |
| 387 void xorps(XmmRegister dst, XmmRegister src); | 387 void xorps(XmmRegister dst, XmmRegister src); |
| 388 | 388 |
| 389 void andpd(XmmRegister dst, const Address& src); | 389 void andpd(XmmRegister dst, const Address& src); |
| 390 void andpd(XmmRegister dst, XmmRegister src); |
| 391 |
| 392 void orpd(XmmRegister dst, XmmRegister src); |
| 393 |
| 394 void pextrd(Register dst, XmmRegister src, const Immediate& imm); |
| 395 void pmovsxdq(XmmRegister dst, XmmRegister src); |
| 396 void pcmpeqq(XmmRegister dst, XmmRegister src); |
| 390 | 397 |
| 391 void flds(const Address& src); | 398 void flds(const Address& src); |
| 392 void fstps(const Address& dst); | 399 void fstps(const Address& dst); |
| 393 | 400 |
| 394 void fldl(const Address& src); | 401 void fldl(const Address& src); |
| 395 void fstpl(const Address& dst); | 402 void fstpl(const Address& dst); |
| 396 | 403 |
| 397 void fnstcw(const Address& dst); | 404 void fnstcw(const Address& dst); |
| 398 void fldcw(const Address& src); | 405 void fldcw(const Address& src); |
| 399 | 406 |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 } | 684 } |
| 678 | 685 |
| 679 | 686 |
| 680 inline void Assembler::EmitOperandSizeOverride() { | 687 inline void Assembler::EmitOperandSizeOverride() { |
| 681 EmitUint8(0x66); | 688 EmitUint8(0x66); |
| 682 } | 689 } |
| 683 | 690 |
| 684 } // namespace dart | 691 } // namespace dart |
| 685 | 692 |
| 686 #endif // VM_ASSEMBLER_IA32_H_ | 693 #endif // VM_ASSEMBLER_IA32_H_ |
| OLD | NEW |