| 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); |
| 908 void movsd(XMMRegister dst, XMMRegister src); | 909 void movsd(XMMRegister dst, XMMRegister src); |
| 909 | 910 |
| 910 void pand(XMMRegister dst, XMMRegister src); | 911 void pand(XMMRegister dst, XMMRegister src); |
| 911 void pxor(XMMRegister dst, XMMRegister src); | 912 void pxor(XMMRegister dst, XMMRegister src); |
| 912 void ptest(XMMRegister dst, XMMRegister src); | 913 void ptest(XMMRegister dst, XMMRegister src); |
| 913 | 914 |
| 914 void psllq(XMMRegister reg, int8_t imm8); | 915 void psllq(XMMRegister reg, int8_t shift); |
| 916 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); |
| 917 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); |
| 915 | 918 |
| 916 // Parallel XMM operations. | 919 // Parallel XMM operations. |
| 917 void movntdqa(XMMRegister src, const Operand& dst); | 920 void movntdqa(XMMRegister src, const Operand& dst); |
| 918 void movntdq(const Operand& dst, XMMRegister src); | 921 void movntdq(const Operand& dst, XMMRegister src); |
| 919 // Prefetch src position into cache level. | 922 // Prefetch src position into cache level. |
| 920 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a | 923 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a |
| 921 // non-temporal | 924 // non-temporal |
| 922 void prefetch(const Operand& src, int level); | 925 void prefetch(const Operand& src, int level); |
| 923 // TODO(lrn): Need SFENCE for movnt? | 926 // TODO(lrn): Need SFENCE for movnt? |
| 924 | 927 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1064 private: | 1067 private: |
| 1065 Assembler* assembler_; | 1068 Assembler* assembler_; |
| 1066 #ifdef DEBUG | 1069 #ifdef DEBUG |
| 1067 int space_before_; | 1070 int space_before_; |
| 1068 #endif | 1071 #endif |
| 1069 }; | 1072 }; |
| 1070 | 1073 |
| 1071 } } // namespace v8::internal | 1074 } } // namespace v8::internal |
| 1072 | 1075 |
| 1073 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1076 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |