]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r307894, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / ARM / ARMRegisterBankInfo.cpp
1 //===- ARMRegisterBankInfo.cpp -----------------------------------*- C++ -*-==//
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 /// \file
10 /// This file implements the targeting of the RegisterBankInfo class for ARM.
11 /// \todo This should be generated by TableGen.
12 //===----------------------------------------------------------------------===//
13
14 #include "ARMRegisterBankInfo.h"
15 #include "ARMInstrInfo.h" // For the register classes
16 #include "ARMSubtarget.h"
17 #include "llvm/CodeGen/GlobalISel/RegisterBank.h"
18 #include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h"
19 #include "llvm/CodeGen/MachineRegisterInfo.h"
20 #include "llvm/Target/TargetRegisterInfo.h"
21
22 #define GET_TARGET_REGBANK_IMPL
23 #include "ARMGenRegisterBank.inc"
24
25 using namespace llvm;
26
27 #ifndef LLVM_BUILD_GLOBAL_ISEL
28 #error "You shouldn't build this"
29 #endif
30
31 // FIXME: TableGen this.
32 // If it grows too much and TableGen still isn't ready to do the job, extract it
33 // into an ARMGenRegisterBankInfo.def (similar to AArch64).
34 namespace llvm {
35 namespace ARM {
36 enum PartialMappingIdx {
37   PMI_GPR,
38   PMI_SPR,
39   PMI_DPR,
40   PMI_Min = PMI_GPR,
41 };
42
43 RegisterBankInfo::PartialMapping PartMappings[]{
44     // GPR Partial Mapping
45     {0, 32, GPRRegBank},
46     // SPR Partial Mapping
47     {0, 32, FPRRegBank},
48     // DPR Partial Mapping
49     {0, 64, FPRRegBank},
50 };
51
52 #ifndef NDEBUG
53 static bool checkPartMapping(const RegisterBankInfo::PartialMapping &PM,
54                              unsigned Start, unsigned Length,
55                              unsigned RegBankID) {
56   return PM.StartIdx == Start && PM.Length == Length &&
57          PM.RegBank->getID() == RegBankID;
58 }
59
60 static void checkPartialMappings() {
61   assert(
62       checkPartMapping(PartMappings[PMI_GPR - PMI_Min], 0, 32, GPRRegBankID) &&
63       "Wrong mapping for GPR");
64   assert(
65       checkPartMapping(PartMappings[PMI_SPR - PMI_Min], 0, 32, FPRRegBankID) &&
66       "Wrong mapping for SPR");
67   assert(
68       checkPartMapping(PartMappings[PMI_DPR - PMI_Min], 0, 64, FPRRegBankID) &&
69       "Wrong mapping for DPR");
70 }
71 #endif
72
73 enum ValueMappingIdx {
74   InvalidIdx = 0,
75   GPR3OpsIdx = 1,
76   SPR3OpsIdx = 4,
77   DPR3OpsIdx = 7,
78 };
79
80 RegisterBankInfo::ValueMapping ValueMappings[] = {
81     // invalid
82     {nullptr, 0},
83     // 3 ops in GPRs
84     {&PartMappings[PMI_GPR - PMI_Min], 1},
85     {&PartMappings[PMI_GPR - PMI_Min], 1},
86     {&PartMappings[PMI_GPR - PMI_Min], 1},
87     // 3 ops in SPRs
88     {&PartMappings[PMI_SPR - PMI_Min], 1},
89     {&PartMappings[PMI_SPR - PMI_Min], 1},
90     {&PartMappings[PMI_SPR - PMI_Min], 1},
91     // 3 ops in DPRs
92     {&PartMappings[PMI_DPR - PMI_Min], 1},
93     {&PartMappings[PMI_DPR - PMI_Min], 1},
94     {&PartMappings[PMI_DPR - PMI_Min], 1}};
95
96 #ifndef NDEBUG
97 static bool checkValueMapping(const RegisterBankInfo::ValueMapping &VM,
98                               RegisterBankInfo::PartialMapping *BreakDown) {
99   return VM.NumBreakDowns == 1 && VM.BreakDown == BreakDown;
100 }
101
102 static void checkValueMappings() {
103   assert(checkValueMapping(ValueMappings[GPR3OpsIdx],
104                            &PartMappings[PMI_GPR - PMI_Min]) &&
105          "Wrong value mapping for 3 GPR ops instruction");
106   assert(checkValueMapping(ValueMappings[GPR3OpsIdx + 1],
107                            &PartMappings[PMI_GPR - PMI_Min]) &&
108          "Wrong value mapping for 3 GPR ops instruction");
109   assert(checkValueMapping(ValueMappings[GPR3OpsIdx + 2],
110                            &PartMappings[PMI_GPR - PMI_Min]) &&
111          "Wrong value mapping for 3 GPR ops instruction");
112
113   assert(checkValueMapping(ValueMappings[SPR3OpsIdx],
114                            &PartMappings[PMI_SPR - PMI_Min]) &&
115          "Wrong value mapping for 3 SPR ops instruction");
116   assert(checkValueMapping(ValueMappings[SPR3OpsIdx + 1],
117                            &PartMappings[PMI_SPR - PMI_Min]) &&
118          "Wrong value mapping for 3 SPR ops instruction");
119   assert(checkValueMapping(ValueMappings[SPR3OpsIdx + 2],
120                            &PartMappings[PMI_SPR - PMI_Min]) &&
121          "Wrong value mapping for 3 SPR ops instruction");
122
123   assert(checkValueMapping(ValueMappings[DPR3OpsIdx],
124                            &PartMappings[PMI_DPR - PMI_Min]) &&
125          "Wrong value mapping for 3 DPR ops instruction");
126   assert(checkValueMapping(ValueMappings[DPR3OpsIdx + 1],
127                            &PartMappings[PMI_DPR - PMI_Min]) &&
128          "Wrong value mapping for 3 DPR ops instruction");
129   assert(checkValueMapping(ValueMappings[DPR3OpsIdx + 2],
130                            &PartMappings[PMI_DPR - PMI_Min]) &&
131          "Wrong value mapping for 3 DPR ops instruction");
132 }
133 #endif
134 } // end namespace arm
135 } // end namespace llvm
136
137 ARMRegisterBankInfo::ARMRegisterBankInfo(const TargetRegisterInfo &TRI)
138     : ARMGenRegisterBankInfo() {
139   static bool AlreadyInit = false;
140   // We have only one set of register banks, whatever the subtarget
141   // is. Therefore, the initialization of the RegBanks table should be
142   // done only once. Indeed the table of all register banks
143   // (ARM::RegBanks) is unique in the compiler. At some point, it
144   // will get tablegen'ed and the whole constructor becomes empty.
145   if (AlreadyInit)
146     return;
147   AlreadyInit = true;
148
149   const RegisterBank &RBGPR = getRegBank(ARM::GPRRegBankID);
150   (void)RBGPR;
151   assert(&ARM::GPRRegBank == &RBGPR && "The order in RegBanks is messed up");
152
153   // Initialize the GPR bank.
154   assert(RBGPR.covers(*TRI.getRegClass(ARM::GPRRegClassID)) &&
155          "Subclass not added?");
156   assert(RBGPR.covers(*TRI.getRegClass(ARM::GPRwithAPSRRegClassID)) &&
157          "Subclass not added?");
158   assert(RBGPR.covers(*TRI.getRegClass(ARM::GPRnopcRegClassID)) &&
159          "Subclass not added?");
160   assert(RBGPR.covers(*TRI.getRegClass(ARM::rGPRRegClassID)) &&
161          "Subclass not added?");
162   assert(RBGPR.covers(*TRI.getRegClass(ARM::tGPRRegClassID)) &&
163          "Subclass not added?");
164   assert(RBGPR.covers(*TRI.getRegClass(ARM::tcGPRRegClassID)) &&
165          "Subclass not added?");
166   assert(RBGPR.covers(*TRI.getRegClass(ARM::tGPR_and_tcGPRRegClassID)) &&
167          "Subclass not added?");
168   assert(RBGPR.getSize() == 32 && "GPRs should hold up to 32-bit");
169
170 #ifndef NDEBUG
171   ARM::checkPartialMappings();
172   ARM::checkValueMappings();
173 #endif
174 }
175
176 const RegisterBank &ARMRegisterBankInfo::getRegBankFromRegClass(
177     const TargetRegisterClass &RC) const {
178   using namespace ARM;
179
180   switch (RC.getID()) {
181   case GPRRegClassID:
182   case GPRnopcRegClassID:
183   case GPRspRegClassID:
184   case tGPR_and_tcGPRRegClassID:
185   case tGPRRegClassID:
186     return getRegBank(ARM::GPRRegBankID);
187   case SPR_8RegClassID:
188   case SPRRegClassID:
189   case DPR_8RegClassID:
190   case DPRRegClassID:
191     return getRegBank(ARM::FPRRegBankID);
192   default:
193     llvm_unreachable("Unsupported register kind");
194   }
195
196   llvm_unreachable("Switch should handle all register classes");
197 }
198
199 const RegisterBankInfo::InstructionMapping &
200 ARMRegisterBankInfo::getInstrMapping(const MachineInstr &MI) const {
201   auto Opc = MI.getOpcode();
202
203   // Try the default logic for non-generic instructions that are either copies
204   // or already have some operands assigned to banks.
205   if (!isPreISelGenericOpcode(Opc)) {
206     const InstructionMapping &Mapping = getInstrMappingImpl(MI);
207     if (Mapping.isValid())
208       return Mapping;
209   }
210
211   using namespace TargetOpcode;
212
213   const MachineFunction &MF = *MI.getParent()->getParent();
214   const MachineRegisterInfo &MRI = MF.getRegInfo();
215   unsigned NumOperands = MI.getNumOperands();
216   const ValueMapping *OperandsMapping = &ARM::ValueMappings[ARM::GPR3OpsIdx];
217
218   switch (Opc) {
219   case G_ADD:
220   case G_SUB:
221   case G_MUL:
222   case G_AND:
223   case G_OR:
224   case G_XOR:
225   case G_SDIV:
226   case G_UDIV:
227   case G_SEXT:
228   case G_ZEXT:
229   case G_ANYEXT:
230   case G_TRUNC:
231   case G_GEP:
232     // FIXME: We're abusing the fact that everything lives in a GPR for now; in
233     // the real world we would use different mappings.
234     OperandsMapping = &ARM::ValueMappings[ARM::GPR3OpsIdx];
235     break;
236   case G_LOAD:
237   case G_STORE: {
238     LLT Ty = MRI.getType(MI.getOperand(0).getReg());
239     OperandsMapping =
240         Ty.getSizeInBits() == 64
241             ? getOperandsMapping({&ARM::ValueMappings[ARM::DPR3OpsIdx],
242                                   &ARM::ValueMappings[ARM::GPR3OpsIdx]})
243             : &ARM::ValueMappings[ARM::GPR3OpsIdx];
244     break;
245   }
246   case G_FADD: {
247     LLT Ty = MRI.getType(MI.getOperand(0).getReg());
248     assert((Ty.getSizeInBits() == 32 || Ty.getSizeInBits() == 64) &&
249            "Unsupported size for G_FADD");
250     OperandsMapping = Ty.getSizeInBits() == 64
251                           ? &ARM::ValueMappings[ARM::DPR3OpsIdx]
252                           : &ARM::ValueMappings[ARM::SPR3OpsIdx];
253     break;
254   }
255   case G_CONSTANT:
256   case G_FRAME_INDEX:
257     OperandsMapping =
258         getOperandsMapping({&ARM::ValueMappings[ARM::GPR3OpsIdx], nullptr});
259     break;
260   case G_SELECT: {
261     LLT Ty = MRI.getType(MI.getOperand(0).getReg());
262     LLT Ty2 = MRI.getType(MI.getOperand(1).getReg());
263     (void)Ty2;
264     assert(Ty.getSizeInBits() == 32 && "Unsupported size for G_SELECT");
265     assert(Ty2.getSizeInBits() == 1 && "Unsupported size for G_SELECT");
266     OperandsMapping =
267         getOperandsMapping({&ARM::ValueMappings[ARM::GPR3OpsIdx],
268                             &ARM::ValueMappings[ARM::GPR3OpsIdx],
269                             &ARM::ValueMappings[ARM::GPR3OpsIdx],
270                             &ARM::ValueMappings[ARM::GPR3OpsIdx]});
271     break;
272   }
273   case G_ICMP: {
274     LLT Ty2 = MRI.getType(MI.getOperand(2).getReg());
275     (void)Ty2;
276     assert(Ty2.getSizeInBits() == 32 && "Unsupported size for G_ICMP");
277     OperandsMapping =
278         getOperandsMapping({&ARM::ValueMappings[ARM::GPR3OpsIdx], nullptr,
279                             &ARM::ValueMappings[ARM::GPR3OpsIdx],
280                             &ARM::ValueMappings[ARM::GPR3OpsIdx]});
281     break;
282   }
283   case G_FCMP: {
284     LLT Ty = MRI.getType(MI.getOperand(0).getReg());
285     LLT Ty1 = MRI.getType(MI.getOperand(2).getReg());
286     LLT Ty2 = MRI.getType(MI.getOperand(3).getReg());
287     (void)Ty2;
288     assert(Ty.getSizeInBits() == 1 && "Unsupported size for G_FCMP");
289     assert(Ty1.getSizeInBits() == Ty2.getSizeInBits() &&
290            "Mismatched operand sizes for G_FCMP");
291
292     unsigned Size = Ty1.getSizeInBits();
293     assert((Size == 32 || Size == 64) && "Unsupported size for G_FCMP");
294
295     auto FPRValueMapping = Size == 32 ? &ARM::ValueMappings[ARM::SPR3OpsIdx]
296                                       : &ARM::ValueMappings[ARM::DPR3OpsIdx];
297     OperandsMapping =
298         getOperandsMapping({&ARM::ValueMappings[ARM::GPR3OpsIdx], nullptr,
299                             FPRValueMapping, FPRValueMapping});
300     break;
301   }
302   case G_MERGE_VALUES: {
303     // We only support G_MERGE_VALUES for creating a double precision floating
304     // point value out of two GPRs.
305     LLT Ty = MRI.getType(MI.getOperand(0).getReg());
306     LLT Ty1 = MRI.getType(MI.getOperand(1).getReg());
307     LLT Ty2 = MRI.getType(MI.getOperand(2).getReg());
308     if (Ty.getSizeInBits() != 64 || Ty1.getSizeInBits() != 32 ||
309         Ty2.getSizeInBits() != 32)
310       return getInvalidInstructionMapping();
311     OperandsMapping =
312         getOperandsMapping({&ARM::ValueMappings[ARM::DPR3OpsIdx],
313                             &ARM::ValueMappings[ARM::GPR3OpsIdx],
314                             &ARM::ValueMappings[ARM::GPR3OpsIdx]});
315     break;
316   }
317   case G_UNMERGE_VALUES: {
318     // We only support G_UNMERGE_VALUES for splitting a double precision
319     // floating point value into two GPRs.
320     LLT Ty = MRI.getType(MI.getOperand(0).getReg());
321     LLT Ty1 = MRI.getType(MI.getOperand(1).getReg());
322     LLT Ty2 = MRI.getType(MI.getOperand(2).getReg());
323     if (Ty.getSizeInBits() != 32 || Ty1.getSizeInBits() != 32 ||
324         Ty2.getSizeInBits() != 64)
325       return getInvalidInstructionMapping();
326     OperandsMapping =
327         getOperandsMapping({&ARM::ValueMappings[ARM::GPR3OpsIdx],
328                             &ARM::ValueMappings[ARM::GPR3OpsIdx],
329                             &ARM::ValueMappings[ARM::DPR3OpsIdx]});
330     break;
331   }
332   default:
333     return getInvalidInstructionMapping();
334   }
335
336 #ifndef NDEBUG
337   for (unsigned i = 0; i < NumOperands; i++) {
338     for (const auto &Mapping : OperandsMapping[i]) {
339       assert(
340           (Mapping.RegBank->getID() != ARM::FPRRegBankID ||
341            MF.getSubtarget<ARMSubtarget>().hasVFP2()) &&
342           "Trying to use floating point register bank on target without vfp");
343     }
344   }
345 #endif
346
347   return getInstructionMapping(DefaultMappingID, /*Cost=*/1, OperandsMapping,
348                                NumOperands);
349 }