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

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

Issue 2027043002: [Turbofan] Add ia32 support for 4 and 16 byte moves and swaps. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Disassembler and test. Created 4 years, 5 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/register-allocator.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 941 matching lines...) Expand 10 before | Expand all | Expand 10 after
952 void mulss(XMMRegister dst, XMMRegister src) { mulss(dst, Operand(src)); } 952 void mulss(XMMRegister dst, XMMRegister src) { mulss(dst, Operand(src)); }
953 void mulss(XMMRegister dst, const Operand& src); 953 void mulss(XMMRegister dst, const Operand& src);
954 void divss(XMMRegister dst, XMMRegister src) { divss(dst, Operand(src)); } 954 void divss(XMMRegister dst, XMMRegister src) { divss(dst, Operand(src)); }
955 void divss(XMMRegister dst, const Operand& src); 955 void divss(XMMRegister dst, const Operand& src);
956 void sqrtss(XMMRegister dst, XMMRegister src) { sqrtss(dst, Operand(src)); } 956 void sqrtss(XMMRegister dst, XMMRegister src) { sqrtss(dst, Operand(src)); }
957 void sqrtss(XMMRegister dst, const Operand& src); 957 void sqrtss(XMMRegister dst, const Operand& src);
958 958
959 void ucomiss(XMMRegister dst, XMMRegister src) { ucomiss(dst, Operand(src)); } 959 void ucomiss(XMMRegister dst, XMMRegister src) { ucomiss(dst, Operand(src)); }
960 void ucomiss(XMMRegister dst, const Operand& src); 960 void ucomiss(XMMRegister dst, const Operand& src);
961 void movaps(XMMRegister dst, XMMRegister src); 961 void movaps(XMMRegister dst, XMMRegister src);
962 void movups(XMMRegister dst, XMMRegister src);
963 void movups(XMMRegister dst, const Operand& src);
964 void movups(const Operand& dst, XMMRegister src);
962 void shufps(XMMRegister dst, XMMRegister src, byte imm8); 965 void shufps(XMMRegister dst, XMMRegister src, byte imm8);
963 966
964 void maxss(XMMRegister dst, XMMRegister src) { maxss(dst, Operand(src)); } 967 void maxss(XMMRegister dst, XMMRegister src) { maxss(dst, Operand(src)); }
965 void maxss(XMMRegister dst, const Operand& src); 968 void maxss(XMMRegister dst, const Operand& src);
966 void minss(XMMRegister dst, XMMRegister src) { minss(dst, Operand(src)); } 969 void minss(XMMRegister dst, XMMRegister src) { minss(dst, Operand(src)); }
967 void minss(XMMRegister dst, const Operand& src); 970 void minss(XMMRegister dst, const Operand& src);
968 971
969 void andps(XMMRegister dst, const Operand& src); 972 void andps(XMMRegister dst, const Operand& src);
970 void andps(XMMRegister dst, XMMRegister src) { andps(dst, Operand(src)); } 973 void andps(XMMRegister dst, XMMRegister src) { andps(dst, Operand(src)); }
971 void xorps(XMMRegister dst, const Operand& src); 974 void xorps(XMMRegister dst, const Operand& src);
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
1597 Assembler* assembler_; 1600 Assembler* assembler_;
1598 #ifdef DEBUG 1601 #ifdef DEBUG
1599 int space_before_; 1602 int space_before_;
1600 #endif 1603 #endif
1601 }; 1604 };
1602 1605
1603 } // namespace internal 1606 } // namespace internal
1604 } // namespace v8 1607 } // namespace v8
1605 1608
1606 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1609 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/compiler/register-allocator.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698