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

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

Issue 6883159: X64: Adding macro to load double from memory, and use SSE3 instruction if present. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 8 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 | « no previous file | 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 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1305 1305
1306 void movdqa(const Operand& dst, XMMRegister src); 1306 void movdqa(const Operand& dst, XMMRegister src);
1307 void movdqa(XMMRegister dst, const Operand& src); 1307 void movdqa(XMMRegister dst, const Operand& src);
1308 1308
1309 void movapd(XMMRegister dst, XMMRegister src); 1309 void movapd(XMMRegister dst, XMMRegister src);
1310 void movaps(XMMRegister dst, XMMRegister src); 1310 void movaps(XMMRegister dst, XMMRegister src);
1311 1311
1312 void movss(XMMRegister dst, const Operand& src); 1312 void movss(XMMRegister dst, const Operand& src);
1313 void movss(const Operand& dst, XMMRegister src); 1313 void movss(const Operand& dst, XMMRegister src);
1314 1314
1315 void movddup(XMMRegister dst, const Operand& src);
1316
1315 void cvttss2si(Register dst, const Operand& src); 1317 void cvttss2si(Register dst, const Operand& src);
1316 void cvttss2si(Register dst, XMMRegister src); 1318 void cvttss2si(Register dst, XMMRegister src);
1317 void cvttsd2si(Register dst, const Operand& src); 1319 void cvttsd2si(Register dst, const Operand& src);
1318 void cvttsd2si(Register dst, XMMRegister src); 1320 void cvttsd2si(Register dst, XMMRegister src);
1319 void cvttsd2siq(Register dst, XMMRegister src); 1321 void cvttsd2siq(Register dst, XMMRegister src);
1320 1322
1321 void cvtlsi2sd(XMMRegister dst, const Operand& src); 1323 void cvtlsi2sd(XMMRegister dst, const Operand& src);
1322 void cvtlsi2sd(XMMRegister dst, Register src); 1324 void cvtlsi2sd(XMMRegister dst, Register src);
1323 void cvtqsi2sd(XMMRegister dst, const Operand& src); 1325 void cvtqsi2sd(XMMRegister dst, const Operand& src);
1324 void cvtqsi2sd(XMMRegister dst, Register src); 1326 void cvtqsi2sd(XMMRegister dst, Register src);
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
1640 private: 1642 private:
1641 Assembler* assembler_; 1643 Assembler* assembler_;
1642 #ifdef DEBUG 1644 #ifdef DEBUG
1643 int space_before_; 1645 int space_before_;
1644 #endif 1646 #endif
1645 }; 1647 };
1646 1648
1647 } } // namespace v8::internal 1649 } } // namespace v8::internal
1648 1650
1649 #endif // V8_X64_ASSEMBLER_X64_H_ 1651 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698