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

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

Issue 8769037: Quickfix for DoMathPowHalf. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years 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 | « no previous file | src/ia32/assembler-ia32.cc » ('j') | src/ia32/lithium-codegen-ia32.cc » ('J')
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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 void subsd(XMMRegister dst, XMMRegister src); 980 void subsd(XMMRegister dst, XMMRegister src);
981 void mulsd(XMMRegister dst, XMMRegister src); 981 void mulsd(XMMRegister dst, XMMRegister src);
982 void divsd(XMMRegister dst, XMMRegister src); 982 void divsd(XMMRegister dst, XMMRegister src);
983 void xorpd(XMMRegister dst, XMMRegister src); 983 void xorpd(XMMRegister dst, XMMRegister src);
984 void xorps(XMMRegister dst, XMMRegister src); 984 void xorps(XMMRegister dst, XMMRegister src);
985 void sqrtsd(XMMRegister dst, XMMRegister src); 985 void sqrtsd(XMMRegister dst, XMMRegister src);
986 986
987 void andpd(XMMRegister dst, XMMRegister src); 987 void andpd(XMMRegister dst, XMMRegister src);
988 988
989 void ucomisd(XMMRegister dst, XMMRegister src); 989 void ucomisd(XMMRegister dst, XMMRegister src);
990 void ucomisd(XMMRegister dst, const Operand& src);
990 991
991 enum RoundingMode { 992 enum RoundingMode {
992 kRoundToNearest = 0x0, 993 kRoundToNearest = 0x0,
993 kRoundDown = 0x1, 994 kRoundDown = 0x1,
994 kRoundUp = 0x2, 995 kRoundUp = 0x2,
995 kRoundToZero = 0x3 996 kRoundToZero = 0x3
996 }; 997 };
997 998
998 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); 999 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
999 1000
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
1205 private: 1206 private:
1206 Assembler* assembler_; 1207 Assembler* assembler_;
1207 #ifdef DEBUG 1208 #ifdef DEBUG
1208 int space_before_; 1209 int space_before_;
1209 #endif 1210 #endif
1210 }; 1211 };
1211 1212
1212 } } // namespace v8::internal 1213 } } // namespace v8::internal
1213 1214
1214 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1215 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | src/ia32/assembler-ia32.cc » ('j') | src/ia32/lithium-codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698