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

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

Issue 10829169: Refactor Math.min/max to be a single HInstruction. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: review feedback; removed VORR instruction Created 8 years, 4 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/hydrogen-instructions.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 980 matching lines...) Expand 10 before | Expand all | Expand 10 after
991 991
992 void addsd(XMMRegister dst, XMMRegister src); 992 void addsd(XMMRegister dst, XMMRegister src);
993 void subsd(XMMRegister dst, XMMRegister src); 993 void subsd(XMMRegister dst, XMMRegister src);
994 void mulsd(XMMRegister dst, XMMRegister src); 994 void mulsd(XMMRegister dst, XMMRegister src);
995 void divsd(XMMRegister dst, XMMRegister src); 995 void divsd(XMMRegister dst, XMMRegister src);
996 void xorpd(XMMRegister dst, XMMRegister src); 996 void xorpd(XMMRegister dst, XMMRegister src);
997 void xorps(XMMRegister dst, XMMRegister src); 997 void xorps(XMMRegister dst, XMMRegister src);
998 void sqrtsd(XMMRegister dst, XMMRegister src); 998 void sqrtsd(XMMRegister dst, XMMRegister src);
999 999
1000 void andpd(XMMRegister dst, XMMRegister src); 1000 void andpd(XMMRegister dst, XMMRegister src);
1001 void orpd(XMMRegister dst, XMMRegister src);
1001 1002
1002 void ucomisd(XMMRegister dst, XMMRegister src); 1003 void ucomisd(XMMRegister dst, XMMRegister src);
1003 void ucomisd(XMMRegister dst, const Operand& src); 1004 void ucomisd(XMMRegister dst, const Operand& src);
1004 1005
1005 enum RoundingMode { 1006 enum RoundingMode {
1006 kRoundToNearest = 0x0, 1007 kRoundToNearest = 0x0,
1007 kRoundDown = 0x1, 1008 kRoundDown = 0x1,
1008 kRoundUp = 0x2, 1009 kRoundUp = 0x2,
1009 kRoundToZero = 0x3 1010 kRoundToZero = 0x3
1010 }; 1011 };
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 private: 1222 private:
1222 Assembler* assembler_; 1223 Assembler* assembler_;
1223 #ifdef DEBUG 1224 #ifdef DEBUG
1224 int space_before_; 1225 int space_before_;
1225 #endif 1226 #endif
1226 }; 1227 };
1227 1228
1228 } } // namespace v8::internal 1229 } } // namespace v8::internal
1229 1230
1230 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1231 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698