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

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

Issue 6315004: Truncate rather than round to nearest when performing float-to-integer... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 11 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
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 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after
1197 void extractps(Register dst, XMMRegister src, byte imm8); 1197 void extractps(Register dst, XMMRegister src, byte imm8);
1198 1198
1199 void movsd(const Operand& dst, XMMRegister src); 1199 void movsd(const Operand& dst, XMMRegister src);
1200 void movsd(XMMRegister dst, XMMRegister src); 1200 void movsd(XMMRegister dst, XMMRegister src);
1201 void movsd(XMMRegister dst, const Operand& src); 1201 void movsd(XMMRegister dst, const Operand& src);
1202 1202
1203 void movss(XMMRegister dst, const Operand& src); 1203 void movss(XMMRegister dst, const Operand& src);
1204 void movss(const Operand& dst, XMMRegister src); 1204 void movss(const Operand& dst, XMMRegister src);
1205 1205
1206 void cvttss2si(Register dst, const Operand& src); 1206 void cvttss2si(Register dst, const Operand& src);
1207 void cvttss2si(Register dst, XMMRegister src);
1207 void cvttsd2si(Register dst, const Operand& src); 1208 void cvttsd2si(Register dst, const Operand& src);
1209 void cvttsd2si(Register dst, XMMRegister src);
1208 void cvttsd2siq(Register dst, XMMRegister src); 1210 void cvttsd2siq(Register dst, XMMRegister src);
1209 1211
1210 void cvtlsi2sd(XMMRegister dst, const Operand& src); 1212 void cvtlsi2sd(XMMRegister dst, const Operand& src);
1211 void cvtlsi2sd(XMMRegister dst, Register src); 1213 void cvtlsi2sd(XMMRegister dst, Register src);
1212 void cvtqsi2sd(XMMRegister dst, const Operand& src); 1214 void cvtqsi2sd(XMMRegister dst, const Operand& src);
1213 void cvtqsi2sd(XMMRegister dst, Register src); 1215 void cvtqsi2sd(XMMRegister dst, Register src);
1214 1216
1215 void cvtlsi2ss(XMMRegister dst, Register src); 1217 void cvtlsi2ss(XMMRegister dst, Register src);
1216 1218
1217 void cvtss2sd(XMMRegister dst, XMMRegister src); 1219 void cvtss2sd(XMMRegister dst, XMMRegister src);
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
1517 private: 1519 private:
1518 Assembler* assembler_; 1520 Assembler* assembler_;
1519 #ifdef DEBUG 1521 #ifdef DEBUG
1520 int space_before_; 1522 int space_before_;
1521 #endif 1523 #endif
1522 }; 1524 };
1523 1525
1524 } } // namespace v8::internal 1526 } } // namespace v8::internal
1525 1527
1526 #endif // V8_X64_ASSEMBLER_X64_H_ 1528 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698