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

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

Issue 299423005: Relax register constraints for LMathSqrt. (Closed) Base URL: git@github.com:v8/v8.git@master
Patch Set: x64 fix Created 6 years, 6 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 | « no previous file | 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 918 matching lines...) Expand 10 before | Expand all | Expand 10 after
929 void cvtsd2ss(XMMRegister dst, XMMRegister src); 929 void cvtsd2ss(XMMRegister dst, XMMRegister src);
930 930
931 void addsd(XMMRegister dst, XMMRegister src); 931 void addsd(XMMRegister dst, XMMRegister src);
932 void addsd(XMMRegister dst, const Operand& src); 932 void addsd(XMMRegister dst, const Operand& src);
933 void subsd(XMMRegister dst, XMMRegister src); 933 void subsd(XMMRegister dst, XMMRegister src);
934 void mulsd(XMMRegister dst, XMMRegister src); 934 void mulsd(XMMRegister dst, XMMRegister src);
935 void mulsd(XMMRegister dst, const Operand& src); 935 void mulsd(XMMRegister dst, const Operand& src);
936 void divsd(XMMRegister dst, XMMRegister src); 936 void divsd(XMMRegister dst, XMMRegister src);
937 void xorpd(XMMRegister dst, XMMRegister src); 937 void xorpd(XMMRegister dst, XMMRegister src);
938 void sqrtsd(XMMRegister dst, XMMRegister src); 938 void sqrtsd(XMMRegister dst, XMMRegister src);
939 void sqrtsd(XMMRegister dst, const Operand& src);
939 940
940 void andpd(XMMRegister dst, XMMRegister src); 941 void andpd(XMMRegister dst, XMMRegister src);
941 void orpd(XMMRegister dst, XMMRegister src); 942 void orpd(XMMRegister dst, XMMRegister src);
942 943
943 void ucomisd(XMMRegister dst, XMMRegister src) { ucomisd(dst, Operand(src)); } 944 void ucomisd(XMMRegister dst, XMMRegister src) { ucomisd(dst, Operand(src)); }
944 void ucomisd(XMMRegister dst, const Operand& src); 945 void ucomisd(XMMRegister dst, const Operand& src);
945 946
946 enum RoundingMode { 947 enum RoundingMode {
947 kRoundToNearest = 0x0, 948 kRoundToNearest = 0x0,
948 kRoundDown = 0x1, 949 kRoundDown = 0x1,
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 private: 1160 private:
1160 Assembler* assembler_; 1161 Assembler* assembler_;
1161 #ifdef DEBUG 1162 #ifdef DEBUG
1162 int space_before_; 1163 int space_before_;
1163 #endif 1164 #endif
1164 }; 1165 };
1165 1166
1166 } } // namespace v8::internal 1167 } } // namespace v8::internal
1167 1168
1168 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1169 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698