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

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

Issue 1589363002: [turbofan] Add the RoundInt32ToFloat32 operator to turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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/compiler/x87/instruction-selector-x87.cc ('k') | src/ia32/assembler-ia32.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 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 942 matching lines...) Expand 10 before | Expand all | Expand 10 after
953 void cvttss2si(Register dst, const Operand& src); 953 void cvttss2si(Register dst, const Operand& src);
954 void cvttss2si(Register dst, XMMRegister src) { 954 void cvttss2si(Register dst, XMMRegister src) {
955 cvttss2si(dst, Operand(src)); 955 cvttss2si(dst, Operand(src));
956 } 956 }
957 void cvttsd2si(Register dst, const Operand& src); 957 void cvttsd2si(Register dst, const Operand& src);
958 void cvttsd2si(Register dst, XMMRegister src) { 958 void cvttsd2si(Register dst, XMMRegister src) {
959 cvttsd2si(dst, Operand(src)); 959 cvttsd2si(dst, Operand(src));
960 } 960 }
961 void cvtsd2si(Register dst, XMMRegister src); 961 void cvtsd2si(Register dst, XMMRegister src);
962 962
963 void cvtsi2ss(XMMRegister dst, Register src) { cvtsi2ss(dst, Operand(src)); }
964 void cvtsi2ss(XMMRegister dst, const Operand& src);
963 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); } 965 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); }
964 void cvtsi2sd(XMMRegister dst, const Operand& src); 966 void cvtsi2sd(XMMRegister dst, const Operand& src);
965 void cvtss2sd(XMMRegister dst, const Operand& src); 967 void cvtss2sd(XMMRegister dst, const Operand& src);
966 void cvtss2sd(XMMRegister dst, XMMRegister src) { 968 void cvtss2sd(XMMRegister dst, XMMRegister src) {
967 cvtss2sd(dst, Operand(src)); 969 cvtss2sd(dst, Operand(src));
968 } 970 }
969 void cvtsd2ss(XMMRegister dst, const Operand& src); 971 void cvtsd2ss(XMMRegister dst, const Operand& src);
970 void cvtsd2ss(XMMRegister dst, XMMRegister src) { 972 void cvtsd2ss(XMMRegister dst, XMMRegister src) {
971 cvtsd2ss(dst, Operand(src)); 973 cvtsd2ss(dst, Operand(src));
972 } 974 }
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
1566 Assembler* assembler_; 1568 Assembler* assembler_;
1567 #ifdef DEBUG 1569 #ifdef DEBUG
1568 int space_before_; 1570 int space_before_;
1569 #endif 1571 #endif
1570 }; 1572 };
1571 1573
1572 } // namespace internal 1574 } // namespace internal
1573 } // namespace v8 1575 } // namespace v8
1574 1576
1575 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1577 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/compiler/x87/instruction-selector-x87.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698