| 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 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 921 void pxor(XMMRegister dst, XMMRegister src); | 921 void pxor(XMMRegister dst, XMMRegister src); |
| 922 void por(XMMRegister dst, XMMRegister src); | 922 void por(XMMRegister dst, XMMRegister src); |
| 923 void ptest(XMMRegister dst, XMMRegister src); | 923 void ptest(XMMRegister dst, XMMRegister src); |
| 924 | 924 |
| 925 void psllq(XMMRegister reg, int8_t shift); | 925 void psllq(XMMRegister reg, int8_t shift); |
| 926 void psllq(XMMRegister dst, XMMRegister src); | 926 void psllq(XMMRegister dst, XMMRegister src); |
| 927 void psrlq(XMMRegister reg, int8_t shift); | 927 void psrlq(XMMRegister reg, int8_t shift); |
| 928 void psrlq(XMMRegister dst, XMMRegister src); | 928 void psrlq(XMMRegister dst, XMMRegister src); |
| 929 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); | 929 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); |
| 930 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); | 930 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); |
| 931 void pinsrd(XMMRegister dst, const Operand& src, int8_t offset); |
| 931 | 932 |
| 932 // Parallel XMM operations. | 933 // Parallel XMM operations. |
| 933 void movntdqa(XMMRegister src, const Operand& dst); | 934 void movntdqa(XMMRegister src, const Operand& dst); |
| 934 void movntdq(const Operand& dst, XMMRegister src); | 935 void movntdq(const Operand& dst, XMMRegister src); |
| 935 // Prefetch src position into cache level. | 936 // Prefetch src position into cache level. |
| 936 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a | 937 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a |
| 937 // non-temporal | 938 // non-temporal |
| 938 void prefetch(const Operand& src, int level); | 939 void prefetch(const Operand& src, int level); |
| 939 // TODO(lrn): Need SFENCE for movnt? | 940 // TODO(lrn): Need SFENCE for movnt? |
| 940 | 941 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 private: | 1081 private: |
| 1081 Assembler* assembler_; | 1082 Assembler* assembler_; |
| 1082 #ifdef DEBUG | 1083 #ifdef DEBUG |
| 1083 int space_before_; | 1084 int space_before_; |
| 1084 #endif | 1085 #endif |
| 1085 }; | 1086 }; |
| 1086 | 1087 |
| 1087 } } // namespace v8::internal | 1088 } } // namespace v8::internal |
| 1088 | 1089 |
| 1089 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1090 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |