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

Side by Side Diff: src/x64/assembler-x64.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 | « src/ia32/disasm-ia32.cc ('k') | src/x64/assembler-x64.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 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 enum RoundingMode { 1387 enum RoundingMode {
1388 kRoundToNearest = 0x0, 1388 kRoundToNearest = 0x0,
1389 kRoundDown = 0x1, 1389 kRoundDown = 0x1,
1390 kRoundUp = 0x2, 1390 kRoundUp = 0x2,
1391 kRoundToZero = 0x3 1391 kRoundToZero = 0x3
1392 }; 1392 };
1393 1393
1394 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); 1394 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
1395 1395
1396 void movmskpd(Register dst, XMMRegister src); 1396 void movmskpd(Register dst, XMMRegister src);
1397 void movmskps(Register dst, XMMRegister src);
1397 1398
1398 // The first argument is the reg field, the second argument is the r/m field. 1399 // The first argument is the reg field, the second argument is the r/m field.
1399 void emit_sse_operand(XMMRegister dst, XMMRegister src); 1400 void emit_sse_operand(XMMRegister dst, XMMRegister src);
1400 void emit_sse_operand(XMMRegister reg, const Operand& adr); 1401 void emit_sse_operand(XMMRegister reg, const Operand& adr);
1401 void emit_sse_operand(XMMRegister dst, Register src); 1402 void emit_sse_operand(XMMRegister dst, Register src);
1402 void emit_sse_operand(Register dst, XMMRegister src); 1403 void emit_sse_operand(Register dst, XMMRegister src);
1403 1404
1404 // Debugging 1405 // Debugging
1405 void Print(); 1406 void Print();
1406 1407
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
1666 private: 1667 private:
1667 Assembler* assembler_; 1668 Assembler* assembler_;
1668 #ifdef DEBUG 1669 #ifdef DEBUG
1669 int space_before_; 1670 int space_before_;
1670 #endif 1671 #endif
1671 }; 1672 };
1672 1673
1673 } } // namespace v8::internal 1674 } } // namespace v8::internal
1674 1675
1675 #endif // V8_X64_ASSEMBLER_X64_H_ 1676 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/ia32/disasm-ia32.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698