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

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

Issue 641153003: [turbofan]IA: ChangeFloat32ToFloat64 supports mem operand (Closed) Base URL: https://github.com/v8/v8.git@bleeding_edge
Patch Set: Created 6 years, 2 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
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | test/cctest/compiler/test-run-machops.cc » ('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 1933 matching lines...) Expand 10 before | Expand all | Expand 10 after
1944 1944
1945 void Assembler::cvtsi2sd(XMMRegister dst, const Operand& src) { 1945 void Assembler::cvtsi2sd(XMMRegister dst, const Operand& src) {
1946 EnsureSpace ensure_space(this); 1946 EnsureSpace ensure_space(this);
1947 EMIT(0xF2); 1947 EMIT(0xF2);
1948 EMIT(0x0F); 1948 EMIT(0x0F);
1949 EMIT(0x2A); 1949 EMIT(0x2A);
1950 emit_sse_operand(dst, src); 1950 emit_sse_operand(dst, src);
1951 } 1951 }
1952 1952
1953 1953
1954 void Assembler::cvtss2sd(XMMRegister dst, XMMRegister src) { 1954 void Assembler::cvtss2sd(XMMRegister dst, const Operand& src) {
1955 EnsureSpace ensure_space(this); 1955 EnsureSpace ensure_space(this);
1956 EMIT(0xF3); 1956 EMIT(0xF3);
1957 EMIT(0x0F); 1957 EMIT(0x0F);
1958 EMIT(0x5A); 1958 EMIT(0x5A);
1959 emit_sse_operand(dst, src); 1959 emit_sse_operand(dst, src);
1960 } 1960 }
1961 1961
1962 1962
1963 void Assembler::cvtsd2ss(XMMRegister dst, XMMRegister src) { 1963 void Assembler::cvtsd2ss(XMMRegister dst, XMMRegister src) {
1964 EnsureSpace ensure_space(this); 1964 EnsureSpace ensure_space(this);
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
2687 fprintf(coverage_log, "%s\n", file_line); 2687 fprintf(coverage_log, "%s\n", file_line);
2688 fflush(coverage_log); 2688 fflush(coverage_log);
2689 } 2689 }
2690 } 2690 }
2691 2691
2692 #endif 2692 #endif
2693 2693
2694 } } // namespace v8::internal 2694 } } // namespace v8::internal
2695 2695
2696 #endif // V8_TARGET_ARCH_IA32 2696 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | test/cctest/compiler/test-run-machops.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698