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

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

Issue 11664007: Added (dis-)assembler support for movmskps on ia32 and x64. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after
1070 enum RoundingMode { 1070 enum RoundingMode {
1071 kRoundToNearest = 0x0, 1071 kRoundToNearest = 0x0,
1072 kRoundDown = 0x1, 1072 kRoundDown = 0x1,
1073 kRoundUp = 0x2, 1073 kRoundUp = 0x2,
1074 kRoundToZero = 0x3 1074 kRoundToZero = 0x3
1075 }; 1075 };
1076 1076
1077 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); 1077 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
1078 1078
1079 void movmskpd(Register dst, XMMRegister src); 1079 void movmskpd(Register dst, XMMRegister src);
1080 void movmskps(Register dst, XMMRegister src);
1080 1081
1081 void cmpltsd(XMMRegister dst, XMMRegister src); 1082 void cmpltsd(XMMRegister dst, XMMRegister src);
1082 void pcmpeqd(XMMRegister dst, XMMRegister src); 1083 void pcmpeqd(XMMRegister dst, XMMRegister src);
1083 1084
1084 void movaps(XMMRegister dst, XMMRegister src); 1085 void movaps(XMMRegister dst, XMMRegister src);
1085 1086
1086 void movdqa(XMMRegister dst, const Operand& src); 1087 void movdqa(XMMRegister dst, const Operand& src);
1087 void movdqa(const Operand& dst, XMMRegister src); 1088 void movdqa(const Operand& dst, XMMRegister src);
1088 void movdqu(XMMRegister dst, const Operand& src); 1089 void movdqu(XMMRegister dst, const Operand& src);
1089 void movdqu(const Operand& dst, XMMRegister src); 1090 void movdqu(const Operand& dst, XMMRegister src);
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 private: 1270 private:
1270 Assembler* assembler_; 1271 Assembler* assembler_;
1271 #ifdef DEBUG 1272 #ifdef DEBUG
1272 int space_before_; 1273 int space_before_;
1273 #endif 1274 #endif
1274 }; 1275 };
1275 1276
1276 } } // namespace v8::internal 1277 } } // namespace v8::internal
1277 1278
1278 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1279 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698