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

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
« no previous file with comments | « src/stub-cache.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 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after
1198 void extractps(Register dst, XMMRegister src, byte imm8); 1198 void extractps(Register dst, XMMRegister src, byte imm8);
1199 1199
1200 void movsd(const Operand& dst, XMMRegister src); 1200 void movsd(const Operand& dst, XMMRegister src);
1201 void movsd(XMMRegister dst, XMMRegister src); 1201 void movsd(XMMRegister dst, XMMRegister src);
1202 void movsd(XMMRegister dst, const Operand& src); 1202 void movsd(XMMRegister dst, const Operand& src);
1203 1203
1204 void movss(XMMRegister dst, const Operand& src); 1204 void movss(XMMRegister dst, const Operand& src);
1205 void movss(const Operand& dst, XMMRegister src); 1205 void movss(const Operand& dst, XMMRegister src);
1206 1206
1207 void cvttss2si(Register dst, const Operand& src); 1207 void cvttss2si(Register dst, const Operand& src);
1208 void cvttss2si(Register dst, XMMRegister src);
1208 void cvttsd2si(Register dst, const Operand& src); 1209 void cvttsd2si(Register dst, const Operand& src);
1210 void cvttsd2si(Register dst, XMMRegister src);
1209 void cvttsd2siq(Register dst, XMMRegister src); 1211 void cvttsd2siq(Register dst, XMMRegister src);
1210 1212
1211 void cvtlsi2sd(XMMRegister dst, const Operand& src); 1213 void cvtlsi2sd(XMMRegister dst, const Operand& src);
1212 void cvtlsi2sd(XMMRegister dst, Register src); 1214 void cvtlsi2sd(XMMRegister dst, Register src);
1213 void cvtqsi2sd(XMMRegister dst, const Operand& src); 1215 void cvtqsi2sd(XMMRegister dst, const Operand& src);
1214 void cvtqsi2sd(XMMRegister dst, Register src); 1216 void cvtqsi2sd(XMMRegister dst, Register src);
1215 1217
1216 void cvtlsi2ss(XMMRegister dst, Register src); 1218 void cvtlsi2ss(XMMRegister dst, Register src);
1217 1219
1218 void cvtss2sd(XMMRegister dst, XMMRegister src); 1220 void cvtss2sd(XMMRegister dst, XMMRegister src);
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
1518 private: 1520 private:
1519 Assembler* assembler_; 1521 Assembler* assembler_;
1520 #ifdef DEBUG 1522 #ifdef DEBUG
1521 int space_before_; 1523 int space_before_;
1522 #endif 1524 #endif
1523 }; 1525 };
1524 1526
1525 } } // namespace v8::internal 1527 } } // namespace v8::internal
1526 1528
1527 #endif // V8_X64_ASSEMBLER_X64_H_ 1529 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/stub-cache.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698