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

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

Issue 639283003: [turbofan] IA: TruncateFloat64ToFloat32 supports mem operand (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: ia32 port 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 | Annotate | Revision Log
« 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 941 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, XMMRegister src);
962 void cvtsd2ss(XMMRegister dst, XMMRegister src); 962 void cvtsd2ss(XMMRegister dst, const Operand& src);
963 void cvtsd2ss(XMMRegister dst, XMMRegister src) {
964 cvtsd2ss(dst, Operand(src));
965 }
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);
972 void sqrtsd(XMMRegister dst, XMMRegister src); 975 void sqrtsd(XMMRegister dst, XMMRegister src);
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
1191 private: 1194 private:
1192 Assembler* assembler_; 1195 Assembler* assembler_;
1193 #ifdef DEBUG 1196 #ifdef DEBUG
1194 int space_before_; 1197 int space_before_;
1195 #endif 1198 #endif
1196 }; 1199 };
1197 1200
1198 } } // namespace v8::internal 1201 } } // namespace v8::internal
1199 1202
1200 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1203 #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