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

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

Issue 189823003: Reland "Introduce intrinsics for double values in Javascript." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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/runtime.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 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after
1375 void movsd(XMMRegister dst, const Operand& src); 1375 void movsd(XMMRegister dst, const Operand& src);
1376 1376
1377 void movdqa(const Operand& dst, XMMRegister src); 1377 void movdqa(const Operand& dst, XMMRegister src);
1378 void movdqa(XMMRegister dst, const Operand& src); 1378 void movdqa(XMMRegister dst, const Operand& src);
1379 1379
1380 void movdqu(const Operand& dst, XMMRegister src); 1380 void movdqu(const Operand& dst, XMMRegister src);
1381 void movdqu(XMMRegister dst, const Operand& src); 1381 void movdqu(XMMRegister dst, const Operand& src);
1382 1382
1383 void movapd(XMMRegister dst, XMMRegister src); 1383 void movapd(XMMRegister dst, XMMRegister src);
1384 1384
1385 void psllq(XMMRegister reg, byte imm8);
1386
1385 void cvttsd2si(Register dst, const Operand& src); 1387 void cvttsd2si(Register dst, const Operand& src);
1386 void cvttsd2si(Register dst, XMMRegister src); 1388 void cvttsd2si(Register dst, XMMRegister src);
1387 void cvttsd2siq(Register dst, XMMRegister src); 1389 void cvttsd2siq(Register dst, XMMRegister src);
1388 1390
1389 void cvtlsi2sd(XMMRegister dst, const Operand& src); 1391 void cvtlsi2sd(XMMRegister dst, const Operand& src);
1390 void cvtlsi2sd(XMMRegister dst, Register src); 1392 void cvtlsi2sd(XMMRegister dst, Register src);
1391 void cvtqsi2sd(XMMRegister dst, const Operand& src); 1393 void cvtqsi2sd(XMMRegister dst, const Operand& src);
1392 void cvtqsi2sd(XMMRegister dst, Register src); 1394 void cvtqsi2sd(XMMRegister dst, Register src);
1393 1395
1394 1396
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 private: 1736 private:
1735 Assembler* assembler_; 1737 Assembler* assembler_;
1736 #ifdef DEBUG 1738 #ifdef DEBUG
1737 int space_before_; 1739 int space_before_;
1738 #endif 1740 #endif
1739 }; 1741 };
1740 1742
1741 } } // namespace v8::internal 1743 } } // namespace v8::internal
1742 1744
1743 #endif // V8_X64_ASSEMBLER_X64_H_ 1745 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698