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

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

Issue 2815028: X64: Remove more fpu code. Unroll more local initialization loops. (Closed)
Patch Set: Addressed review comments. Created 10 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/x64/assembler-x64.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 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 void cvtlsi2sd(XMMRegister dst, Register src); 1121 void cvtlsi2sd(XMMRegister dst, Register src);
1122 void cvtqsi2sd(XMMRegister dst, const Operand& src); 1122 void cvtqsi2sd(XMMRegister dst, const Operand& src);
1123 void cvtqsi2sd(XMMRegister dst, Register src); 1123 void cvtqsi2sd(XMMRegister dst, Register src);
1124 1124
1125 void cvtlsi2ss(XMMRegister dst, Register src); 1125 void cvtlsi2ss(XMMRegister dst, Register src);
1126 1126
1127 void cvtss2sd(XMMRegister dst, XMMRegister src); 1127 void cvtss2sd(XMMRegister dst, XMMRegister src);
1128 void cvtss2sd(XMMRegister dst, const Operand& src); 1128 void cvtss2sd(XMMRegister dst, const Operand& src);
1129 void cvtsd2ss(XMMRegister dst, XMMRegister src); 1129 void cvtsd2ss(XMMRegister dst, XMMRegister src);
1130 1130
1131 void cvtsd2si(Register dst, XMMRegister src);
1132 void cvtsd2siq(Register dst, XMMRegister src);
1133
1131 void addsd(XMMRegister dst, XMMRegister src); 1134 void addsd(XMMRegister dst, XMMRegister src);
1132 void subsd(XMMRegister dst, XMMRegister src); 1135 void subsd(XMMRegister dst, XMMRegister src);
1133 void mulsd(XMMRegister dst, XMMRegister src); 1136 void mulsd(XMMRegister dst, XMMRegister src);
1134 void divsd(XMMRegister dst, XMMRegister src); 1137 void divsd(XMMRegister dst, XMMRegister src);
1135 1138
1136 void xorpd(XMMRegister dst, XMMRegister src); 1139 void xorpd(XMMRegister dst, XMMRegister src);
1137 void sqrtsd(XMMRegister dst, XMMRegister src); 1140 void sqrtsd(XMMRegister dst, XMMRegister src);
1138 1141
1139 void ucomisd(XMMRegister dst, XMMRegister src); 1142 void ucomisd(XMMRegister dst, XMMRegister src);
1140 void ucomisd(XMMRegister dst, const Operand& src); 1143 void ucomisd(XMMRegister dst, const Operand& src);
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
1426 private: 1429 private:
1427 Assembler* assembler_; 1430 Assembler* assembler_;
1428 #ifdef DEBUG 1431 #ifdef DEBUG
1429 int space_before_; 1432 int space_before_;
1430 #endif 1433 #endif
1431 }; 1434 };
1432 1435
1433 } } // namespace v8::internal 1436 } } // namespace v8::internal
1434 1437
1435 #endif // V8_X64_ASSEMBLER_X64_H_ 1438 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698