| 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 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 void cvtsd2si(Register dst, XMMRegister src); | 949 void cvtsd2si(Register dst, XMMRegister src); |
| 950 | 950 |
| 951 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); } | 951 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); } |
| 952 void cvtsi2sd(XMMRegister dst, const Operand& src); | 952 void cvtsi2sd(XMMRegister dst, const Operand& src); |
| 953 void cvtss2sd(XMMRegister dst, XMMRegister src); | 953 void cvtss2sd(XMMRegister dst, XMMRegister src); |
| 954 void cvtsd2ss(XMMRegister dst, XMMRegister src); | 954 void cvtsd2ss(XMMRegister dst, XMMRegister src); |
| 955 | 955 |
| 956 void addsd(XMMRegister dst, XMMRegister src); | 956 void addsd(XMMRegister dst, XMMRegister src); |
| 957 void addsd(XMMRegister dst, const Operand& src); | 957 void addsd(XMMRegister dst, const Operand& src); |
| 958 void subsd(XMMRegister dst, XMMRegister src); | 958 void subsd(XMMRegister dst, XMMRegister src); |
| 959 void subsd(XMMRegister dst, const Operand& src); |
| 959 void mulsd(XMMRegister dst, XMMRegister src); | 960 void mulsd(XMMRegister dst, XMMRegister src); |
| 960 void mulsd(XMMRegister dst, const Operand& src); | 961 void mulsd(XMMRegister dst, const Operand& src); |
| 961 void divsd(XMMRegister dst, XMMRegister src); | 962 void divsd(XMMRegister dst, XMMRegister src); |
| 962 void xorpd(XMMRegister dst, XMMRegister src); | 963 void xorpd(XMMRegister dst, XMMRegister src); |
| 963 void sqrtsd(XMMRegister dst, XMMRegister src); | 964 void sqrtsd(XMMRegister dst, XMMRegister src); |
| 964 void sqrtsd(XMMRegister dst, const Operand& src); | 965 void sqrtsd(XMMRegister dst, const Operand& src); |
| 965 | 966 |
| 966 void andpd(XMMRegister dst, XMMRegister src); | 967 void andpd(XMMRegister dst, XMMRegister src); |
| 967 void orpd(XMMRegister dst, XMMRegister src); | 968 void orpd(XMMRegister dst, XMMRegister src); |
| 968 | 969 |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1185 private: | 1186 private: |
| 1186 Assembler* assembler_; | 1187 Assembler* assembler_; |
| 1187 #ifdef DEBUG | 1188 #ifdef DEBUG |
| 1188 int space_before_; | 1189 int space_before_; |
| 1189 #endif | 1190 #endif |
| 1190 }; | 1191 }; |
| 1191 | 1192 |
| 1192 } } // namespace v8::internal | 1193 } } // namespace v8::internal |
| 1193 | 1194 |
| 1194 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1195 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |