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

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

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/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 938 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 void cvtsd2si(Register dst, XMMRegister src); 949 void cvtsd2si(Register dst, XMMRegister src);
950 950
951 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); } 951 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); }
952 void cvtsi2sd(XMMRegister dst, const Operand& src); 952 void cvtsi2sd(XMMRegister dst, const Operand& src);
953 void cvtss2sd(XMMRegister dst, XMMRegister src); 953 void cvtss2sd(XMMRegister dst, XMMRegister src);
954 void cvtsd2ss(XMMRegister dst, XMMRegister src); 954 void cvtsd2ss(XMMRegister dst, XMMRegister src);
955 955
956 void addsd(XMMRegister dst, XMMRegister src); 956 void addsd(XMMRegister dst, XMMRegister src);
957 void addsd(XMMRegister dst, const Operand& src); 957 void addsd(XMMRegister dst, const Operand& src);
958 void subsd(XMMRegister dst, XMMRegister src); 958 void subsd(XMMRegister dst, XMMRegister src);
959 void subsd(XMMRegister dst, const Operand& src);
959 void mulsd(XMMRegister dst, XMMRegister src); 960 void mulsd(XMMRegister dst, XMMRegister src);
960 void mulsd(XMMRegister dst, const Operand& src); 961 void mulsd(XMMRegister dst, const Operand& src);
961 void divsd(XMMRegister dst, XMMRegister src); 962 void divsd(XMMRegister dst, XMMRegister src);
962 void xorpd(XMMRegister dst, XMMRegister src); 963 void xorpd(XMMRegister dst, XMMRegister src);
963 void sqrtsd(XMMRegister dst, XMMRegister src); 964 void sqrtsd(XMMRegister dst, XMMRegister src);
964 void sqrtsd(XMMRegister dst, const Operand& src); 965 void sqrtsd(XMMRegister dst, const Operand& src);
965 966
966 void andpd(XMMRegister dst, XMMRegister src); 967 void andpd(XMMRegister dst, XMMRegister src);
967 void orpd(XMMRegister dst, XMMRegister src); 968 void orpd(XMMRegister dst, XMMRegister src);
968 969
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1185 private: 1186 private:
1186 Assembler* assembler_; 1187 Assembler* assembler_;
1187 #ifdef DEBUG 1188 #ifdef DEBUG
1188 int space_before_; 1189 int space_before_;
1189 #endif 1190 #endif
1190 }; 1191 };
1191 1192
1192 } } // namespace v8::internal 1193 } } // namespace v8::internal
1193 1194
1194 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1195 #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