| 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 926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 937 void pxor(XMMRegister dst, XMMRegister src); | 937 void pxor(XMMRegister dst, XMMRegister src); |
| 938 void por(XMMRegister dst, XMMRegister src); | 938 void por(XMMRegister dst, XMMRegister src); |
| 939 void ptest(XMMRegister dst, XMMRegister src); | 939 void ptest(XMMRegister dst, XMMRegister src); |
| 940 | 940 |
| 941 void psllq(XMMRegister reg, int8_t shift); | 941 void psllq(XMMRegister reg, int8_t shift); |
| 942 void psllq(XMMRegister dst, XMMRegister src); | 942 void psllq(XMMRegister dst, XMMRegister src); |
| 943 void psrlq(XMMRegister reg, int8_t shift); | 943 void psrlq(XMMRegister reg, int8_t shift); |
| 944 void psrlq(XMMRegister dst, XMMRegister src); | 944 void psrlq(XMMRegister dst, XMMRegister src); |
| 945 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); | 945 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); |
| 946 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); | 946 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); |
| 947 void pinsrd(XMMRegister dst, const Operand& src, int8_t offset); |
| 947 | 948 |
| 948 // Parallel XMM operations. | 949 // Parallel XMM operations. |
| 949 void movntdqa(XMMRegister src, const Operand& dst); | 950 void movntdqa(XMMRegister src, const Operand& dst); |
| 950 void movntdq(const Operand& dst, XMMRegister src); | 951 void movntdq(const Operand& dst, XMMRegister src); |
| 951 // Prefetch src position into cache level. | 952 // Prefetch src position into cache level. |
| 952 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a | 953 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a |
| 953 // non-temporal | 954 // non-temporal |
| 954 void prefetch(const Operand& src, int level); | 955 void prefetch(const Operand& src, int level); |
| 955 // TODO(lrn): Need SFENCE for movnt? | 956 // TODO(lrn): Need SFENCE for movnt? |
| 956 | 957 |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1094 private: | 1095 private: |
| 1095 Assembler* assembler_; | 1096 Assembler* assembler_; |
| 1096 #ifdef DEBUG | 1097 #ifdef DEBUG |
| 1097 int space_before_; | 1098 int space_before_; |
| 1098 #endif | 1099 #endif |
| 1099 }; | 1100 }; |
| 1100 | 1101 |
| 1101 } } // namespace v8::internal | 1102 } } // namespace v8::internal |
| 1102 | 1103 |
| 1103 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1104 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |