| 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 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1070 enum RoundingMode { | 1070 enum RoundingMode { |
| 1071 kRoundToNearest = 0x0, | 1071 kRoundToNearest = 0x0, |
| 1072 kRoundDown = 0x1, | 1072 kRoundDown = 0x1, |
| 1073 kRoundUp = 0x2, | 1073 kRoundUp = 0x2, |
| 1074 kRoundToZero = 0x3 | 1074 kRoundToZero = 0x3 |
| 1075 }; | 1075 }; |
| 1076 | 1076 |
| 1077 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); | 1077 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); |
| 1078 | 1078 |
| 1079 void movmskpd(Register dst, XMMRegister src); | 1079 void movmskpd(Register dst, XMMRegister src); |
| 1080 void movmskps(Register dst, XMMRegister src); |
| 1080 | 1081 |
| 1081 void cmpltsd(XMMRegister dst, XMMRegister src); | 1082 void cmpltsd(XMMRegister dst, XMMRegister src); |
| 1082 void pcmpeqd(XMMRegister dst, XMMRegister src); | 1083 void pcmpeqd(XMMRegister dst, XMMRegister src); |
| 1083 | 1084 |
| 1084 void movaps(XMMRegister dst, XMMRegister src); | 1085 void movaps(XMMRegister dst, XMMRegister src); |
| 1085 | 1086 |
| 1086 void movdqa(XMMRegister dst, const Operand& src); | 1087 void movdqa(XMMRegister dst, const Operand& src); |
| 1087 void movdqa(const Operand& dst, XMMRegister src); | 1088 void movdqa(const Operand& dst, XMMRegister src); |
| 1088 void movdqu(XMMRegister dst, const Operand& src); | 1089 void movdqu(XMMRegister dst, const Operand& src); |
| 1089 void movdqu(const Operand& dst, XMMRegister src); | 1090 void movdqu(const Operand& dst, XMMRegister src); |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1269 private: | 1270 private: |
| 1270 Assembler* assembler_; | 1271 Assembler* assembler_; |
| 1271 #ifdef DEBUG | 1272 #ifdef DEBUG |
| 1272 int space_before_; | 1273 int space_before_; |
| 1273 #endif | 1274 #endif |
| 1274 }; | 1275 }; |
| 1275 | 1276 |
| 1276 } } // namespace v8::internal | 1277 } } // namespace v8::internal |
| 1277 | 1278 |
| 1278 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1279 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |