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

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

Issue 6303012: 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 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1202 void extractps(Register dst, XMMRegister src, byte imm8); 1202 void extractps(Register dst, XMMRegister src, byte imm8);
1203 1203
1204 void movsd(const Operand& dst, XMMRegister src); 1204 void movsd(const Operand& dst, XMMRegister src);
1205 void movsd(XMMRegister dst, XMMRegister src); 1205 void movsd(XMMRegister dst, XMMRegister src);
1206 void movsd(XMMRegister dst, const Operand& src); 1206 void movsd(XMMRegister dst, const Operand& src);
1207 1207
1208 void movss(XMMRegister dst, const Operand& src); 1208 void movss(XMMRegister dst, const Operand& src);
1209 void movss(const Operand& dst, XMMRegister src); 1209 void movss(const Operand& dst, XMMRegister src);
1210 1210
1211 void cvttss2si(Register dst, const Operand& src); 1211 void cvttss2si(Register dst, const Operand& src);
1212 void cvttss2si(Register dst, XMMRegister src);
1212 void cvttsd2si(Register dst, const Operand& src); 1213 void cvttsd2si(Register dst, const Operand& src);
1214 void cvttsd2si(Register dst, XMMRegister src);
1213 void cvttsd2siq(Register dst, XMMRegister src); 1215 void cvttsd2siq(Register dst, XMMRegister src);
1214 1216
1215 void cvtlsi2sd(XMMRegister dst, const Operand& src); 1217 void cvtlsi2sd(XMMRegister dst, const Operand& src);
1216 void cvtlsi2sd(XMMRegister dst, Register src); 1218 void cvtlsi2sd(XMMRegister dst, Register src);
1217 void cvtqsi2sd(XMMRegister dst, const Operand& src); 1219 void cvtqsi2sd(XMMRegister dst, const Operand& src);
1218 void cvtqsi2sd(XMMRegister dst, Register src); 1220 void cvtqsi2sd(XMMRegister dst, Register src);
1219 1221
1220 void cvtlsi2ss(XMMRegister dst, Register src); 1222 void cvtlsi2ss(XMMRegister dst, Register src);
1221 1223
1222 void cvtss2sd(XMMRegister dst, XMMRegister src); 1224 void cvtss2sd(XMMRegister dst, XMMRegister src);
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
1522 private: 1524 private:
1523 Assembler* assembler_; 1525 Assembler* assembler_;
1524 #ifdef DEBUG 1526 #ifdef DEBUG
1525 int space_before_; 1527 int space_before_;
1526 #endif 1528 #endif
1527 }; 1529 };
1528 1530
1529 } } // namespace v8::internal 1531 } } // namespace v8::internal
1530 1532
1531 #endif // V8_X64_ASSEMBLER_X64_H_ 1533 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« src/ia32/stub-cache-ia32.cc ('K') | « 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