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

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

Issue 974313002: [turbofan] Support for %_DoubleHi, %_DoubleLo and %_ConstructDouble. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed Svens comment. Created 5 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
« no previous file with comments | « src/compiler/x64/instruction-selector-x64.cc ('k') | src/ia32/assembler-ia32.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 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after
1011 }; 1011 };
1012 1012
1013 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); 1013 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
1014 1014
1015 void movmskpd(Register dst, XMMRegister src); 1015 void movmskpd(Register dst, XMMRegister src);
1016 void movmskps(Register dst, XMMRegister src); 1016 void movmskps(Register dst, XMMRegister src);
1017 1017
1018 void cmpltsd(XMMRegister dst, XMMRegister src); 1018 void cmpltsd(XMMRegister dst, XMMRegister src);
1019 void pcmpeqd(XMMRegister dst, XMMRegister src); 1019 void pcmpeqd(XMMRegister dst, XMMRegister src);
1020 1020
1021 void punpckldq(XMMRegister dst, XMMRegister src);
1022 void punpckhdq(XMMRegister dst, XMMRegister src);
1023
1021 void movdqa(XMMRegister dst, const Operand& src); 1024 void movdqa(XMMRegister dst, const Operand& src);
1022 void movdqa(const Operand& dst, XMMRegister src); 1025 void movdqa(const Operand& dst, XMMRegister src);
1023 void movdqu(XMMRegister dst, const Operand& src); 1026 void movdqu(XMMRegister dst, const Operand& src);
1024 void movdqu(const Operand& dst, XMMRegister src); 1027 void movdqu(const Operand& dst, XMMRegister src);
1025 void movdq(bool aligned, XMMRegister dst, const Operand& src) { 1028 void movdq(bool aligned, XMMRegister dst, const Operand& src) {
1026 if (aligned) { 1029 if (aligned) {
1027 movdqa(dst, src); 1030 movdqa(dst, src);
1028 } else { 1031 } else {
1029 movdqu(dst, src); 1032 movdqu(dst, src);
1030 } 1033 }
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
1413 private: 1416 private:
1414 Assembler* assembler_; 1417 Assembler* assembler_;
1415 #ifdef DEBUG 1418 #ifdef DEBUG
1416 int space_before_; 1419 int space_before_;
1417 #endif 1420 #endif
1418 }; 1421 };
1419 1422
1420 } } // namespace v8::internal 1423 } } // namespace v8::internal
1421 1424
1422 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1425 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/compiler/x64/instruction-selector-x64.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698