OLD | NEW |
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 Loading... |
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 |
OLD | NEW |