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

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

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/compiler/x64/instruction-selector-x64.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 940 matching lines...) Expand 10 before | Expand all | Expand 10 after
951 cvttss2si(dst, Operand(src)); 951 cvttss2si(dst, Operand(src));
952 } 952 }
953 void cvttsd2si(Register dst, const Operand& src); 953 void cvttsd2si(Register dst, const Operand& src);
954 void cvttsd2si(Register dst, XMMRegister src) { 954 void cvttsd2si(Register dst, XMMRegister src) {
955 cvttsd2si(dst, Operand(src)); 955 cvttsd2si(dst, Operand(src));
956 } 956 }
957 void cvtsd2si(Register dst, XMMRegister src); 957 void cvtsd2si(Register dst, XMMRegister src);
958 958
959 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); } 959 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); }
960 void cvtsi2sd(XMMRegister dst, const Operand& src); 960 void cvtsi2sd(XMMRegister dst, const Operand& src);
961 void cvtss2sd(XMMRegister dst, XMMRegister src); 961 void cvtss2sd(XMMRegister dst, const Operand& src);
962 void cvtss2sd(XMMRegister dst, XMMRegister src) {
963 cvtss2sd(dst, Operand(src));
964 }
962 void cvtsd2ss(XMMRegister dst, XMMRegister src); 965 void cvtsd2ss(XMMRegister dst, XMMRegister src);
963 966
964 void addsd(XMMRegister dst, XMMRegister src); 967 void addsd(XMMRegister dst, XMMRegister src);
965 void addsd(XMMRegister dst, const Operand& src); 968 void addsd(XMMRegister dst, const Operand& src);
966 void subsd(XMMRegister dst, XMMRegister src); 969 void subsd(XMMRegister dst, XMMRegister src);
967 void subsd(XMMRegister dst, const Operand& src); 970 void subsd(XMMRegister dst, const Operand& src);
968 void mulsd(XMMRegister dst, XMMRegister src); 971 void mulsd(XMMRegister dst, XMMRegister src);
969 void mulsd(XMMRegister dst, const Operand& src); 972 void mulsd(XMMRegister dst, const Operand& src);
970 void divsd(XMMRegister dst, XMMRegister src); 973 void divsd(XMMRegister dst, XMMRegister src);
971 void xorpd(XMMRegister dst, XMMRegister src); 974 void xorpd(XMMRegister dst, XMMRegister src);
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
1193 private: 1196 private:
1194 Assembler* assembler_; 1197 Assembler* assembler_;
1195 #ifdef DEBUG 1198 #ifdef DEBUG
1196 int space_before_; 1199 int space_before_;
1197 #endif 1200 #endif
1198 }; 1201 };
1199 1202
1200 } } // namespace v8::internal 1203 } } // namespace v8::internal
1201 1204
1202 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1205 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/compiler/x64/instruction-selector-x64.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698