| 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 917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 // Use either movsd or movlpd. | 928 // Use either movsd or movlpd. |
| 929 void movdbl(XMMRegister dst, const Operand& src); | 929 void movdbl(XMMRegister dst, const Operand& src); |
| 930 void movdbl(const Operand& dst, XMMRegister src); | 930 void movdbl(const Operand& dst, XMMRegister src); |
| 931 | 931 |
| 932 void movd(XMMRegister dst, const Operand& src); | 932 void movd(XMMRegister dst, const Operand& src); |
| 933 void movd(const Operand& src, XMMRegister dst); | 933 void movd(const Operand& src, XMMRegister dst); |
| 934 void movsd(XMMRegister dst, XMMRegister src); | 934 void movsd(XMMRegister dst, XMMRegister src); |
| 935 | 935 |
| 936 void pand(XMMRegister dst, XMMRegister src); | 936 void pand(XMMRegister dst, XMMRegister src); |
| 937 void pxor(XMMRegister dst, XMMRegister src); | 937 void pxor(XMMRegister dst, XMMRegister src); |
| 938 void por(XMMRegister dst, XMMRegister src); |
| 938 void ptest(XMMRegister dst, XMMRegister src); | 939 void ptest(XMMRegister dst, XMMRegister src); |
| 939 | 940 |
| 940 void psllq(XMMRegister reg, int8_t shift); | 941 void psllq(XMMRegister reg, int8_t shift); |
| 942 void psllq(XMMRegister dst, XMMRegister src); |
| 943 void psrlq(XMMRegister reg, int8_t shift); |
| 944 void psrlq(XMMRegister dst, XMMRegister src); |
| 941 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); | 945 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); |
| 942 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); | 946 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); |
| 943 | 947 |
| 944 // Parallel XMM operations. | 948 // Parallel XMM operations. |
| 945 void movntdqa(XMMRegister src, const Operand& dst); | 949 void movntdqa(XMMRegister src, const Operand& dst); |
| 946 void movntdq(const Operand& dst, XMMRegister src); | 950 void movntdq(const Operand& dst, XMMRegister src); |
| 947 // Prefetch src position into cache level. | 951 // Prefetch src position into cache level. |
| 948 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a | 952 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a |
| 949 // non-temporal | 953 // non-temporal |
| 950 void prefetch(const Operand& src, int level); | 954 void prefetch(const Operand& src, int level); |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1093 private: | 1097 private: |
| 1094 Assembler* assembler_; | 1098 Assembler* assembler_; |
| 1095 #ifdef DEBUG | 1099 #ifdef DEBUG |
| 1096 int space_before_; | 1100 int space_before_; |
| 1097 #endif | 1101 #endif |
| 1098 }; | 1102 }; |
| 1099 | 1103 |
| 1100 } } // namespace v8::internal | 1104 } } // namespace v8::internal |
| 1101 | 1105 |
| 1102 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1106 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |