blob: e757f2587ac719a6d38f775915c42078e3fa5a53 [file] [log] [blame]
Tim Northover69fa84a2016-10-14 22:18:18 +00001//===---- lib/CodeGen/GlobalISel/LegalizerInfo.cpp - Legalizer -------==//
Tim Northover75ad0772016-07-20 21:13:29 +00002//
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 Northover69fa84a2016-10-14 22:18:18 +000020#include "llvm/CodeGen/GlobalISel/LegalizerInfo.h"
Tim Northover0f140c72016-09-09 11:46:34 +000021
22#include "llvm/ADT/SmallBitVector.h"
Tim Northover75ad0772016-07-20 21:13:29 +000023#include "llvm/CodeGen/MachineInstr.h"
Tim Northover0f140c72016-09-09 11:46:34 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
Tim Northover75ad0772016-07-20 21:13:29 +000025#include "llvm/CodeGen/ValueTypes.h"
Tim Northover75ad0772016-07-20 21:13:29 +000026#include "llvm/IR/Type.h"
27#include "llvm/Target/TargetOpcodes.h"
28using namespace llvm;
29
Tim Northover69fa84a2016-10-14 22:18:18 +000030LegalizerInfo::LegalizerInfo() : TablesInitialized(false) {
Tim Northover32335812016-08-04 18:35:11 +000031 // FIXME: these two can be legalized to the fundamental load/store Jakob
32 // proposed. Once loads & stores are supported.
Tim Northoverbdf67c92016-08-23 21:01:33 +000033 DefaultActions[TargetOpcode::G_ANYEXT] = Legal;
Tim Northover32335812016-08-04 18:35:11 +000034 DefaultActions[TargetOpcode::G_TRUNC] = Legal;
35
Tim Northoverb3a0be42016-08-23 21:01:20 +000036 DefaultActions[TargetOpcode::G_INTRINSIC] = Legal;
37 DefaultActions[TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS] = Legal;
38
Tim Northover75ad0772016-07-20 21:13:29 +000039 DefaultActions[TargetOpcode::G_ADD] = NarrowScalar;
Tim Northovercdf23f12016-10-31 18:30:59 +000040 DefaultActions[TargetOpcode::G_LOAD] = NarrowScalar;
41 DefaultActions[TargetOpcode::G_STORE] = NarrowScalar;
Tim Northoverb3a0be42016-08-23 21:01:20 +000042
43 DefaultActions[TargetOpcode::G_BRCOND] = WidenScalar;
Tim Northover0e6afbd2017-02-06 21:56:47 +000044 DefaultActions[TargetOpcode::G_INSERT] = NarrowScalar;
Tim Northover75ad0772016-07-20 21:13:29 +000045}
46
Tim Northover69fa84a2016-10-14 22:18:18 +000047void LegalizerInfo::computeTables() {
Tim Northoverf8bab1c2016-08-29 21:00:00 +000048 for (unsigned Opcode = 0; Opcode <= LastOp - FirstOp; ++Opcode) {
49 for (unsigned Idx = 0; Idx != Actions[Opcode].size(); ++Idx) {
50 for (auto &Action : Actions[Opcode][Idx]) {
51 LLT Ty = Action.first;
52 if (!Ty.isVector())
53 continue;
Tim Northover75ad0772016-07-20 21:13:29 +000054
Tim Northoverf8bab1c2016-08-29 21:00:00 +000055 auto &Entry = MaxLegalVectorElts[std::make_pair(Opcode + FirstOp,
56 Ty.getElementType())];
57 Entry = std::max(Entry, Ty.getNumElements());
58 }
59 }
Tim Northover75ad0772016-07-20 21:13:29 +000060 }
61
62 TablesInitialized = true;
63}
64
65// FIXME: inefficient implementation for now. Without ComputeValueVTs we're
66// probably going to need specialized lookup structures for various types before
67// we have any hope of doing well with something like <13 x i3>. Even the common
68// cases should do better than what we have now.
Tim Northover69fa84a2016-10-14 22:18:18 +000069std::pair<LegalizerInfo::LegalizeAction, LLT>
70LegalizerInfo::getAction(const InstrAspect &Aspect) const {
Tim Northover75ad0772016-07-20 21:13:29 +000071 assert(TablesInitialized && "backend forgot to call computeTables");
72 // These *have* to be implemented for now, they're the fundamental basis of
73 // how everything else is transformed.
74
Tim Northover405e25c2016-12-06 18:38:29 +000075 // Nothing is going to go well with types that aren't a power of 2 yet, so
76 // don't even try because we might make things worse.
77 if (!isPowerOf2_64(Aspect.Type.getSizeInBits()))
78 return std::make_pair(Unsupported, LLT());
79
Tim Northover33b07d62016-07-22 20:03:43 +000080 // FIXME: the long-term plan calls for expansion in terms of load/store (if
81 // they're not legal).
Tim Northovera01bece2016-08-23 19:30:42 +000082 if (Aspect.Opcode == TargetOpcode::G_SEQUENCE ||
83 Aspect.Opcode == TargetOpcode::G_EXTRACT)
84 return std::make_pair(Legal, Aspect.Type);
Tim Northover33b07d62016-07-22 20:03:43 +000085
Tim Northoverf8bab1c2016-08-29 21:00:00 +000086 LegalizeAction Action = findInActions(Aspect);
87 if (Action != NotFound)
88 return findLegalAction(Aspect, Action);
Tim Northover75ad0772016-07-20 21:13:29 +000089
Tim Northovera01bece2016-08-23 19:30:42 +000090 unsigned Opcode = Aspect.Opcode;
91 LLT Ty = Aspect.Type;
Tim Northover75ad0772016-07-20 21:13:29 +000092 if (!Ty.isVector()) {
Tim Northovera01bece2016-08-23 19:30:42 +000093 auto DefaultAction = DefaultActions.find(Aspect.Opcode);
Tim Northover75ad0772016-07-20 21:13:29 +000094 if (DefaultAction != DefaultActions.end() && DefaultAction->second == Legal)
95 return std::make_pair(Legal, Ty);
96
Tim Northover0a683e72016-12-06 19:02:15 +000097 if (DefaultAction == DefaultActions.end() ||
98 DefaultAction->second != NarrowScalar)
99 return std::make_pair(Unsupported, LLT());
Tim Northovera01bece2016-08-23 19:30:42 +0000100 return findLegalAction(Aspect, NarrowScalar);
Tim Northover75ad0772016-07-20 21:13:29 +0000101 }
102
103 LLT EltTy = Ty.getElementType();
104 int NumElts = Ty.getNumElements();
105
106 auto ScalarAction = ScalarInVectorActions.find(std::make_pair(Opcode, EltTy));
107 if (ScalarAction != ScalarInVectorActions.end() &&
108 ScalarAction->second != Legal)
Tim Northovera01bece2016-08-23 19:30:42 +0000109 return findLegalAction(Aspect, ScalarAction->second);
Tim Northover75ad0772016-07-20 21:13:29 +0000110
111 // The element type is legal in principle, but the number of elements is
112 // wrong.
113 auto MaxLegalElts = MaxLegalVectorElts.lookup(std::make_pair(Opcode, EltTy));
114 if (MaxLegalElts > NumElts)
Tim Northovera01bece2016-08-23 19:30:42 +0000115 return findLegalAction(Aspect, MoreElements);
Tim Northover75ad0772016-07-20 21:13:29 +0000116
117 if (MaxLegalElts == 0) {
118 // Scalarize if there's no legal vector type, which is just a special case
119 // of FewerElements.
120 return std::make_pair(FewerElements, EltTy);
121 }
122
Tim Northovera01bece2016-08-23 19:30:42 +0000123 return findLegalAction(Aspect, FewerElements);
Tim Northover75ad0772016-07-20 21:13:29 +0000124}
125
Tim Northover69fa84a2016-10-14 22:18:18 +0000126std::tuple<LegalizerInfo::LegalizeAction, unsigned, LLT>
127LegalizerInfo::getAction(const MachineInstr &MI,
128 const MachineRegisterInfo &MRI) const {
Tim Northover0f140c72016-09-09 11:46:34 +0000129 SmallBitVector SeenTypes(8);
130 const MCOperandInfo *OpInfo = MI.getDesc().OpInfo;
131 for (unsigned i = 0; i < MI.getDesc().getNumOperands(); ++i) {
132 if (!OpInfo[i].isGenericType())
133 continue;
134
135 // We don't want to repeatedly check the same operand index, that
136 // could get expensive.
137 unsigned TypeIdx = OpInfo[i].getGenericTypeIndex();
138 if (SeenTypes[TypeIdx])
139 continue;
140
141 SeenTypes.set(TypeIdx);
142
143 LLT Ty = MRI.getType(MI.getOperand(i).getReg());
144 auto Action = getAction({MI.getOpcode(), TypeIdx, Ty});
Tim Northovera01bece2016-08-23 19:30:42 +0000145 if (Action.first != Legal)
Tim Northover0f140c72016-09-09 11:46:34 +0000146 return std::make_tuple(Action.first, TypeIdx, Action.second);
Tim Northovera01bece2016-08-23 19:30:42 +0000147 }
Richard Smith84c4cc42016-08-23 22:21:58 +0000148 return std::make_tuple(Legal, 0, LLT{});
Tim Northover75ad0772016-07-20 21:13:29 +0000149}
150
Tim Northover69fa84a2016-10-14 22:18:18 +0000151bool LegalizerInfo::isLegal(const MachineInstr &MI,
152 const MachineRegisterInfo &MRI) const {
Tim Northover0f140c72016-09-09 11:46:34 +0000153 return std::get<0>(getAction(MI, MRI)) == Legal;
Tim Northover75ad0772016-07-20 21:13:29 +0000154}
155
Tim Northover69fa84a2016-10-14 22:18:18 +0000156LLT LegalizerInfo::findLegalType(const InstrAspect &Aspect,
157 LegalizeAction Action) const {
Tim Northover75ad0772016-07-20 21:13:29 +0000158 switch(Action) {
159 default:
160 llvm_unreachable("Cannot find legal type");
161 case Legal:
Tim Northovercecee562016-08-26 17:46:13 +0000162 case Lower:
Tim Northoveredb3c8c2016-08-29 19:07:16 +0000163 case Libcall:
Tim Northovera01bece2016-08-23 19:30:42 +0000164 return Aspect.Type;
Tim Northover75ad0772016-07-20 21:13:29 +0000165 case NarrowScalar: {
Tim Northovera01bece2016-08-23 19:30:42 +0000166 return findLegalType(Aspect,
Tim Northover75ad0772016-07-20 21:13:29 +0000167 [&](LLT Ty) -> LLT { return Ty.halfScalarSize(); });
168 }
169 case WidenScalar: {
Tim Northovera01bece2016-08-23 19:30:42 +0000170 return findLegalType(Aspect, [&](LLT Ty) -> LLT {
Tim Northoverea904f92016-08-19 22:40:00 +0000171 return Ty.getSizeInBits() < 8 ? LLT::scalar(8) : Ty.doubleScalarSize();
172 });
Tim Northover75ad0772016-07-20 21:13:29 +0000173 }
174 case FewerElements: {
Tim Northovera01bece2016-08-23 19:30:42 +0000175 return findLegalType(Aspect,
Tim Northover75ad0772016-07-20 21:13:29 +0000176 [&](LLT Ty) -> LLT { return Ty.halfElements(); });
177 }
178 case MoreElements: {
Tim Northovera01bece2016-08-23 19:30:42 +0000179 return findLegalType(Aspect,
180 [&](LLT Ty) -> LLT { return Ty.doubleElements(); });
Tim Northover75ad0772016-07-20 21:13:29 +0000181 }
182 }
183}