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 | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are 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 1996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2007 | 2007 |
2008 void Assembler::subsd(XMMRegister dst, XMMRegister src) { | 2008 void Assembler::subsd(XMMRegister dst, XMMRegister src) { |
2009 EnsureSpace ensure_space(this); | 2009 EnsureSpace ensure_space(this); |
2010 EMIT(0xF2); | 2010 EMIT(0xF2); |
2011 EMIT(0x0F); | 2011 EMIT(0x0F); |
2012 EMIT(0x5C); | 2012 EMIT(0x5C); |
2013 emit_sse_operand(dst, src); | 2013 emit_sse_operand(dst, src); |
2014 } | 2014 } |
2015 | 2015 |
2016 | 2016 |
| 2017 void Assembler::subsd(XMMRegister dst, const Operand& src) { |
| 2018 EnsureSpace ensure_space(this); |
| 2019 EMIT(0xF2); |
| 2020 EMIT(0x0F); |
| 2021 EMIT(0x5C); |
| 2022 emit_sse_operand(dst, src); |
| 2023 } |
| 2024 |
| 2025 |
2017 void Assembler::divsd(XMMRegister dst, XMMRegister src) { | 2026 void Assembler::divsd(XMMRegister dst, XMMRegister src) { |
2018 EnsureSpace ensure_space(this); | 2027 EnsureSpace ensure_space(this); |
2019 EMIT(0xF2); | 2028 EMIT(0xF2); |
2020 EMIT(0x0F); | 2029 EMIT(0x0F); |
2021 EMIT(0x5E); | 2030 EMIT(0x5E); |
2022 emit_sse_operand(dst, src); | 2031 emit_sse_operand(dst, src); |
2023 } | 2032 } |
2024 | 2033 |
2025 | 2034 |
2026 void Assembler::xorpd(XMMRegister dst, XMMRegister src) { | 2035 void Assembler::xorpd(XMMRegister dst, XMMRegister src) { |
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2663 fprintf(coverage_log, "%s\n", file_line); | 2672 fprintf(coverage_log, "%s\n", file_line); |
2664 fflush(coverage_log); | 2673 fflush(coverage_log); |
2665 } | 2674 } |
2666 } | 2675 } |
2667 | 2676 |
2668 #endif | 2677 #endif |
2669 | 2678 |
2670 } } // namespace v8::internal | 2679 } } // namespace v8::internal |
2671 | 2680 |
2672 #endif // V8_TARGET_ARCH_IA32 | 2681 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |