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

Side by Side Diff: src/IceTargetLoweringX8664Traits.h

Issue 1909013002: Subzero. X86. Lowers shufflevector using xmm instructions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. Created 4 years, 7 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/IceTargetLoweringX8664.cpp ('k') | src/IceTargetLoweringX86Base.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceTargetLoweringX8664Traits.h - x86-64 traits -*- C++ -*-=// 1 //===- subzero/src/IceTargetLoweringX8664Traits.h - x86-64 traits -*- C++ -*-=//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 Cond::BrCond Opposite; 1014 Cond::BrCond Opposite;
1015 const char *DisplayString; 1015 const char *DisplayString;
1016 const char *EmitString; 1016 const char *EmitString;
1017 } InstBrAttributes[]; 1017 } InstBrAttributes[];
1018 1018
1019 static const struct InstCmppsAttributesType { 1019 static const struct InstCmppsAttributesType {
1020 const char *EmitString; 1020 const char *EmitString;
1021 } InstCmppsAttributes[]; 1021 } InstCmppsAttributes[];
1022 1022
1023 static const struct TypeAttributesType { 1023 static const struct TypeAttributesType {
1024 const char *CvtString; // i (integer), s (single FP), d (double FP) 1024 const char *CvtString; // i (integer), s (single FP), d (double FP)
1025 const char *SdSsString; // ss, sd, or <blank> 1025 const char *SdSsString; // ss, sd, or <blank>
1026 const char *PdPsString; // ps, pd, or <blank> 1026 const char *PdPsString; // ps, pd, or <blank>
1027 const char *SpSdString; // ss, sd, ps, pd, or <blank> 1027 const char *SpSdString; // ss, sd, ps, pd, or <blank>
1028 const char *PackString; // b, w, d, or <blank> 1028 const char *PackString; // b, w, d, or <blank>
1029 const char *WidthString; // b, w, l, q, or <blank> 1029 const char *UnpackString; // bw, wd, dq, or <blank>
1030 const char *FldString; // s, l, or <blank> 1030 const char *WidthString; // b, w, l, q, or <blank>
1031 const char *FldString; // s, l, or <blank>
1031 } TypeAttributes[]; 1032 } TypeAttributes[];
1032 }; 1033 };
1033 1034
1034 using Traits = ::Ice::X8664::TargetX8664Traits; 1035 using Traits = ::Ice::X8664::TargetX8664Traits;
1035 } // end of namespace X8664 1036 } // end of namespace X8664
1036 1037
1037 } // end of namespace Ice 1038 } // end of namespace Ice
1038 1039
1039 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8664TRAITS_H 1040 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8664TRAITS_H
OLDNEW
« no previous file with comments | « src/IceTargetLoweringX8664.cpp ('k') | src/IceTargetLoweringX86Base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698