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

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

Issue 6049008: SSE2 truncating double-to-i. (Closed)
Patch Set: . 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 | « no previous file | src/ia32/assembler-ia32.cc » ('j') | src/ia32/lithium-codegen-ia32.cc » ('J')
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);
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/ia32/assembler-ia32.cc » ('j') | src/ia32/lithium-codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698