| 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 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |