Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(779)

Side by Side Diff: src/ia32/assembler-ia32.cc

Issue 582713002: [turbofan] IA: Float64ToUint32 supports mem operand (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698