OLD | NEW |
1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 lowering ----*- C++ -*-===// | 1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 lowering ----*- 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 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 Context.insert<typename Traits::Insts::Pop>(Dest); | 798 Context.insert<typename Traits::Insts::Pop>(Dest); |
799 } | 799 } |
800 void _por(Variable *Dest, Operand *Src0) { | 800 void _por(Variable *Dest, Operand *Src0) { |
801 AutoMemorySandboxer<> _(this, &Dest, &Src0); | 801 AutoMemorySandboxer<> _(this, &Dest, &Src0); |
802 Context.insert<typename Traits::Insts::Por>(Dest, Src0); | 802 Context.insert<typename Traits::Insts::Por>(Dest, Src0); |
803 } | 803 } |
804 void _punpckl(Variable *Dest, Operand *Src0) { | 804 void _punpckl(Variable *Dest, Operand *Src0) { |
805 AutoMemorySandboxer<> _(this, &Dest, &Src0); | 805 AutoMemorySandboxer<> _(this, &Dest, &Src0); |
806 Context.insert<typename Traits::Insts::Punpckl>(Dest, Src0); | 806 Context.insert<typename Traits::Insts::Punpckl>(Dest, Src0); |
807 } | 807 } |
| 808 void _pshufb(Variable *Dest, Operand *Src0) { |
| 809 AutoMemorySandboxer<> _(this, &Dest, &Src0); |
| 810 Context.insert<typename Traits::Insts::Pshufb>(Dest, Src0); |
| 811 } |
808 void _pshufd(Variable *Dest, Operand *Src0, Operand *Src1) { | 812 void _pshufd(Variable *Dest, Operand *Src0, Operand *Src1) { |
809 AutoMemorySandboxer<> _(this, &Dest, &Src0, &Src1); | 813 AutoMemorySandboxer<> _(this, &Dest, &Src0, &Src1); |
810 Context.insert<typename Traits::Insts::Pshufd>(Dest, Src0, Src1); | 814 Context.insert<typename Traits::Insts::Pshufd>(Dest, Src0, Src1); |
811 } | 815 } |
812 void _psll(Variable *Dest, Operand *Src0) { | 816 void _psll(Variable *Dest, Operand *Src0) { |
813 AutoMemorySandboxer<> _(this, &Dest, &Src0); | 817 AutoMemorySandboxer<> _(this, &Dest, &Src0); |
814 Context.insert<typename Traits::Insts::Psll>(Dest, Src0); | 818 Context.insert<typename Traits::Insts::Psll>(Dest, Src0); |
815 } | 819 } |
816 void _psra(Variable *Dest, Operand *Src0) { | 820 void _psra(Variable *Dest, Operand *Src0) { |
817 AutoMemorySandboxer<> _(this, &Dest, &Src0); | 821 AutoMemorySandboxer<> _(this, &Dest, &Src0); |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1094 static constexpr SizeT IGNORE_INDEX = 0x80000000u; | 1098 static constexpr SizeT IGNORE_INDEX = 0x80000000u; |
1095 Variable *lowerShuffleVector_TwoFromSameSrc(Variable *Src0, SizeT Index0, | 1099 Variable *lowerShuffleVector_TwoFromSameSrc(Variable *Src0, SizeT Index0, |
1096 SizeT Index1, Variable *Src1, | 1100 SizeT Index1, Variable *Src1, |
1097 SizeT Index2, SizeT Index3); | 1101 SizeT Index2, SizeT Index3); |
1098 static constexpr SizeT UNIFIED_INDEX_0 = 0; | 1102 static constexpr SizeT UNIFIED_INDEX_0 = 0; |
1099 static constexpr SizeT UNIFIED_INDEX_1 = 2; | 1103 static constexpr SizeT UNIFIED_INDEX_1 = 2; |
1100 Variable *lowerShuffleVector_UnifyFromDifferentSrcs(Variable *Src0, | 1104 Variable *lowerShuffleVector_UnifyFromDifferentSrcs(Variable *Src0, |
1101 SizeT Index0, | 1105 SizeT Index0, |
1102 Variable *Src1, | 1106 Variable *Src1, |
1103 SizeT Index1); | 1107 SizeT Index1); |
| 1108 static constexpr SizeT CLEAR_ALL_BITS = 0x80; |
| 1109 SizeT PshufbMaskCount = 0; |
| 1110 GlobalString lowerShuffleVector_NewMaskName(); |
| 1111 ConstantRelocatable *lowerShuffleVector_CreatePshufbMask( |
| 1112 int8_t Idx0, int8_t Idx1, int8_t Idx2, int8_t Idx3, int8_t Idx4, |
| 1113 int8_t Idx5, int8_t Idx6, int8_t Idx7, int8_t Idx8, int8_t Idx9, |
| 1114 int8_t Idx10, int8_t Idx11, int8_t Idx12, int8_t Idx13, int8_t Idx14, |
| 1115 int8_t Idx15); |
| 1116 void lowerShuffleVector_UsingPshufb(Variable *Dest, Operand *Src0, |
| 1117 Operand *Src1, int8_t Idx0, int8_t Idx1, |
| 1118 int8_t Idx2, int8_t Idx3, int8_t Idx4, |
| 1119 int8_t Idx5, int8_t Idx6, int8_t Idx7, |
| 1120 int8_t Idx8, int8_t Idx9, int8_t Idx10, |
| 1121 int8_t Idx11, int8_t Idx12, int8_t Idx13, |
| 1122 int8_t Idx14, int8_t Idx15); |
1104 /// @} | 1123 /// @} |
1105 | 1124 |
1106 static FixupKind PcRelFixup; | 1125 static FixupKind PcRelFixup; |
1107 static FixupKind AbsFixup; | 1126 static FixupKind AbsFixup; |
1108 }; | 1127 }; |
1109 | 1128 |
1110 template <typename TraitsType> | 1129 template <typename TraitsType> |
1111 class TargetDataX86 final : public TargetDataLowering { | 1130 class TargetDataX86 final : public TargetDataLowering { |
1112 using Traits = TraitsType; | 1131 using Traits = TraitsType; |
1113 TargetDataX86() = delete; | 1132 TargetDataX86() = delete; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1150 | 1169 |
1151 explicit TargetHeaderX86(GlobalContext *Ctx) : TargetHeaderLowering(Ctx) {} | 1170 explicit TargetHeaderX86(GlobalContext *Ctx) : TargetHeaderLowering(Ctx) {} |
1152 }; | 1171 }; |
1153 | 1172 |
1154 } // end of namespace X86NAMESPACE | 1173 } // end of namespace X86NAMESPACE |
1155 } // end of namespace Ice | 1174 } // end of namespace Ice |
1156 | 1175 |
1157 #include "IceTargetLoweringX86BaseImpl.h" | 1176 #include "IceTargetLoweringX86BaseImpl.h" |
1158 | 1177 |
1159 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H | 1178 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H |
OLD | NEW |