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

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

Issue 11748013: Merged r13260, r13266, r13268, r13270, r13274 into 3.15 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.15
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « src/version.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 1370 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 enum RoundingMode { 1381 enum RoundingMode {
1382 kRoundToNearest = 0x0, 1382 kRoundToNearest = 0x0,
1383 kRoundDown = 0x1, 1383 kRoundDown = 0x1,
1384 kRoundUp = 0x2, 1384 kRoundUp = 0x2,
1385 kRoundToZero = 0x3 1385 kRoundToZero = 0x3
1386 }; 1386 };
1387 1387
1388 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); 1388 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
1389 1389
1390 void movmskpd(Register dst, XMMRegister src); 1390 void movmskpd(Register dst, XMMRegister src);
1391 void movmskps(Register dst, XMMRegister src);
1391 1392
1392 // The first argument is the reg field, the second argument is the r/m field. 1393 // The first argument is the reg field, the second argument is the r/m field.
1393 void emit_sse_operand(XMMRegister dst, XMMRegister src); 1394 void emit_sse_operand(XMMRegister dst, XMMRegister src);
1394 void emit_sse_operand(XMMRegister reg, const Operand& adr); 1395 void emit_sse_operand(XMMRegister reg, const Operand& adr);
1395 void emit_sse_operand(XMMRegister dst, Register src); 1396 void emit_sse_operand(XMMRegister dst, Register src);
1396 void emit_sse_operand(Register dst, XMMRegister src); 1397 void emit_sse_operand(Register dst, XMMRegister src);
1397 1398
1398 // Debugging 1399 // Debugging
1399 void Print(); 1400 void Print();
1400 1401
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
1660 private: 1661 private:
1661 Assembler* assembler_; 1662 Assembler* assembler_;
1662 #ifdef DEBUG 1663 #ifdef DEBUG
1663 int space_before_; 1664 int space_before_;
1664 #endif 1665 #endif
1665 }; 1666 };
1666 1667
1667 } } // namespace v8::internal 1668 } } // namespace v8::internal
1668 1669
1669 #endif // V8_X64_ASSEMBLER_X64_H_ 1670 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/version.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698