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 1252 matching lines...) Loading... |
1263 void subsd(XMMRegister dst, XMMRegister src); | 1263 void subsd(XMMRegister dst, XMMRegister src); |
1264 void mulsd(XMMRegister dst, XMMRegister src); | 1264 void mulsd(XMMRegister dst, XMMRegister src); |
1265 void divsd(XMMRegister dst, XMMRegister src); | 1265 void divsd(XMMRegister dst, XMMRegister src); |
1266 | 1266 |
1267 void xorpd(XMMRegister dst, XMMRegister src); | 1267 void xorpd(XMMRegister dst, XMMRegister src); |
1268 void sqrtsd(XMMRegister dst, XMMRegister src); | 1268 void sqrtsd(XMMRegister dst, XMMRegister src); |
1269 | 1269 |
1270 void ucomisd(XMMRegister dst, XMMRegister src); | 1270 void ucomisd(XMMRegister dst, XMMRegister src); |
1271 void ucomisd(XMMRegister dst, const Operand& src); | 1271 void ucomisd(XMMRegister dst, const Operand& src); |
1272 | 1272 |
| 1273 void movmskpd(Register dst, XMMRegister src); |
| 1274 |
1273 // The first argument is the reg field, the second argument is the r/m field. | 1275 // The first argument is the reg field, the second argument is the r/m field. |
1274 void emit_sse_operand(XMMRegister dst, XMMRegister src); | 1276 void emit_sse_operand(XMMRegister dst, XMMRegister src); |
1275 void emit_sse_operand(XMMRegister reg, const Operand& adr); | 1277 void emit_sse_operand(XMMRegister reg, const Operand& adr); |
1276 void emit_sse_operand(XMMRegister dst, Register src); | 1278 void emit_sse_operand(XMMRegister dst, Register src); |
1277 void emit_sse_operand(Register dst, XMMRegister src); | 1279 void emit_sse_operand(Register dst, XMMRegister src); |
1278 | 1280 |
1279 // Debugging | 1281 // Debugging |
1280 void Print(); | 1282 void Print(); |
1281 | 1283 |
1282 // Check the code size generated from label to here. | 1284 // Check the code size generated from label to here. |
(...skipping 268 matching lines...) Loading... |
1551 private: | 1553 private: |
1552 Assembler* assembler_; | 1554 Assembler* assembler_; |
1553 #ifdef DEBUG | 1555 #ifdef DEBUG |
1554 int space_before_; | 1556 int space_before_; |
1555 #endif | 1557 #endif |
1556 }; | 1558 }; |
1557 | 1559 |
1558 } } // namespace v8::internal | 1560 } } // namespace v8::internal |
1559 | 1561 |
1560 #endif // V8_X64_ASSEMBLER_X64_H_ | 1562 #endif // V8_X64_ASSEMBLER_X64_H_ |
OLD | NEW |