| Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 1 | //===- lib/CodeGen/GlobalISel/LegalizerInfo.cpp - Legalizer ---------------===// |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Implement an interface to specify and query how an illegal operation on a |
| 11 | // given type should be expanded. |
| 12 | // |
| 13 | // Issues to be resolved: |
| 14 | // + Make it fast. |
| 15 | // + Support weird types like i3, <7 x i3>, ... |
| 16 | // + Operations with more than one type (ICMP, CMPXCHG, intrinsics, ...) |
| 17 | // |
| 18 | //===----------------------------------------------------------------------===// |
| 19 | |
| Tim Northover | 69fa84a | 2016-10-14 22:18:18 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/GlobalISel/LegalizerInfo.h" |
| Tim Northover | 0f140c7 | 2016-09-09 11:46:34 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallBitVector.h" |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineInstr.h" |
| Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineOperand.h" |
| Tim Northover | 0f140c7 | 2016-09-09 11:46:34 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 25 | #include "llvm/MC/MCInstrDesc.h" |
| 26 | #include "llvm/Support/ErrorHandling.h" |
| 27 | #include "llvm/Support/LowLevelTypeImpl.h" |
| 28 | #include "llvm/Support/MathExtras.h" |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetOpcodes.h" |
| Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 30 | #include <algorithm> |
| 31 | #include <cassert> |
| 32 | #include <tuple> |
| 33 | #include <utility> |
| 34 | |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 35 | using namespace llvm; |
| 36 | |
| Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 37 | LegalizerInfo::LegalizerInfo() { |
| Tim Northover | ff5e7e1 | 2017-06-30 20:27:36 +0000 | [diff] [blame] | 38 | DefaultActions[TargetOpcode::G_IMPLICIT_DEF] = NarrowScalar; |
| 39 | |
| Tim Northover | 3233581 | 2016-08-04 18:35:11 +0000 | [diff] [blame] | 40 | // FIXME: these two can be legalized to the fundamental load/store Jakob |
| 41 | // proposed. Once loads & stores are supported. |
| Tim Northover | bdf67c9 | 2016-08-23 21:01:33 +0000 | [diff] [blame] | 42 | DefaultActions[TargetOpcode::G_ANYEXT] = Legal; |
| Tim Northover | 3233581 | 2016-08-04 18:35:11 +0000 | [diff] [blame] | 43 | DefaultActions[TargetOpcode::G_TRUNC] = Legal; |
| 44 | |
| Tim Northover | b3a0be4 | 2016-08-23 21:01:20 +0000 | [diff] [blame] | 45 | DefaultActions[TargetOpcode::G_INTRINSIC] = Legal; |
| 46 | DefaultActions[TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS] = Legal; |
| 47 | |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 48 | DefaultActions[TargetOpcode::G_ADD] = NarrowScalar; |
| Tim Northover | cdf23f1 | 2016-10-31 18:30:59 +0000 | [diff] [blame] | 49 | DefaultActions[TargetOpcode::G_LOAD] = NarrowScalar; |
| 50 | DefaultActions[TargetOpcode::G_STORE] = NarrowScalar; |
| Tim Northover | b3a0be4 | 2016-08-23 21:01:20 +0000 | [diff] [blame] | 51 | |
| 52 | DefaultActions[TargetOpcode::G_BRCOND] = WidenScalar; |
| Tim Northover | 0e6afbd | 2017-02-06 21:56:47 +0000 | [diff] [blame] | 53 | DefaultActions[TargetOpcode::G_INSERT] = NarrowScalar; |
| Tim Northover | c2d5e6d | 2017-06-26 20:34:13 +0000 | [diff] [blame] | 54 | DefaultActions[TargetOpcode::G_EXTRACT] = NarrowScalar; |
| Volkan Keles | 5698b2a | 2017-03-08 18:09:14 +0000 | [diff] [blame] | 55 | DefaultActions[TargetOpcode::G_FNEG] = Lower; |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| Tim Northover | 69fa84a | 2016-10-14 22:18:18 +0000 | [diff] [blame] | 58 | void LegalizerInfo::computeTables() { |
| Tim Northover | f8bab1c | 2016-08-29 21:00:00 +0000 | [diff] [blame] | 59 | for (unsigned Opcode = 0; Opcode <= LastOp - FirstOp; ++Opcode) { |
| 60 | for (unsigned Idx = 0; Idx != Actions[Opcode].size(); ++Idx) { |
| 61 | for (auto &Action : Actions[Opcode][Idx]) { |
| 62 | LLT Ty = Action.first; |
| 63 | if (!Ty.isVector()) |
| 64 | continue; |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 65 | |
| Tim Northover | f8bab1c | 2016-08-29 21:00:00 +0000 | [diff] [blame] | 66 | auto &Entry = MaxLegalVectorElts[std::make_pair(Opcode + FirstOp, |
| 67 | Ty.getElementType())]; |
| 68 | Entry = std::max(Entry, Ty.getNumElements()); |
| 69 | } |
| 70 | } |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | TablesInitialized = true; |
| 74 | } |
| 75 | |
| 76 | // FIXME: inefficient implementation for now. Without ComputeValueVTs we're |
| 77 | // probably going to need specialized lookup structures for various types before |
| 78 | // we have any hope of doing well with something like <13 x i3>. Even the common |
| 79 | // cases should do better than what we have now. |
| Tim Northover | 69fa84a | 2016-10-14 22:18:18 +0000 | [diff] [blame] | 80 | std::pair<LegalizerInfo::LegalizeAction, LLT> |
| 81 | LegalizerInfo::getAction(const InstrAspect &Aspect) const { |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 82 | assert(TablesInitialized && "backend forgot to call computeTables"); |
| 83 | // These *have* to be implemented for now, they're the fundamental basis of |
| 84 | // how everything else is transformed. |
| 85 | |
| Tim Northover | 33b07d6 | 2016-07-22 20:03:43 +0000 | [diff] [blame] | 86 | // FIXME: the long-term plan calls for expansion in terms of load/store (if |
| 87 | // they're not legal). |
| Tim Northover | c2d5e6d | 2017-06-26 20:34:13 +0000 | [diff] [blame] | 88 | if (Aspect.Opcode == TargetOpcode::G_MERGE_VALUES || |
| Tim Northover | bf01729 | 2017-03-03 22:46:09 +0000 | [diff] [blame] | 89 | Aspect.Opcode == TargetOpcode::G_UNMERGE_VALUES) |
| Tim Northover | a01bece | 2016-08-23 19:30:42 +0000 | [diff] [blame] | 90 | return std::make_pair(Legal, Aspect.Type); |
| Tim Northover | 33b07d6 | 2016-07-22 20:03:43 +0000 | [diff] [blame] | 91 | |
| Volkan Keles | 64ad85f | 2017-04-11 10:10:14 +0000 | [diff] [blame] | 92 | LLT Ty = Aspect.Type; |
| Tim Northover | f8bab1c | 2016-08-29 21:00:00 +0000 | [diff] [blame] | 93 | LegalizeAction Action = findInActions(Aspect); |
| Volkan Keles | 64ad85f | 2017-04-11 10:10:14 +0000 | [diff] [blame] | 94 | // LegalizerHelper is not able to handle non-power-of-2 types right now, so do |
| 95 | // not try to legalize them unless they are marked as Legal or Custom. |
| 96 | // FIXME: This is a temporary hack until the general non-power-of-2 |
| 97 | // legalization works. |
| 98 | if (!isPowerOf2_64(Ty.getSizeInBits()) && |
| 99 | !(Action == Legal || Action == Custom)) |
| 100 | return std::make_pair(Unsupported, LLT()); |
| 101 | |
| Tim Northover | f8bab1c | 2016-08-29 21:00:00 +0000 | [diff] [blame] | 102 | if (Action != NotFound) |
| 103 | return findLegalAction(Aspect, Action); |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 104 | |
| Tim Northover | a01bece | 2016-08-23 19:30:42 +0000 | [diff] [blame] | 105 | unsigned Opcode = Aspect.Opcode; |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 106 | if (!Ty.isVector()) { |
| Tim Northover | a01bece | 2016-08-23 19:30:42 +0000 | [diff] [blame] | 107 | auto DefaultAction = DefaultActions.find(Aspect.Opcode); |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 108 | if (DefaultAction != DefaultActions.end() && DefaultAction->second == Legal) |
| 109 | return std::make_pair(Legal, Ty); |
| 110 | |
| Volkan Keles | 5698b2a | 2017-03-08 18:09:14 +0000 | [diff] [blame] | 111 | if (DefaultAction != DefaultActions.end() && DefaultAction->second == Lower) |
| 112 | return std::make_pair(Lower, Ty); |
| 113 | |
| Tim Northover | 0a683e7 | 2016-12-06 19:02:15 +0000 | [diff] [blame] | 114 | if (DefaultAction == DefaultActions.end() || |
| 115 | DefaultAction->second != NarrowScalar) |
| 116 | return std::make_pair(Unsupported, LLT()); |
| Tim Northover | a01bece | 2016-08-23 19:30:42 +0000 | [diff] [blame] | 117 | return findLegalAction(Aspect, NarrowScalar); |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | LLT EltTy = Ty.getElementType(); |
| 121 | int NumElts = Ty.getNumElements(); |
| 122 | |
| 123 | auto ScalarAction = ScalarInVectorActions.find(std::make_pair(Opcode, EltTy)); |
| 124 | if (ScalarAction != ScalarInVectorActions.end() && |
| 125 | ScalarAction->second != Legal) |
| Tim Northover | a01bece | 2016-08-23 19:30:42 +0000 | [diff] [blame] | 126 | return findLegalAction(Aspect, ScalarAction->second); |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 127 | |
| 128 | // The element type is legal in principle, but the number of elements is |
| 129 | // wrong. |
| 130 | auto MaxLegalElts = MaxLegalVectorElts.lookup(std::make_pair(Opcode, EltTy)); |
| 131 | if (MaxLegalElts > NumElts) |
| Tim Northover | a01bece | 2016-08-23 19:30:42 +0000 | [diff] [blame] | 132 | return findLegalAction(Aspect, MoreElements); |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 133 | |
| 134 | if (MaxLegalElts == 0) { |
| 135 | // Scalarize if there's no legal vector type, which is just a special case |
| 136 | // of FewerElements. |
| 137 | return std::make_pair(FewerElements, EltTy); |
| 138 | } |
| 139 | |
| Tim Northover | a01bece | 2016-08-23 19:30:42 +0000 | [diff] [blame] | 140 | return findLegalAction(Aspect, FewerElements); |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 141 | } |
| 142 | |
| Tim Northover | 69fa84a | 2016-10-14 22:18:18 +0000 | [diff] [blame] | 143 | std::tuple<LegalizerInfo::LegalizeAction, unsigned, LLT> |
| 144 | LegalizerInfo::getAction(const MachineInstr &MI, |
| 145 | const MachineRegisterInfo &MRI) const { |
| Tim Northover | 0f140c7 | 2016-09-09 11:46:34 +0000 | [diff] [blame] | 146 | SmallBitVector SeenTypes(8); |
| 147 | const MCOperandInfo *OpInfo = MI.getDesc().OpInfo; |
| 148 | for (unsigned i = 0; i < MI.getDesc().getNumOperands(); ++i) { |
| 149 | if (!OpInfo[i].isGenericType()) |
| 150 | continue; |
| 151 | |
| 152 | // We don't want to repeatedly check the same operand index, that |
| 153 | // could get expensive. |
| 154 | unsigned TypeIdx = OpInfo[i].getGenericTypeIndex(); |
| 155 | if (SeenTypes[TypeIdx]) |
| 156 | continue; |
| 157 | |
| 158 | SeenTypes.set(TypeIdx); |
| 159 | |
| 160 | LLT Ty = MRI.getType(MI.getOperand(i).getReg()); |
| 161 | auto Action = getAction({MI.getOpcode(), TypeIdx, Ty}); |
| Tim Northover | a01bece | 2016-08-23 19:30:42 +0000 | [diff] [blame] | 162 | if (Action.first != Legal) |
| Tim Northover | 0f140c7 | 2016-09-09 11:46:34 +0000 | [diff] [blame] | 163 | return std::make_tuple(Action.first, TypeIdx, Action.second); |
| Tim Northover | a01bece | 2016-08-23 19:30:42 +0000 | [diff] [blame] | 164 | } |
| Richard Smith | 84c4cc4 | 2016-08-23 22:21:58 +0000 | [diff] [blame] | 165 | return std::make_tuple(Legal, 0, LLT{}); |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 166 | } |
| 167 | |
| Tim Northover | 69fa84a | 2016-10-14 22:18:18 +0000 | [diff] [blame] | 168 | bool LegalizerInfo::isLegal(const MachineInstr &MI, |
| 169 | const MachineRegisterInfo &MRI) const { |
| Tim Northover | 0f140c7 | 2016-09-09 11:46:34 +0000 | [diff] [blame] | 170 | return std::get<0>(getAction(MI, MRI)) == Legal; |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 171 | } |
| 172 | |
| Aditya Nandakumar | 479ddd2 | 2017-05-12 22:43:58 +0000 | [diff] [blame] | 173 | Optional<LLT> LegalizerInfo::findLegalType(const InstrAspect &Aspect, |
| Tim Northover | 69fa84a | 2016-10-14 22:18:18 +0000 | [diff] [blame] | 174 | LegalizeAction Action) const { |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 175 | switch(Action) { |
| 176 | default: |
| 177 | llvm_unreachable("Cannot find legal type"); |
| 178 | case Legal: |
| Tim Northover | cecee56 | 2016-08-26 17:46:13 +0000 | [diff] [blame] | 179 | case Lower: |
| Tim Northover | edb3c8c | 2016-08-29 19:07:16 +0000 | [diff] [blame] | 180 | case Libcall: |
| Tim Northover | 9136617 | 2017-02-15 23:22:50 +0000 | [diff] [blame] | 181 | case Custom: |
| Tim Northover | a01bece | 2016-08-23 19:30:42 +0000 | [diff] [blame] | 182 | return Aspect.Type; |
| Kristof Beyls | b539ea5 | 2017-06-30 08:26:20 +0000 | [diff] [blame] | 183 | case NarrowScalar: { |
| 184 | return findLegalizableSize( |
| 185 | Aspect, [&](LLT Ty) -> LLT { return Ty.halfScalarSize(); }); |
| 186 | } |
| 187 | case WidenScalar: { |
| 188 | return findLegalizableSize(Aspect, [&](LLT Ty) -> LLT { |
| Tim Northover | ea904f9 | 2016-08-19 22:40:00 +0000 | [diff] [blame] | 189 | return Ty.getSizeInBits() < 8 ? LLT::scalar(8) : Ty.doubleScalarSize(); |
| 190 | }); |
| Kristof Beyls | b539ea5 | 2017-06-30 08:26:20 +0000 | [diff] [blame] | 191 | } |
| 192 | case FewerElements: { |
| 193 | return findLegalizableSize( |
| 194 | Aspect, [&](LLT Ty) -> LLT { return Ty.halfElements(); }); |
| 195 | } |
| 196 | case MoreElements: { |
| 197 | return findLegalizableSize( |
| 198 | Aspect, [&](LLT Ty) -> LLT { return Ty.doubleElements(); }); |
| 199 | } |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 200 | } |
| Tim Northover | 75ad077 | 2016-07-20 21:13:29 +0000 | [diff] [blame] | 201 | } |
| Tim Northover | 9136617 | 2017-02-15 23:22:50 +0000 | [diff] [blame] | 202 | |
| 203 | bool LegalizerInfo::legalizeCustom(MachineInstr &MI, |
| 204 | MachineRegisterInfo &MRI, |
| 205 | MachineIRBuilder &MIRBuilder) const { |
| 206 | return false; |
| 207 | } |