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 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
912 // Use either movsd or movlpd. | 912 // Use either movsd or movlpd. |
913 void movdbl(XMMRegister dst, const Operand& src); | 913 void movdbl(XMMRegister dst, const Operand& src); |
914 void movdbl(const Operand& dst, XMMRegister src); | 914 void movdbl(const Operand& dst, XMMRegister src); |
915 | 915 |
916 void movd(XMMRegister dst, const Operand& src); | 916 void movd(XMMRegister dst, const Operand& src); |
917 void movd(const Operand& src, XMMRegister dst); | 917 void movd(const Operand& src, XMMRegister dst); |
918 void movsd(XMMRegister dst, XMMRegister src); | 918 void movsd(XMMRegister dst, XMMRegister src); |
919 | 919 |
920 void pand(XMMRegister dst, XMMRegister src); | 920 void pand(XMMRegister dst, XMMRegister src); |
921 void pxor(XMMRegister dst, XMMRegister src); | 921 void pxor(XMMRegister dst, XMMRegister src); |
922 void por(XMMRegister dst, XMMRegister src); | |
922 void ptest(XMMRegister dst, XMMRegister src); | 923 void ptest(XMMRegister dst, XMMRegister src); |
923 | 924 |
924 void psllq(XMMRegister reg, int8_t shift); | 925 void psllq(XMMRegister reg, int8_t shift); |
926 void psllq(XMMRegister dst, XMMRegister src); | |
927 void psrlq(XMMRegister reg, int8_t shift); | |
928 void psrlq(XMMRegister dst, XMMRegister src); | |
929 void punpckldq(XMMRegister dst, XMMRegister src); | |
Erik Corry
2011/01/04 22:33:00
Seems like not all these ended up being needed. W
| |
925 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); | 930 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); |
926 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); | 931 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); |
927 | 932 |
928 // Parallel XMM operations. | 933 // Parallel XMM operations. |
929 void movntdqa(XMMRegister src, const Operand& dst); | 934 void movntdqa(XMMRegister src, const Operand& dst); |
930 void movntdq(const Operand& dst, XMMRegister src); | 935 void movntdq(const Operand& dst, XMMRegister src); |
931 // Prefetch src position into cache level. | 936 // Prefetch src position into cache level. |
932 // 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 |
933 // non-temporal | 938 // non-temporal |
934 void prefetch(const Operand& src, int level); | 939 void prefetch(const Operand& src, int level); |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1076 private: | 1081 private: |
1077 Assembler* assembler_; | 1082 Assembler* assembler_; |
1078 #ifdef DEBUG | 1083 #ifdef DEBUG |
1079 int space_before_; | 1084 int space_before_; |
1080 #endif | 1085 #endif |
1081 }; | 1086 }; |
1082 | 1087 |
1083 } } // namespace v8::internal | 1088 } } // namespace v8::internal |
1084 | 1089 |
1085 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1090 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
OLD | NEW |