blob: 2ae3bad4076b0bc726219385c86c7df4b0984a4d [file] [log] [blame]
Diana Picus22274932016-11-11 08:27:37 +00001//===- ARMInstructionSelector.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 InstructionSelector class for ARM.
11/// \todo This should be generated by TableGen.
12//===----------------------------------------------------------------------===//
13
Diana Picus22274932016-11-11 08:27:37 +000014#include "ARMRegisterBankInfo.h"
15#include "ARMSubtarget.h"
16#include "ARMTargetMachine.h"
Diana Picus674888d2017-04-28 09:10:38 +000017#include "llvm/CodeGen/GlobalISel/InstructionSelector.h"
Diana Picus812caee2016-12-16 12:54:46 +000018#include "llvm/CodeGen/MachineRegisterInfo.h"
Diana Picus22274932016-11-11 08:27:37 +000019#include "llvm/Support/Debug.h"
20
21#define DEBUG_TYPE "arm-isel"
22
23using namespace llvm;
24
25#ifndef LLVM_BUILD_GLOBAL_ISEL
26#error "You shouldn't build this"
27#endif
28
Diana Picus674888d2017-04-28 09:10:38 +000029namespace {
Diana Picus8abcbbb2017-05-02 09:40:49 +000030
31#define GET_GLOBALISEL_PREDICATE_BITSET
32#include "ARMGenGlobalISel.inc"
33#undef GET_GLOBALISEL_PREDICATE_BITSET
34
Diana Picus674888d2017-04-28 09:10:38 +000035class ARMInstructionSelector : public InstructionSelector {
36public:
Diana Picus8abcbbb2017-05-02 09:40:49 +000037 ARMInstructionSelector(const ARMBaseTargetMachine &TM, const ARMSubtarget &STI,
Diana Picus674888d2017-04-28 09:10:38 +000038 const ARMRegisterBankInfo &RBI);
39
40 bool select(MachineInstr &I) const override;
41
42private:
Diana Picus8abcbbb2017-05-02 09:40:49 +000043 bool selectImpl(MachineInstr &I) const;
44
Diana Picus674888d2017-04-28 09:10:38 +000045 const ARMBaseInstrInfo &TII;
46 const ARMBaseRegisterInfo &TRI;
Diana Picus8abcbbb2017-05-02 09:40:49 +000047 const ARMBaseTargetMachine &TM;
Diana Picus674888d2017-04-28 09:10:38 +000048 const ARMRegisterBankInfo &RBI;
Diana Picus8abcbbb2017-05-02 09:40:49 +000049 const ARMSubtarget &STI;
50
51#define GET_GLOBALISEL_PREDICATES_DECL
52#include "ARMGenGlobalISel.inc"
53#undef GET_GLOBALISEL_PREDICATES_DECL
54
55// We declare the temporaries used by selectImpl() in the class to minimize the
56// cost of constructing placeholder values.
57#define GET_GLOBALISEL_TEMPORARIES_DECL
58#include "ARMGenGlobalISel.inc"
59#undef GET_GLOBALISEL_TEMPORARIES_DECL
Diana Picus674888d2017-04-28 09:10:38 +000060};
61} // end anonymous namespace
62
63namespace llvm {
64InstructionSelector *
Diana Picus8abcbbb2017-05-02 09:40:49 +000065createARMInstructionSelector(const ARMBaseTargetMachine &TM,
66 const ARMSubtarget &STI,
Diana Picus674888d2017-04-28 09:10:38 +000067 const ARMRegisterBankInfo &RBI) {
Diana Picus8abcbbb2017-05-02 09:40:49 +000068 return new ARMInstructionSelector(TM, STI, RBI);
Diana Picus674888d2017-04-28 09:10:38 +000069}
70}
71
Diana Picus8abcbbb2017-05-02 09:40:49 +000072unsigned zero_reg = 0;
73
74#define GET_GLOBALISEL_IMPL
75#include "ARMGenGlobalISel.inc"
76#undef GET_GLOBALISEL_IMPL
77
78ARMInstructionSelector::ARMInstructionSelector(const ARMBaseTargetMachine &TM,
79 const ARMSubtarget &STI,
Diana Picus22274932016-11-11 08:27:37 +000080 const ARMRegisterBankInfo &RBI)
Diana Picus895c6aa2016-11-15 16:42:10 +000081 : InstructionSelector(), TII(*STI.getInstrInfo()),
Diana Picus8abcbbb2017-05-02 09:40:49 +000082 TRI(*STI.getRegisterInfo()), TM(TM), RBI(RBI), STI(STI),
83#define GET_GLOBALISEL_PREDICATES_INIT
84#include "ARMGenGlobalISel.inc"
85#undef GET_GLOBALISEL_PREDICATES_INIT
86#define GET_GLOBALISEL_TEMPORARIES_INIT
87#include "ARMGenGlobalISel.inc"
88#undef GET_GLOBALISEL_TEMPORARIES_INIT
89{
90}
Diana Picus22274932016-11-11 08:27:37 +000091
Diana Picus812caee2016-12-16 12:54:46 +000092static bool selectCopy(MachineInstr &I, const TargetInstrInfo &TII,
93 MachineRegisterInfo &MRI, const TargetRegisterInfo &TRI,
94 const RegisterBankInfo &RBI) {
95 unsigned DstReg = I.getOperand(0).getReg();
96 if (TargetRegisterInfo::isPhysicalRegister(DstReg))
97 return true;
98
99 const RegisterBank *RegBank = RBI.getRegBank(DstReg, MRI, TRI);
Benjamin Kramer24bf8682016-12-16 13:13:03 +0000100 (void)RegBank;
Diana Picus812caee2016-12-16 12:54:46 +0000101 assert(RegBank && "Can't get reg bank for virtual register");
102
Diana Picus36aa09f2016-12-19 14:07:50 +0000103 const unsigned DstSize = MRI.getType(DstReg).getSizeInBits();
Diana Picus4fa83c02017-02-08 13:23:04 +0000104 assert((RegBank->getID() == ARM::GPRRegBankID ||
105 RegBank->getID() == ARM::FPRRegBankID) &&
106 "Unsupported reg bank");
107
Diana Picus812caee2016-12-16 12:54:46 +0000108 const TargetRegisterClass *RC = &ARM::GPRRegClass;
109
Diana Picus4fa83c02017-02-08 13:23:04 +0000110 if (RegBank->getID() == ARM::FPRRegBankID) {
Diana Picus6beef3c2017-02-16 12:19:52 +0000111 if (DstSize == 32)
112 RC = &ARM::SPRRegClass;
113 else if (DstSize == 64)
114 RC = &ARM::DPRRegClass;
115 else
116 llvm_unreachable("Unsupported destination size");
Diana Picus4fa83c02017-02-08 13:23:04 +0000117 }
118
Diana Picus812caee2016-12-16 12:54:46 +0000119 // No need to constrain SrcReg. It will get constrained when
120 // we hit another of its uses or its defs.
121 // Copies do not have constraints.
122 if (!RBI.constrainGenericRegister(DstReg, *RC, MRI)) {
123 DEBUG(dbgs() << "Failed to constrain " << TII.getName(I.getOpcode())
124 << " operand\n");
125 return false;
126 }
127 return true;
128}
129
Diana Picus0b4190a2017-06-07 12:35:05 +0000130static bool selectMergeValues(MachineInstrBuilder &MIB,
131 const ARMBaseInstrInfo &TII,
132 MachineRegisterInfo &MRI,
133 const TargetRegisterInfo &TRI,
134 const RegisterBankInfo &RBI) {
135 assert(TII.getSubtarget().hasVFP2() && "Can't select merge without VFP");
Diana Picusb1701e02017-02-16 12:19:57 +0000136
Diana Picus0b4190a2017-06-07 12:35:05 +0000137 // We only support G_MERGE_VALUES as a way to stick together two scalar GPRs
Diana Picusb1701e02017-02-16 12:19:57 +0000138 // into one DPR.
139 unsigned VReg0 = MIB->getOperand(0).getReg();
140 (void)VReg0;
141 assert(MRI.getType(VReg0).getSizeInBits() == 64 &&
142 RBI.getRegBank(VReg0, MRI, TRI)->getID() == ARM::FPRRegBankID &&
Diana Picus0b4190a2017-06-07 12:35:05 +0000143 "Unsupported operand for G_MERGE_VALUES");
Diana Picusb1701e02017-02-16 12:19:57 +0000144 unsigned VReg1 = MIB->getOperand(1).getReg();
145 (void)VReg1;
146 assert(MRI.getType(VReg1).getSizeInBits() == 32 &&
147 RBI.getRegBank(VReg1, MRI, TRI)->getID() == ARM::GPRRegBankID &&
Diana Picus0b4190a2017-06-07 12:35:05 +0000148 "Unsupported operand for G_MERGE_VALUES");
149 unsigned VReg2 = MIB->getOperand(2).getReg();
Diana Picusb1701e02017-02-16 12:19:57 +0000150 (void)VReg2;
151 assert(MRI.getType(VReg2).getSizeInBits() == 32 &&
152 RBI.getRegBank(VReg2, MRI, TRI)->getID() == ARM::GPRRegBankID &&
Diana Picus0b4190a2017-06-07 12:35:05 +0000153 "Unsupported operand for G_MERGE_VALUES");
Diana Picusb1701e02017-02-16 12:19:57 +0000154
155 MIB->setDesc(TII.get(ARM::VMOVDRR));
156 MIB.add(predOps(ARMCC::AL));
157
158 return true;
159}
160
Diana Picus0b4190a2017-06-07 12:35:05 +0000161static bool selectUnmergeValues(MachineInstrBuilder &MIB,
162 const ARMBaseInstrInfo &TII,
163 MachineRegisterInfo &MRI,
164 const TargetRegisterInfo &TRI,
165 const RegisterBankInfo &RBI) {
166 assert(TII.getSubtarget().hasVFP2() && "Can't select unmerge without VFP");
Diana Picusb1701e02017-02-16 12:19:57 +0000167
Diana Picus0b4190a2017-06-07 12:35:05 +0000168 // We only support G_UNMERGE_VALUES as a way to break up one DPR into two
169 // GPRs.
Diana Picusb1701e02017-02-16 12:19:57 +0000170 unsigned VReg0 = MIB->getOperand(0).getReg();
171 (void)VReg0;
172 assert(MRI.getType(VReg0).getSizeInBits() == 32 &&
173 RBI.getRegBank(VReg0, MRI, TRI)->getID() == ARM::GPRRegBankID &&
Diana Picus0b4190a2017-06-07 12:35:05 +0000174 "Unsupported operand for G_UNMERGE_VALUES");
Diana Picusb1701e02017-02-16 12:19:57 +0000175 unsigned VReg1 = MIB->getOperand(1).getReg();
176 (void)VReg1;
Diana Picus0b4190a2017-06-07 12:35:05 +0000177 assert(MRI.getType(VReg1).getSizeInBits() == 32 &&
178 RBI.getRegBank(VReg1, MRI, TRI)->getID() == ARM::GPRRegBankID &&
179 "Unsupported operand for G_UNMERGE_VALUES");
180 unsigned VReg2 = MIB->getOperand(2).getReg();
181 (void)VReg2;
182 assert(MRI.getType(VReg2).getSizeInBits() == 64 &&
183 RBI.getRegBank(VReg2, MRI, TRI)->getID() == ARM::FPRRegBankID &&
184 "Unsupported operand for G_UNMERGE_VALUES");
Diana Picusb1701e02017-02-16 12:19:57 +0000185
Diana Picus0b4190a2017-06-07 12:35:05 +0000186 MIB->setDesc(TII.get(ARM::VMOVRRD));
Diana Picusb1701e02017-02-16 12:19:57 +0000187 MIB.add(predOps(ARMCC::AL));
188
189 return true;
190}
191
Diana Picus8b6c6be2017-01-25 08:10:40 +0000192/// Select the opcode for simple extensions (that translate to a single SXT/UXT
193/// instruction). Extension operations more complicated than that should not
Diana Picuse8368782017-02-17 13:44:19 +0000194/// invoke this. Returns the original opcode if it doesn't know how to select a
195/// better one.
Diana Picus8b6c6be2017-01-25 08:10:40 +0000196static unsigned selectSimpleExtOpc(unsigned Opc, unsigned Size) {
197 using namespace TargetOpcode;
198
Diana Picuse8368782017-02-17 13:44:19 +0000199 if (Size != 8 && Size != 16)
200 return Opc;
Diana Picus8b6c6be2017-01-25 08:10:40 +0000201
202 if (Opc == G_SEXT)
203 return Size == 8 ? ARM::SXTB : ARM::SXTH;
204
205 if (Opc == G_ZEXT)
206 return Size == 8 ? ARM::UXTB : ARM::UXTH;
207
Diana Picuse8368782017-02-17 13:44:19 +0000208 return Opc;
Diana Picus8b6c6be2017-01-25 08:10:40 +0000209}
210
Diana Picus3b99c642017-02-24 14:01:27 +0000211/// Select the opcode for simple loads and stores. For types smaller than 32
212/// bits, the value will be zero extended. Returns the original opcode if it
213/// doesn't know how to select a better one.
214static unsigned selectLoadStoreOpCode(unsigned Opc, unsigned RegBank,
215 unsigned Size) {
216 bool isStore = Opc == TargetOpcode::G_STORE;
217
Diana Picus1540b062017-02-16 14:10:50 +0000218 if (RegBank == ARM::GPRRegBankID) {
219 switch (Size) {
220 case 1:
221 case 8:
Diana Picus3b99c642017-02-24 14:01:27 +0000222 return isStore ? ARM::STRBi12 : ARM::LDRBi12;
Diana Picus1540b062017-02-16 14:10:50 +0000223 case 16:
Diana Picus3b99c642017-02-24 14:01:27 +0000224 return isStore ? ARM::STRH : ARM::LDRH;
Diana Picus1540b062017-02-16 14:10:50 +0000225 case 32:
Diana Picus3b99c642017-02-24 14:01:27 +0000226 return isStore ? ARM::STRi12 : ARM::LDRi12;
Diana Picuse8368782017-02-17 13:44:19 +0000227 default:
Diana Picus3b99c642017-02-24 14:01:27 +0000228 return Opc;
Diana Picus1540b062017-02-16 14:10:50 +0000229 }
Diana Picus1540b062017-02-16 14:10:50 +0000230 }
231
Diana Picuse8368782017-02-17 13:44:19 +0000232 if (RegBank == ARM::FPRRegBankID) {
233 switch (Size) {
234 case 32:
Diana Picus3b99c642017-02-24 14:01:27 +0000235 return isStore ? ARM::VSTRS : ARM::VLDRS;
Diana Picuse8368782017-02-17 13:44:19 +0000236 case 64:
Diana Picus3b99c642017-02-24 14:01:27 +0000237 return isStore ? ARM::VSTRD : ARM::VLDRD;
Diana Picuse8368782017-02-17 13:44:19 +0000238 default:
Diana Picus3b99c642017-02-24 14:01:27 +0000239 return Opc;
Diana Picuse8368782017-02-17 13:44:19 +0000240 }
Diana Picus278c7222017-01-26 09:20:47 +0000241 }
242
Diana Picus3b99c642017-02-24 14:01:27 +0000243 return Opc;
Diana Picus278c7222017-01-26 09:20:47 +0000244}
245
Diana Picus812caee2016-12-16 12:54:46 +0000246bool ARMInstructionSelector::select(MachineInstr &I) const {
247 assert(I.getParent() && "Instruction should be in a basic block!");
248 assert(I.getParent()->getParent() && "Instruction should be in a function!");
249
250 auto &MBB = *I.getParent();
251 auto &MF = *MBB.getParent();
252 auto &MRI = MF.getRegInfo();
253
254 if (!isPreISelGenericOpcode(I.getOpcode())) {
255 if (I.isCopy())
256 return selectCopy(I, TII, MRI, TRI, RBI);
257
258 return true;
259 }
260
Diana Picus8abcbbb2017-05-02 09:40:49 +0000261 if (selectImpl(I))
262 return true;
263
Diana Picus519807f2016-12-19 11:26:31 +0000264 MachineInstrBuilder MIB{MF, I};
Diana Picusd83df5d2017-01-25 08:47:40 +0000265 bool isSExt = false;
Diana Picus519807f2016-12-19 11:26:31 +0000266
267 using namespace TargetOpcode;
268 switch (I.getOpcode()) {
Diana Picus8b6c6be2017-01-25 08:10:40 +0000269 case G_SEXT:
Diana Picusd83df5d2017-01-25 08:47:40 +0000270 isSExt = true;
271 LLVM_FALLTHROUGH;
Diana Picus8b6c6be2017-01-25 08:10:40 +0000272 case G_ZEXT: {
273 LLT DstTy = MRI.getType(I.getOperand(0).getReg());
274 // FIXME: Smaller destination sizes coming soon!
275 if (DstTy.getSizeInBits() != 32) {
276 DEBUG(dbgs() << "Unsupported destination size for extension");
277 return false;
278 }
279
280 LLT SrcTy = MRI.getType(I.getOperand(1).getReg());
281 unsigned SrcSize = SrcTy.getSizeInBits();
282 switch (SrcSize) {
Diana Picusd83df5d2017-01-25 08:47:40 +0000283 case 1: {
284 // ZExt boils down to & 0x1; for SExt we also subtract that from 0
285 I.setDesc(TII.get(ARM::ANDri));
286 MIB.addImm(1).add(predOps(ARMCC::AL)).add(condCodeOp());
287
288 if (isSExt) {
289 unsigned SExtResult = I.getOperand(0).getReg();
290
291 // Use a new virtual register for the result of the AND
292 unsigned AndResult = MRI.createVirtualRegister(&ARM::GPRRegClass);
293 I.getOperand(0).setReg(AndResult);
294
295 auto InsertBefore = std::next(I.getIterator());
Martin Bohme8396e142017-01-25 14:28:19 +0000296 auto SubI =
Diana Picusd83df5d2017-01-25 08:47:40 +0000297 BuildMI(MBB, InsertBefore, I.getDebugLoc(), TII.get(ARM::RSBri))
298 .addDef(SExtResult)
299 .addUse(AndResult)
300 .addImm(0)
301 .add(predOps(ARMCC::AL))
302 .add(condCodeOp());
303 if (!constrainSelectedInstRegOperands(*SubI, TII, TRI, RBI))
304 return false;
305 }
306 break;
307 }
Diana Picus8b6c6be2017-01-25 08:10:40 +0000308 case 8:
309 case 16: {
310 unsigned NewOpc = selectSimpleExtOpc(I.getOpcode(), SrcSize);
Diana Picuse8368782017-02-17 13:44:19 +0000311 if (NewOpc == I.getOpcode())
312 return false;
Diana Picus8b6c6be2017-01-25 08:10:40 +0000313 I.setDesc(TII.get(NewOpc));
314 MIB.addImm(0).add(predOps(ARMCC::AL));
315 break;
316 }
317 default:
318 DEBUG(dbgs() << "Unsupported source size for extension");
319 return false;
320 }
321 break;
322 }
Diana Picus657bfd32017-05-11 08:28:31 +0000323 case G_ANYEXT:
Diana Picus64a33432017-04-21 13:16:50 +0000324 case G_TRUNC: {
325 // The high bits are undefined, so there's nothing special to do, just
326 // treat it as a copy.
327 auto SrcReg = I.getOperand(1).getReg();
328 auto DstReg = I.getOperand(0).getReg();
329
330 const auto &SrcRegBank = *RBI.getRegBank(SrcReg, MRI, TRI);
331 const auto &DstRegBank = *RBI.getRegBank(DstReg, MRI, TRI);
332
333 if (SrcRegBank.getID() != DstRegBank.getID()) {
Diana Picus657bfd32017-05-11 08:28:31 +0000334 DEBUG(dbgs() << "G_TRUNC/G_ANYEXT operands on different register banks\n");
Diana Picus64a33432017-04-21 13:16:50 +0000335 return false;
336 }
337
338 if (SrcRegBank.getID() != ARM::GPRRegBankID) {
Diana Picus657bfd32017-05-11 08:28:31 +0000339 DEBUG(dbgs() << "G_TRUNC/G_ANYEXT on non-GPR not supported yet\n");
Diana Picus64a33432017-04-21 13:16:50 +0000340 return false;
341 }
342
343 I.setDesc(TII.get(COPY));
344 return selectCopy(I, TII, MRI, TRI, RBI);
345 }
Diana Picus9d070942017-02-28 10:14:38 +0000346 case G_GEP:
Diana Picus812caee2016-12-16 12:54:46 +0000347 I.setDesc(TII.get(ARM::ADDrr));
Diana Picus8a73f552017-01-13 10:18:01 +0000348 MIB.add(predOps(ARMCC::AL)).add(condCodeOp());
Diana Picus519807f2016-12-19 11:26:31 +0000349 break;
350 case G_FRAME_INDEX:
351 // Add 0 to the given frame index and hope it will eventually be folded into
352 // the user(s).
353 I.setDesc(TII.get(ARM::ADDri));
Diana Picus8a73f552017-01-13 10:18:01 +0000354 MIB.addImm(0).add(predOps(ARMCC::AL)).add(condCodeOp());
Diana Picus519807f2016-12-19 11:26:31 +0000355 break;
Diana Picus5a7203a2017-02-28 13:05:42 +0000356 case G_CONSTANT: {
357 unsigned Reg = I.getOperand(0).getReg();
358 if (MRI.getType(Reg).getSizeInBits() != 32)
359 return false;
360
361 assert(RBI.getRegBank(Reg, MRI, TRI)->getID() == ARM::GPRRegBankID &&
362 "Expected constant to live in a GPR");
363 I.setDesc(TII.get(ARM::MOVi));
364 MIB.add(predOps(ARMCC::AL)).add(condCodeOp());
Diana Picus95a8aa92017-04-24 06:30:56 +0000365
366 auto &Val = I.getOperand(1);
367 if (Val.isCImm()) {
368 if (Val.getCImm()->getBitWidth() > 32)
369 return false;
370 Val.ChangeToImmediate(Val.getCImm()->getZExtValue());
371 }
372
373 if (!Val.isImm()) {
374 return false;
375 }
376
Diana Picus5a7203a2017-02-28 13:05:42 +0000377 break;
378 }
Diana Picus3b99c642017-02-24 14:01:27 +0000379 case G_STORE:
Diana Picus278c7222017-01-26 09:20:47 +0000380 case G_LOAD: {
Diana Picus1c33c9f2017-02-20 14:45:58 +0000381 const auto &MemOp = **I.memoperands_begin();
382 if (MemOp.getOrdering() != AtomicOrdering::NotAtomic) {
383 DEBUG(dbgs() << "Atomic load/store not supported yet\n");
384 return false;
385 }
386
Diana Picus1540b062017-02-16 14:10:50 +0000387 unsigned Reg = I.getOperand(0).getReg();
388 unsigned RegBank = RBI.getRegBank(Reg, MRI, TRI)->getID();
389
390 LLT ValTy = MRI.getType(Reg);
Diana Picus278c7222017-01-26 09:20:47 +0000391 const auto ValSize = ValTy.getSizeInBits();
392
Diana Picus1540b062017-02-16 14:10:50 +0000393 assert((ValSize != 64 || TII.getSubtarget().hasVFP2()) &&
Diana Picus3b99c642017-02-24 14:01:27 +0000394 "Don't know how to load/store 64-bit value without VFP");
Diana Picus1540b062017-02-16 14:10:50 +0000395
Diana Picus3b99c642017-02-24 14:01:27 +0000396 const auto NewOpc = selectLoadStoreOpCode(I.getOpcode(), RegBank, ValSize);
397 if (NewOpc == G_LOAD || NewOpc == G_STORE)
Diana Picuse8368782017-02-17 13:44:19 +0000398 return false;
399
Diana Picus278c7222017-01-26 09:20:47 +0000400 I.setDesc(TII.get(NewOpc));
401
Diana Picus3b99c642017-02-24 14:01:27 +0000402 if (NewOpc == ARM::LDRH || NewOpc == ARM::STRH)
Diana Picus278c7222017-01-26 09:20:47 +0000403 // LDRH has a funny addressing mode (there's already a FIXME for it).
404 MIB.addReg(0);
Diana Picus4f8c3e12017-01-13 09:37:56 +0000405 MIB.addImm(0).add(predOps(ARMCC::AL));
Diana Picus519807f2016-12-19 11:26:31 +0000406 break;
Diana Picus278c7222017-01-26 09:20:47 +0000407 }
Diana Picus0b4190a2017-06-07 12:35:05 +0000408 case G_MERGE_VALUES: {
409 if (!selectMergeValues(MIB, TII, MRI, TRI, RBI))
Diana Picusb1701e02017-02-16 12:19:57 +0000410 return false;
411 break;
412 }
Diana Picus0b4190a2017-06-07 12:35:05 +0000413 case G_UNMERGE_VALUES: {
414 if (!selectUnmergeValues(MIB, TII, MRI, TRI, RBI))
Diana Picusb1701e02017-02-16 12:19:57 +0000415 return false;
416 break;
417 }
Diana Picus519807f2016-12-19 11:26:31 +0000418 default:
419 return false;
Diana Picus812caee2016-12-16 12:54:46 +0000420 }
421
Diana Picus519807f2016-12-19 11:26:31 +0000422 return constrainSelectedInstRegOperands(I, TII, TRI, RBI);
Diana Picus22274932016-11-11 08:27:37 +0000423}