| 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 | 391 |
| 392 void andpd(XmmRegister dst, const Address& src); | 392 void andpd(XmmRegister dst, const Address& src); |
| 393 void andpd(XmmRegister dst, XmmRegister src); | 393 void andpd(XmmRegister dst, XmmRegister src); |
| 394 | 394 |
| 395 void orpd(XmmRegister dst, XmmRegister src); | 395 void orpd(XmmRegister dst, XmmRegister src); |
| 396 | 396 |
| 397 void pextrd(Register dst, XmmRegister src, const Immediate& imm); | 397 void pextrd(Register dst, XmmRegister src, const Immediate& imm); |
| 398 void pmovsxdq(XmmRegister dst, XmmRegister src); | 398 void pmovsxdq(XmmRegister dst, XmmRegister src); |
| 399 void pcmpeqq(XmmRegister dst, XmmRegister src); | 399 void pcmpeqq(XmmRegister dst, XmmRegister src); |
| 400 | 400 |
| 401 void pxor(XmmRegister dst, XmmRegister src); |
| 402 |
| 401 void flds(const Address& src); | 403 void flds(const Address& src); |
| 402 void fstps(const Address& dst); | 404 void fstps(const Address& dst); |
| 403 | 405 |
| 404 void fldl(const Address& src); | 406 void fldl(const Address& src); |
| 405 void fstpl(const Address& dst); | 407 void fstpl(const Address& dst); |
| 406 | 408 |
| 407 void fnstcw(const Address& dst); | 409 void fnstcw(const Address& dst); |
| 408 void fldcw(const Address& src); | 410 void fldcw(const Address& src); |
| 409 | 411 |
| 410 void fistpl(const Address& dst); | 412 void fistpl(const Address& dst); |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 } | 692 } |
| 691 | 693 |
| 692 | 694 |
| 693 inline void Assembler::EmitOperandSizeOverride() { | 695 inline void Assembler::EmitOperandSizeOverride() { |
| 694 EmitUint8(0x66); | 696 EmitUint8(0x66); |
| 695 } | 697 } |
| 696 | 698 |
| 697 } // namespace dart | 699 } // namespace dart |
| 698 | 700 |
| 699 #endif // VM_ASSEMBLER_IA32_H_ | 701 #endif // VM_ASSEMBLER_IA32_H_ |
| OLD | NEW |