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

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

Issue 1276113002: Security: disable nontemporals. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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/arm64/simulator-arm64.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 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after
1070 void pshufd(XMMRegister dst, XMMRegister src, uint8_t shuffle); 1070 void pshufd(XMMRegister dst, XMMRegister src, uint8_t shuffle);
1071 void pextrd(Register dst, XMMRegister src, int8_t offset) { 1071 void pextrd(Register dst, XMMRegister src, int8_t offset) {
1072 pextrd(Operand(dst), src, offset); 1072 pextrd(Operand(dst), src, offset);
1073 } 1073 }
1074 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); 1074 void pextrd(const Operand& dst, XMMRegister src, int8_t offset);
1075 void pinsrd(XMMRegister dst, Register src, int8_t offset) { 1075 void pinsrd(XMMRegister dst, Register src, int8_t offset) {
1076 pinsrd(dst, Operand(src), offset); 1076 pinsrd(dst, Operand(src), offset);
1077 } 1077 }
1078 void pinsrd(XMMRegister dst, const Operand& src, int8_t offset); 1078 void pinsrd(XMMRegister dst, const Operand& src, int8_t offset);
1079 1079
1080 // Parallel XMM operations.
1081 void movntdqa(XMMRegister dst, const Operand& src);
1082 void movntdq(const Operand& dst, XMMRegister src);
1083
1084 // AVX instructions 1080 // AVX instructions
1085 void vfmadd132sd(XMMRegister dst, XMMRegister src1, XMMRegister src2) { 1081 void vfmadd132sd(XMMRegister dst, XMMRegister src1, XMMRegister src2) {
1086 vfmadd132sd(dst, src1, Operand(src2)); 1082 vfmadd132sd(dst, src1, Operand(src2));
1087 } 1083 }
1088 void vfmadd213sd(XMMRegister dst, XMMRegister src1, XMMRegister src2) { 1084 void vfmadd213sd(XMMRegister dst, XMMRegister src1, XMMRegister src2) {
1089 vfmadd213sd(dst, src1, Operand(src2)); 1085 vfmadd213sd(dst, src1, Operand(src2));
1090 } 1086 }
1091 void vfmadd231sd(XMMRegister dst, XMMRegister src1, XMMRegister src2) { 1087 void vfmadd231sd(XMMRegister dst, XMMRegister src1, XMMRegister src2) {
1092 vfmadd231sd(dst, src1, Operand(src2)); 1088 vfmadd231sd(dst, src1, Operand(src2));
1093 } 1089 }
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
1594 private: 1590 private:
1595 Assembler* assembler_; 1591 Assembler* assembler_;
1596 #ifdef DEBUG 1592 #ifdef DEBUG
1597 int space_before_; 1593 int space_before_;
1598 #endif 1594 #endif
1599 }; 1595 };
1600 1596
1601 } } // namespace v8::internal 1597 } } // namespace v8::internal
1602 1598
1603 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1599 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/arm64/simulator-arm64.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698