Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: src/ia32/assembler-ia32.h

Issue 6049008: SSE2 truncating double-to-i. (Closed)
Patch Set: Update exponent limit description Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/assembler.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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);
925 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); 929 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle);
926 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); 930 void pextrd(const Operand& dst, XMMRegister src, int8_t offset);
927 931
928 // Parallel XMM operations. 932 // Parallel XMM operations.
929 void movntdqa(XMMRegister src, const Operand& dst); 933 void movntdqa(XMMRegister src, const Operand& dst);
930 void movntdq(const Operand& dst, XMMRegister src); 934 void movntdq(const Operand& dst, XMMRegister src);
931 // Prefetch src position into cache level. 935 // Prefetch src position into cache level.
932 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a 936 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a
933 // non-temporal 937 // non-temporal
934 void prefetch(const Operand& src, int level); 938 void prefetch(const Operand& src, int level);
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1076 private: 1080 private:
1077 Assembler* assembler_; 1081 Assembler* assembler_;
1078 #ifdef DEBUG 1082 #ifdef DEBUG
1079 int space_before_; 1083 int space_before_;
1080 #endif 1084 #endif
1081 }; 1085 };
1082 1086
1083 } } // namespace v8::internal 1087 } } // namespace v8::internal
1084 1088
1085 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1089 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698