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

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

Issue 23264022: Port CompileMathFloorCall from ia32 to x64 (Closed) Base URL: https://github.com/v8/v8.git@master
Patch Set: Created 7 years, 4 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/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 1368 matching lines...) Expand 10 before | Expand all | Expand 10 after
1379 kRoundDown = 0x1, 1379 kRoundDown = 0x1,
1380 kRoundUp = 0x2, 1380 kRoundUp = 0x2,
1381 kRoundToZero = 0x3 1381 kRoundToZero = 0x3
1382 }; 1382 };
1383 1383
1384 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); 1384 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
1385 1385
1386 void movmskpd(Register dst, XMMRegister src); 1386 void movmskpd(Register dst, XMMRegister src);
1387 void movmskps(Register dst, XMMRegister src); 1387 void movmskps(Register dst, XMMRegister src);
1388 1388
1389 void cmpltsd(XMMRegister dst, XMMRegister src);
1390
1389 // The first argument is the reg field, the second argument is the r/m field. 1391 // The first argument is the reg field, the second argument is the r/m field.
1390 void emit_sse_operand(XMMRegister dst, XMMRegister src); 1392 void emit_sse_operand(XMMRegister dst, XMMRegister src);
1391 void emit_sse_operand(XMMRegister reg, const Operand& adr); 1393 void emit_sse_operand(XMMRegister reg, const Operand& adr);
1392 void emit_sse_operand(XMMRegister dst, Register src); 1394 void emit_sse_operand(XMMRegister dst, Register src);
1393 void emit_sse_operand(Register dst, XMMRegister src); 1395 void emit_sse_operand(Register dst, XMMRegister src);
1394 1396
1395 // Debugging 1397 // Debugging
1396 void Print(); 1398 void Print();
1397 1399
1398 // Check the code size generated from label to here. 1400 // Check the code size generated from label to here.
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
1659 private: 1661 private:
1660 Assembler* assembler_; 1662 Assembler* assembler_;
1661 #ifdef DEBUG 1663 #ifdef DEBUG
1662 int space_before_; 1664 int space_before_;
1663 #endif 1665 #endif
1664 }; 1666 };
1665 1667
1666 } } // namespace v8::internal 1668 } } // namespace v8::internal
1667 1669
1668 #endif // V8_X64_ASSEMBLER_X64_H_ 1670 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698