| 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 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1013 void frndint(); | 1013 void frndint(); |
| 1014 | 1014 |
| 1015 void sahf(); | 1015 void sahf(); |
| 1016 void setcc(Condition cc, Register reg); | 1016 void setcc(Condition cc, Register reg); |
| 1017 | 1017 |
| 1018 void cpuid(); | 1018 void cpuid(); |
| 1019 | 1019 |
| 1020 // SSE instructions | 1020 // SSE instructions |
| 1021 void andps(XMMRegister dst, XMMRegister src); | 1021 void andps(XMMRegister dst, XMMRegister src); |
| 1022 void xorps(XMMRegister dst, XMMRegister src); | 1022 void xorps(XMMRegister dst, XMMRegister src); |
| 1023 void orps(XMMRegister dst, XMMRegister src); |
| 1023 | 1024 |
| 1024 // SSE2 instructions | 1025 // SSE2 instructions |
| 1025 void cvttss2si(Register dst, const Operand& src); | 1026 void cvttss2si(Register dst, const Operand& src); |
| 1026 void cvttsd2si(Register dst, const Operand& src); | 1027 void cvttsd2si(Register dst, const Operand& src); |
| 1027 void cvtsd2si(Register dst, XMMRegister src); | 1028 void cvtsd2si(Register dst, XMMRegister src); |
| 1028 | 1029 |
| 1029 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); } | 1030 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); } |
| 1030 void cvtsi2sd(XMMRegister dst, const Operand& src); | 1031 void cvtsi2sd(XMMRegister dst, const Operand& src); |
| 1031 void cvtss2sd(XMMRegister dst, XMMRegister src); | 1032 void cvtss2sd(XMMRegister dst, XMMRegister src); |
| 1032 void cvtsd2ss(XMMRegister dst, XMMRegister src); | 1033 void cvtsd2ss(XMMRegister dst, XMMRegister src); |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1256 private: | 1257 private: |
| 1257 Assembler* assembler_; | 1258 Assembler* assembler_; |
| 1258 #ifdef DEBUG | 1259 #ifdef DEBUG |
| 1259 int space_before_; | 1260 int space_before_; |
| 1260 #endif | 1261 #endif |
| 1261 }; | 1262 }; |
| 1262 | 1263 |
| 1263 } } // namespace v8::internal | 1264 } } // namespace v8::internal |
| 1264 | 1265 |
| 1265 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1266 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |