| OLD | NEW |
| 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 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1371 kRoundToNearest = 0x0, | 1371 kRoundToNearest = 0x0, |
| 1372 kRoundDown = 0x1, | 1372 kRoundDown = 0x1, |
| 1373 kRoundUp = 0x2, | 1373 kRoundUp = 0x2, |
| 1374 kRoundToZero = 0x3 | 1374 kRoundToZero = 0x3 |
| 1375 }; | 1375 }; |
| 1376 | 1376 |
| 1377 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); | 1377 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); |
| 1378 | 1378 |
| 1379 void movmskpd(Register dst, XMMRegister src); | 1379 void movmskpd(Register dst, XMMRegister src); |
| 1380 void movmskps(Register dst, XMMRegister src); | 1380 void movmskps(Register dst, XMMRegister src); |
| 1381 void pcmpeqd(XMMRegister dst, XMMRegister src); |
| 1381 | 1382 |
| 1382 // The first argument is the reg field, the second argument is the r/m field. | 1383 // The first argument is the reg field, the second argument is the r/m field. |
| 1383 void emit_sse_operand(XMMRegister dst, XMMRegister src); | 1384 void emit_sse_operand(XMMRegister dst, XMMRegister src); |
| 1384 void emit_sse_operand(XMMRegister reg, const Operand& adr); | 1385 void emit_sse_operand(XMMRegister reg, const Operand& adr); |
| 1385 void emit_sse_operand(XMMRegister dst, Register src); | 1386 void emit_sse_operand(XMMRegister dst, Register src); |
| 1386 void emit_sse_operand(Register dst, XMMRegister src); | 1387 void emit_sse_operand(Register dst, XMMRegister src); |
| 1387 | 1388 |
| 1388 // Debugging | 1389 // Debugging |
| 1389 void Print(); | 1390 void Print(); |
| 1390 | 1391 |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1652 private: | 1653 private: |
| 1653 Assembler* assembler_; | 1654 Assembler* assembler_; |
| 1654 #ifdef DEBUG | 1655 #ifdef DEBUG |
| 1655 int space_before_; | 1656 int space_before_; |
| 1656 #endif | 1657 #endif |
| 1657 }; | 1658 }; |
| 1658 | 1659 |
| 1659 } } // namespace v8::internal | 1660 } } // namespace v8::internal |
| 1660 | 1661 |
| 1661 #endif // V8_X64_ASSEMBLER_X64_H_ | 1662 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |