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

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

Issue 2831009: Remove the comisd instruction from the ia32 and x64 assemblers. We... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « src/ia32/codegen-ia32.cc ('k') | 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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 void cvtss2sd(XMMRegister dst, XMMRegister src); 1115 void cvtss2sd(XMMRegister dst, XMMRegister src);
1116 1116
1117 void addsd(XMMRegister dst, XMMRegister src); 1117 void addsd(XMMRegister dst, XMMRegister src);
1118 void subsd(XMMRegister dst, XMMRegister src); 1118 void subsd(XMMRegister dst, XMMRegister src);
1119 void mulsd(XMMRegister dst, XMMRegister src); 1119 void mulsd(XMMRegister dst, XMMRegister src);
1120 void divsd(XMMRegister dst, XMMRegister src); 1120 void divsd(XMMRegister dst, XMMRegister src);
1121 1121
1122 void xorpd(XMMRegister dst, XMMRegister src); 1122 void xorpd(XMMRegister dst, XMMRegister src);
1123 void sqrtsd(XMMRegister dst, XMMRegister src); 1123 void sqrtsd(XMMRegister dst, XMMRegister src);
1124 1124
1125 void comisd(XMMRegister dst, XMMRegister src);
1126 void ucomisd(XMMRegister dst, XMMRegister src); 1125 void ucomisd(XMMRegister dst, XMMRegister src);
1127 1126
1128 // The first argument is the reg field, the second argument is the r/m field. 1127 // The first argument is the reg field, the second argument is the r/m field.
1129 void emit_sse_operand(XMMRegister dst, XMMRegister src); 1128 void emit_sse_operand(XMMRegister dst, XMMRegister src);
1130 void emit_sse_operand(XMMRegister reg, const Operand& adr); 1129 void emit_sse_operand(XMMRegister reg, const Operand& adr);
1131 void emit_sse_operand(XMMRegister dst, Register src); 1130 void emit_sse_operand(XMMRegister dst, Register src);
1132 void emit_sse_operand(Register dst, XMMRegister src); 1131 void emit_sse_operand(Register dst, XMMRegister src);
1133 1132
1134 // Use either movsd or movlpd. 1133 // Use either movsd or movlpd.
1135 // void movdbl(XMMRegister dst, const Operand& src); 1134 // void movdbl(XMMRegister dst, const Operand& src);
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
1412 private: 1411 private:
1413 Assembler* assembler_; 1412 Assembler* assembler_;
1414 #ifdef DEBUG 1413 #ifdef DEBUG
1415 int space_before_; 1414 int space_before_;
1416 #endif 1415 #endif
1417 }; 1416 };
1418 1417
1419 } } // namespace v8::internal 1418 } } // namespace v8::internal
1420 1419
1421 #endif // V8_X64_ASSEMBLER_X64_H_ 1420 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/ia32/codegen-ia32.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698