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 // Modified by the Subzero authors. | 5 // Modified by the Subzero authors. |
6 // | 6 // |
7 //===- subzero/src/assembler_ia32.h - Assembler for x86-32 ----------------===// | 7 //===- subzero/src/assembler_ia32.h - Assembler for x86-32 ----------------===// |
8 // | 8 // |
9 // The Subzero Code Generator | 9 // The Subzero Code Generator |
10 // | 10 // |
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
516 void divps(Type Ty, XmmRegister dst, XmmRegister src); | 516 void divps(Type Ty, XmmRegister dst, XmmRegister src); |
517 void divps(Type Ty, XmmRegister dst, const Address &src); | 517 void divps(Type Ty, XmmRegister dst, const Address &src); |
518 void mulps(Type Ty, XmmRegister dst, XmmRegister src); | 518 void mulps(Type Ty, XmmRegister dst, XmmRegister src); |
519 void mulps(Type Ty, XmmRegister dst, const Address &src); | 519 void mulps(Type Ty, XmmRegister dst, const Address &src); |
520 void minps(XmmRegister dst, XmmRegister src); | 520 void minps(XmmRegister dst, XmmRegister src); |
521 void maxps(XmmRegister dst, XmmRegister src); | 521 void maxps(XmmRegister dst, XmmRegister src); |
522 void andps(XmmRegister dst, XmmRegister src); | 522 void andps(XmmRegister dst, XmmRegister src); |
523 void andps(XmmRegister dst, const Address &src); | 523 void andps(XmmRegister dst, const Address &src); |
524 void orps(XmmRegister dst, XmmRegister src); | 524 void orps(XmmRegister dst, XmmRegister src); |
525 | 525 |
| 526 void blendvps(Type Ty, XmmRegister dst, XmmRegister src); |
| 527 void blendvps(Type Ty, XmmRegister dst, const Address &src); |
| 528 void pblendvb(Type Ty, XmmRegister dst, XmmRegister src); |
| 529 void pblendvb(Type Ty, XmmRegister dst, const Address &src); |
| 530 |
526 void cmpps(XmmRegister dst, XmmRegister src, CondX86::CmppsCond CmpCondition); | 531 void cmpps(XmmRegister dst, XmmRegister src, CondX86::CmppsCond CmpCondition); |
527 void cmpps(XmmRegister dst, const Address &src, | 532 void cmpps(XmmRegister dst, const Address &src, |
528 CondX86::CmppsCond CmpCondition); | 533 CondX86::CmppsCond CmpCondition); |
529 | 534 |
530 void sqrtps(XmmRegister dst); | 535 void sqrtps(XmmRegister dst); |
531 void rsqrtps(XmmRegister dst); | 536 void rsqrtps(XmmRegister dst); |
532 void reciprocalps(XmmRegister dst); | 537 void reciprocalps(XmmRegister dst); |
533 void movhlps(XmmRegister dst, XmmRegister src); | 538 void movhlps(XmmRegister dst, XmmRegister src); |
534 void movlhps(XmmRegister dst, XmmRegister src); | 539 void movlhps(XmmRegister dst, XmmRegister src); |
535 void unpcklps(XmmRegister dst, XmmRegister src); | 540 void unpcklps(XmmRegister dst, XmmRegister src); |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 inline void AssemblerX86::EmitFixup(AssemblerFixup *fixup) { | 814 inline void AssemblerX86::EmitFixup(AssemblerFixup *fixup) { |
810 buffer_.EmitFixup(fixup); | 815 buffer_.EmitFixup(fixup); |
811 } | 816 } |
812 | 817 |
813 inline void AssemblerX86::EmitOperandSizeOverride() { EmitUint8(0x66); } | 818 inline void AssemblerX86::EmitOperandSizeOverride() { EmitUint8(0x66); } |
814 | 819 |
815 } // end of namespace x86 | 820 } // end of namespace x86 |
816 } // end of namespace Ice | 821 } // end of namespace Ice |
817 | 822 |
818 #endif // SUBZERO_SRC_ASSEMBLER_IA32_H_ | 823 #endif // SUBZERO_SRC_ASSEMBLER_IA32_H_ |
OLD | NEW |