| 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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 void subsd(XMMRegister dst, XMMRegister src); | 942 void subsd(XMMRegister dst, XMMRegister src); |
| 943 void mulsd(XMMRegister dst, XMMRegister src); | 943 void mulsd(XMMRegister dst, XMMRegister src); |
| 944 void divsd(XMMRegister dst, XMMRegister src); | 944 void divsd(XMMRegister dst, XMMRegister src); |
| 945 void xorpd(XMMRegister dst, XMMRegister src); | 945 void xorpd(XMMRegister dst, XMMRegister src); |
| 946 void xorps(XMMRegister dst, XMMRegister src); | 946 void xorps(XMMRegister dst, XMMRegister src); |
| 947 void sqrtsd(XMMRegister dst, XMMRegister src); | 947 void sqrtsd(XMMRegister dst, XMMRegister src); |
| 948 | 948 |
| 949 void andpd(XMMRegister dst, XMMRegister src); | 949 void andpd(XMMRegister dst, XMMRegister src); |
| 950 | 950 |
| 951 void ucomisd(XMMRegister dst, XMMRegister src); | 951 void ucomisd(XMMRegister dst, XMMRegister src); |
| 952 |
| 953 enum RoundingMode { |
| 954 kRoundToNearest = 0x0, |
| 955 kRoundDown = 0x1, |
| 956 kRoundUp = 0x2, |
| 957 kRoundToZero = 0x3 |
| 958 }; |
| 959 |
| 960 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); |
| 961 |
| 952 void movmskpd(Register dst, XMMRegister src); | 962 void movmskpd(Register dst, XMMRegister src); |
| 953 | 963 |
| 954 void cmpltsd(XMMRegister dst, XMMRegister src); | 964 void cmpltsd(XMMRegister dst, XMMRegister src); |
| 955 | 965 |
| 956 void movaps(XMMRegister dst, XMMRegister src); | 966 void movaps(XMMRegister dst, XMMRegister src); |
| 957 | 967 |
| 958 void movdqa(XMMRegister dst, const Operand& src); | 968 void movdqa(XMMRegister dst, const Operand& src); |
| 959 void movdqa(const Operand& dst, XMMRegister src); | 969 void movdqa(const Operand& dst, XMMRegister src); |
| 960 void movdqu(XMMRegister dst, const Operand& src); | 970 void movdqu(XMMRegister dst, const Operand& src); |
| 961 void movdqu(const Operand& dst, XMMRegister src); | 971 void movdqu(const Operand& dst, XMMRegister src); |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1148 private: | 1158 private: |
| 1149 Assembler* assembler_; | 1159 Assembler* assembler_; |
| 1150 #ifdef DEBUG | 1160 #ifdef DEBUG |
| 1151 int space_before_; | 1161 int space_before_; |
| 1152 #endif | 1162 #endif |
| 1153 }; | 1163 }; |
| 1154 | 1164 |
| 1155 } } // namespace v8::internal | 1165 } } // namespace v8::internal |
| 1156 | 1166 |
| 1157 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1167 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |