| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 void movdqa(XMMRegister dst, const Operand& src); | 898 void movdqa(XMMRegister dst, const Operand& src); |
| 899 void movdqa(const Operand& dst, XMMRegister src); | 899 void movdqa(const Operand& dst, XMMRegister src); |
| 900 void movdqu(XMMRegister dst, const Operand& src); | 900 void movdqu(XMMRegister dst, const Operand& src); |
| 901 void movdqu(const Operand& dst, XMMRegister src); | 901 void movdqu(const Operand& dst, XMMRegister src); |
| 902 | 902 |
| 903 // Use either movsd or movlpd. | 903 // Use either movsd or movlpd. |
| 904 void movdbl(XMMRegister dst, const Operand& src); | 904 void movdbl(XMMRegister dst, const Operand& src); |
| 905 void movdbl(const Operand& dst, XMMRegister src); | 905 void movdbl(const Operand& dst, XMMRegister src); |
| 906 | 906 |
| 907 void movd(XMMRegister dst, const Operand& src); | 907 void movd(XMMRegister dst, const Operand& src); |
| 908 void movd(const Operand& src, XMMRegister dst); | |
| 909 void movsd(XMMRegister dst, XMMRegister src); | 908 void movsd(XMMRegister dst, XMMRegister src); |
| 910 | 909 |
| 911 void pand(XMMRegister dst, XMMRegister src); | 910 void pand(XMMRegister dst, XMMRegister src); |
| 912 void pxor(XMMRegister dst, XMMRegister src); | 911 void pxor(XMMRegister dst, XMMRegister src); |
| 913 void ptest(XMMRegister dst, XMMRegister src); | 912 void ptest(XMMRegister dst, XMMRegister src); |
| 914 | 913 |
| 915 void psllq(XMMRegister reg, int8_t shift); | 914 void psllq(XMMRegister reg, int8_t imm8); |
| 916 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); | |
| 917 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); | |
| 918 | 915 |
| 919 // Parallel XMM operations. | 916 // Parallel XMM operations. |
| 920 void movntdqa(XMMRegister src, const Operand& dst); | 917 void movntdqa(XMMRegister src, const Operand& dst); |
| 921 void movntdq(const Operand& dst, XMMRegister src); | 918 void movntdq(const Operand& dst, XMMRegister src); |
| 922 // Prefetch src position into cache level. | 919 // Prefetch src position into cache level. |
| 923 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a | 920 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a |
| 924 // non-temporal | 921 // non-temporal |
| 925 void prefetch(const Operand& src, int level); | 922 void prefetch(const Operand& src, int level); |
| 926 // TODO(lrn): Need SFENCE for movnt? | 923 // TODO(lrn): Need SFENCE for movnt? |
| 927 | 924 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1067 private: | 1064 private: |
| 1068 Assembler* assembler_; | 1065 Assembler* assembler_; |
| 1069 #ifdef DEBUG | 1066 #ifdef DEBUG |
| 1070 int space_before_; | 1067 int space_before_; |
| 1071 #endif | 1068 #endif |
| 1072 }; | 1069 }; |
| 1073 | 1070 |
| 1074 } } // namespace v8::internal | 1071 } } // namespace v8::internal |
| 1075 | 1072 |
| 1076 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1073 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |