Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 1 | //===- AArch64InstructionSelector.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 |
| 11 | /// AArch64. |
| 12 | /// \todo This should be generated by TableGen. |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "AArch64InstructionSelector.h" |
| 16 | #include "AArch64InstrInfo.h" |
| 17 | #include "AArch64RegisterBankInfo.h" |
| 18 | #include "AArch64RegisterInfo.h" |
| 19 | #include "AArch64Subtarget.h" |
Tim Northover | bdf1624 | 2016-10-10 21:50:00 +0000 | [diff] [blame] | 20 | #include "AArch64TargetMachine.h" |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineBasicBlock.h" |
| 22 | #include "llvm/CodeGen/MachineFunction.h" |
| 23 | #include "llvm/CodeGen/MachineInstr.h" |
| 24 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 25 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 26 | #include "llvm/IR/Type.h" |
| 27 | #include "llvm/Support/Debug.h" |
| 28 | #include "llvm/Support/raw_ostream.h" |
| 29 | |
| 30 | #define DEBUG_TYPE "aarch64-isel" |
| 31 | |
| 32 | using namespace llvm; |
| 33 | |
| 34 | #ifndef LLVM_BUILD_GLOBAL_ISEL |
| 35 | #error "You shouldn't build this" |
| 36 | #endif |
| 37 | |
| 38 | AArch64InstructionSelector::AArch64InstructionSelector( |
Tim Northover | bdf1624 | 2016-10-10 21:50:00 +0000 | [diff] [blame] | 39 | const AArch64TargetMachine &TM, const AArch64Subtarget &STI, |
| 40 | const AArch64RegisterBankInfo &RBI) |
| 41 | : InstructionSelector(), TM(TM), STI(STI), TII(*STI.getInstrInfo()), |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 42 | TRI(*STI.getRegisterInfo()), RBI(RBI) {} |
| 43 | |
Ahmed Bougacha | 59e160a | 2016-08-16 14:37:40 +0000 | [diff] [blame] | 44 | /// Check whether \p I is a currently unsupported binary operation: |
| 45 | /// - it has an unsized type |
| 46 | /// - an operand is not a vreg |
| 47 | /// - all operands are not in the same bank |
| 48 | /// These are checks that should someday live in the verifier, but right now, |
| 49 | /// these are mostly limitations of the aarch64 selector. |
| 50 | static bool unsupportedBinOp(const MachineInstr &I, |
| 51 | const AArch64RegisterBankInfo &RBI, |
| 52 | const MachineRegisterInfo &MRI, |
| 53 | const AArch64RegisterInfo &TRI) { |
Tim Northover | 0f140c7 | 2016-09-09 11:46:34 +0000 | [diff] [blame] | 54 | LLT Ty = MRI.getType(I.getOperand(0).getReg()); |
Tim Northover | 32a078a | 2016-09-15 10:09:59 +0000 | [diff] [blame] | 55 | if (!Ty.isValid()) { |
| 56 | DEBUG(dbgs() << "Generic binop register should be typed\n"); |
Ahmed Bougacha | 59e160a | 2016-08-16 14:37:40 +0000 | [diff] [blame] | 57 | return true; |
| 58 | } |
| 59 | |
| 60 | const RegisterBank *PrevOpBank = nullptr; |
| 61 | for (auto &MO : I.operands()) { |
| 62 | // FIXME: Support non-register operands. |
| 63 | if (!MO.isReg()) { |
| 64 | DEBUG(dbgs() << "Generic inst non-reg operands are unsupported\n"); |
| 65 | return true; |
| 66 | } |
| 67 | |
| 68 | // FIXME: Can generic operations have physical registers operands? If |
| 69 | // so, this will need to be taught about that, and we'll need to get the |
| 70 | // bank out of the minimal class for the register. |
| 71 | // Either way, this needs to be documented (and possibly verified). |
| 72 | if (!TargetRegisterInfo::isVirtualRegister(MO.getReg())) { |
| 73 | DEBUG(dbgs() << "Generic inst has physical register operand\n"); |
| 74 | return true; |
| 75 | } |
| 76 | |
| 77 | const RegisterBank *OpBank = RBI.getRegBank(MO.getReg(), MRI, TRI); |
| 78 | if (!OpBank) { |
| 79 | DEBUG(dbgs() << "Generic register has no bank or class\n"); |
| 80 | return true; |
| 81 | } |
| 82 | |
| 83 | if (PrevOpBank && OpBank != PrevOpBank) { |
| 84 | DEBUG(dbgs() << "Generic inst operands have different banks\n"); |
| 85 | return true; |
| 86 | } |
| 87 | PrevOpBank = OpBank; |
| 88 | } |
| 89 | return false; |
| 90 | } |
| 91 | |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 92 | /// Select the AArch64 opcode for the basic binary operation \p GenericOpc |
| 93 | /// (such as G_OR or G_ADD), appropriate for the register bank \p RegBankID |
| 94 | /// and of size \p OpSize. |
| 95 | /// \returns \p GenericOpc if the combination is unsupported. |
| 96 | static unsigned selectBinaryOp(unsigned GenericOpc, unsigned RegBankID, |
| 97 | unsigned OpSize) { |
| 98 | switch (RegBankID) { |
| 99 | case AArch64::GPRRegBankID: |
| 100 | switch (OpSize) { |
| 101 | case 32: |
| 102 | switch (GenericOpc) { |
| 103 | case TargetOpcode::G_OR: |
| 104 | return AArch64::ORRWrr; |
Ahmed Bougacha | 6db3cfe | 2016-07-29 16:56:25 +0000 | [diff] [blame] | 105 | case TargetOpcode::G_XOR: |
| 106 | return AArch64::EORWrr; |
Ahmed Bougacha | 61a7928 | 2016-07-28 16:58:31 +0000 | [diff] [blame] | 107 | case TargetOpcode::G_AND: |
| 108 | return AArch64::ANDWrr; |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 109 | case TargetOpcode::G_ADD: |
| 110 | return AArch64::ADDWrr; |
Ahmed Bougacha | d7748d6 | 2016-07-28 16:58:35 +0000 | [diff] [blame] | 111 | case TargetOpcode::G_SUB: |
| 112 | return AArch64::SUBWrr; |
Ahmed Bougacha | 2ac5bf9 | 2016-08-16 14:02:47 +0000 | [diff] [blame] | 113 | case TargetOpcode::G_SHL: |
| 114 | return AArch64::LSLVWr; |
| 115 | case TargetOpcode::G_LSHR: |
| 116 | return AArch64::LSRVWr; |
| 117 | case TargetOpcode::G_ASHR: |
| 118 | return AArch64::ASRVWr; |
Ahmed Bougacha | 1d0560b | 2016-08-18 15:17:13 +0000 | [diff] [blame] | 119 | case TargetOpcode::G_SDIV: |
| 120 | return AArch64::SDIVWr; |
| 121 | case TargetOpcode::G_UDIV: |
| 122 | return AArch64::UDIVWr; |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 123 | default: |
| 124 | return GenericOpc; |
| 125 | } |
| 126 | case 64: |
| 127 | switch (GenericOpc) { |
| 128 | case TargetOpcode::G_OR: |
| 129 | return AArch64::ORRXrr; |
Ahmed Bougacha | 6db3cfe | 2016-07-29 16:56:25 +0000 | [diff] [blame] | 130 | case TargetOpcode::G_XOR: |
| 131 | return AArch64::EORXrr; |
Ahmed Bougacha | 61a7928 | 2016-07-28 16:58:31 +0000 | [diff] [blame] | 132 | case TargetOpcode::G_AND: |
| 133 | return AArch64::ANDXrr; |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 134 | case TargetOpcode::G_ADD: |
Tim Northover | 2fda4b0 | 2016-10-10 21:49:49 +0000 | [diff] [blame] | 135 | case TargetOpcode::G_GEP: |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 136 | return AArch64::ADDXrr; |
Ahmed Bougacha | d7748d6 | 2016-07-28 16:58:35 +0000 | [diff] [blame] | 137 | case TargetOpcode::G_SUB: |
| 138 | return AArch64::SUBXrr; |
Ahmed Bougacha | 2ac5bf9 | 2016-08-16 14:02:47 +0000 | [diff] [blame] | 139 | case TargetOpcode::G_SHL: |
| 140 | return AArch64::LSLVXr; |
| 141 | case TargetOpcode::G_LSHR: |
| 142 | return AArch64::LSRVXr; |
| 143 | case TargetOpcode::G_ASHR: |
| 144 | return AArch64::ASRVXr; |
Ahmed Bougacha | 1d0560b | 2016-08-18 15:17:13 +0000 | [diff] [blame] | 145 | case TargetOpcode::G_SDIV: |
| 146 | return AArch64::SDIVXr; |
| 147 | case TargetOpcode::G_UDIV: |
| 148 | return AArch64::UDIVXr; |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 149 | default: |
| 150 | return GenericOpc; |
| 151 | } |
| 152 | } |
Ahmed Bougacha | 33e19fe | 2016-08-18 16:05:11 +0000 | [diff] [blame] | 153 | case AArch64::FPRRegBankID: |
| 154 | switch (OpSize) { |
| 155 | case 32: |
| 156 | switch (GenericOpc) { |
| 157 | case TargetOpcode::G_FADD: |
| 158 | return AArch64::FADDSrr; |
| 159 | case TargetOpcode::G_FSUB: |
| 160 | return AArch64::FSUBSrr; |
| 161 | case TargetOpcode::G_FMUL: |
| 162 | return AArch64::FMULSrr; |
| 163 | case TargetOpcode::G_FDIV: |
| 164 | return AArch64::FDIVSrr; |
| 165 | default: |
| 166 | return GenericOpc; |
| 167 | } |
| 168 | case 64: |
| 169 | switch (GenericOpc) { |
| 170 | case TargetOpcode::G_FADD: |
| 171 | return AArch64::FADDDrr; |
| 172 | case TargetOpcode::G_FSUB: |
| 173 | return AArch64::FSUBDrr; |
| 174 | case TargetOpcode::G_FMUL: |
| 175 | return AArch64::FMULDrr; |
| 176 | case TargetOpcode::G_FDIV: |
| 177 | return AArch64::FDIVDrr; |
Quentin Colombet | 0e53127 | 2016-10-11 00:21:11 +0000 | [diff] [blame^] | 178 | case TargetOpcode::G_OR: |
| 179 | return AArch64::ORRv8i8; |
Ahmed Bougacha | 33e19fe | 2016-08-18 16:05:11 +0000 | [diff] [blame] | 180 | default: |
| 181 | return GenericOpc; |
| 182 | } |
| 183 | } |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 184 | }; |
| 185 | return GenericOpc; |
| 186 | } |
| 187 | |
Ahmed Bougacha | 7adfac5 | 2016-07-29 16:56:16 +0000 | [diff] [blame] | 188 | /// Select the AArch64 opcode for the G_LOAD or G_STORE operation \p GenericOpc, |
| 189 | /// appropriate for the (value) register bank \p RegBankID and of memory access |
| 190 | /// size \p OpSize. This returns the variant with the base+unsigned-immediate |
| 191 | /// addressing mode (e.g., LDRXui). |
| 192 | /// \returns \p GenericOpc if the combination is unsupported. |
| 193 | static unsigned selectLoadStoreUIOp(unsigned GenericOpc, unsigned RegBankID, |
| 194 | unsigned OpSize) { |
| 195 | const bool isStore = GenericOpc == TargetOpcode::G_STORE; |
| 196 | switch (RegBankID) { |
| 197 | case AArch64::GPRRegBankID: |
| 198 | switch (OpSize) { |
| 199 | case 32: |
| 200 | return isStore ? AArch64::STRWui : AArch64::LDRWui; |
| 201 | case 64: |
| 202 | return isStore ? AArch64::STRXui : AArch64::LDRXui; |
| 203 | } |
| 204 | }; |
| 205 | return GenericOpc; |
| 206 | } |
| 207 | |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 208 | bool AArch64InstructionSelector::select(MachineInstr &I) const { |
| 209 | assert(I.getParent() && "Instruction should be in a basic block!"); |
| 210 | assert(I.getParent()->getParent() && "Instruction should be in a function!"); |
| 211 | |
| 212 | MachineBasicBlock &MBB = *I.getParent(); |
| 213 | MachineFunction &MF = *MBB.getParent(); |
| 214 | MachineRegisterInfo &MRI = MF.getRegInfo(); |
| 215 | |
| 216 | // FIXME: Is there *really* nothing to be done here? This assumes that |
| 217 | // no upstream pass introduces things like generic vreg on copies or |
| 218 | // target-specific instructions. |
| 219 | // We should document (and verify) that assumption. |
| 220 | if (!isPreISelGenericOpcode(I.getOpcode())) |
| 221 | return true; |
| 222 | |
| 223 | if (I.getNumOperands() != I.getNumExplicitOperands()) { |
| 224 | DEBUG(dbgs() << "Generic instruction has unexpected implicit operands\n"); |
| 225 | return false; |
| 226 | } |
| 227 | |
Tim Northover | 32a078a | 2016-09-15 10:09:59 +0000 | [diff] [blame] | 228 | LLT Ty = |
| 229 | I.getOperand(0).isReg() ? MRI.getType(I.getOperand(0).getReg()) : LLT{}; |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 230 | |
Ahmed Bougacha | 8550509 | 2016-07-28 17:15:15 +0000 | [diff] [blame] | 231 | switch (I.getOpcode()) { |
| 232 | case TargetOpcode::G_BR: { |
| 233 | I.setDesc(TII.get(AArch64::B)); |
Ahmed Bougacha | 8550509 | 2016-07-28 17:15:15 +0000 | [diff] [blame] | 234 | return true; |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 235 | } |
| 236 | |
Tim Northover | 4edc60d | 2016-10-10 21:49:42 +0000 | [diff] [blame] | 237 | case TargetOpcode::G_CONSTANT: { |
| 238 | if (Ty.getSizeInBits() <= 32) |
| 239 | I.setDesc(TII.get(AArch64::MOVi32imm)); |
| 240 | else if (Ty.getSizeInBits() <= 64) |
| 241 | I.setDesc(TII.get(AArch64::MOVi64imm)); |
| 242 | else |
| 243 | return false; |
| 244 | return constrainSelectedInstRegOperands(I, TII, TRI, RBI); |
| 245 | } |
| 246 | |
Ahmed Bougacha | 0306b5e | 2016-08-16 14:02:42 +0000 | [diff] [blame] | 247 | case TargetOpcode::G_FRAME_INDEX: { |
| 248 | // allocas and G_FRAME_INDEX are only supported in addrspace(0). |
Tim Northover | 5ae8350 | 2016-09-15 09:20:34 +0000 | [diff] [blame] | 249 | if (Ty != LLT::pointer(0, 64)) { |
Tim Northover | 0f140c7 | 2016-09-09 11:46:34 +0000 | [diff] [blame] | 250 | DEBUG(dbgs() << "G_FRAME_INDEX pointer has type: " << Ty |
Tim Northover | 5ae8350 | 2016-09-15 09:20:34 +0000 | [diff] [blame] | 251 | << ", expected: " << LLT::pointer(0, 64) << '\n'); |
Ahmed Bougacha | 0306b5e | 2016-08-16 14:02:42 +0000 | [diff] [blame] | 252 | return false; |
| 253 | } |
| 254 | |
| 255 | I.setDesc(TII.get(AArch64::ADDXri)); |
Ahmed Bougacha | 0306b5e | 2016-08-16 14:02:42 +0000 | [diff] [blame] | 256 | |
| 257 | // MOs for a #0 shifted immediate. |
| 258 | I.addOperand(MachineOperand::CreateImm(0)); |
| 259 | I.addOperand(MachineOperand::CreateImm(0)); |
| 260 | |
| 261 | return constrainSelectedInstRegOperands(I, TII, TRI, RBI); |
| 262 | } |
Tim Northover | bdf1624 | 2016-10-10 21:50:00 +0000 | [diff] [blame] | 263 | |
| 264 | case TargetOpcode::G_GLOBAL_VALUE: { |
| 265 | auto GV = I.getOperand(1).getGlobal(); |
| 266 | if (GV->isThreadLocal()) { |
| 267 | // FIXME: we don't support TLS yet. |
| 268 | return false; |
| 269 | } |
| 270 | unsigned char OpFlags = STI.ClassifyGlobalReference(GV, TM); |
| 271 | if (OpFlags & AArch64II::MO_GOT) |
| 272 | I.setDesc(TII.get(AArch64::LOADgot)); |
| 273 | else { |
| 274 | I.setDesc(TII.get(AArch64::MOVaddr)); |
| 275 | I.getOperand(1).setTargetFlags(OpFlags | AArch64II::MO_PAGE); |
| 276 | MachineInstrBuilder MIB(MF, I); |
| 277 | MIB.addGlobalAddress(GV, I.getOperand(1).getOffset(), |
| 278 | OpFlags | AArch64II::MO_PAGEOFF | AArch64II::MO_NC); |
| 279 | } |
| 280 | return constrainSelectedInstRegOperands(I, TII, TRI, RBI); |
| 281 | } |
| 282 | |
Ahmed Bougacha | 7adfac5 | 2016-07-29 16:56:16 +0000 | [diff] [blame] | 283 | case TargetOpcode::G_LOAD: |
| 284 | case TargetOpcode::G_STORE: { |
Tim Northover | 0f140c7 | 2016-09-09 11:46:34 +0000 | [diff] [blame] | 285 | LLT MemTy = Ty; |
| 286 | LLT PtrTy = MRI.getType(I.getOperand(1).getReg()); |
Ahmed Bougacha | 7adfac5 | 2016-07-29 16:56:16 +0000 | [diff] [blame] | 287 | |
Tim Northover | 5ae8350 | 2016-09-15 09:20:34 +0000 | [diff] [blame] | 288 | if (PtrTy != LLT::pointer(0, 64)) { |
Ahmed Bougacha | 7adfac5 | 2016-07-29 16:56:16 +0000 | [diff] [blame] | 289 | DEBUG(dbgs() << "Load/Store pointer has type: " << PtrTy |
Tim Northover | 5ae8350 | 2016-09-15 09:20:34 +0000 | [diff] [blame] | 290 | << ", expected: " << LLT::pointer(0, 64) << '\n'); |
Ahmed Bougacha | 7adfac5 | 2016-07-29 16:56:16 +0000 | [diff] [blame] | 291 | return false; |
| 292 | } |
| 293 | |
| 294 | #ifndef NDEBUG |
| 295 | // Sanity-check the pointer register. |
| 296 | const unsigned PtrReg = I.getOperand(1).getReg(); |
| 297 | const RegisterBank &PtrRB = *RBI.getRegBank(PtrReg, MRI, TRI); |
| 298 | assert(PtrRB.getID() == AArch64::GPRRegBankID && |
| 299 | "Load/Store pointer operand isn't a GPR"); |
Tim Northover | 0f140c7 | 2016-09-09 11:46:34 +0000 | [diff] [blame] | 300 | assert(MRI.getType(PtrReg).isPointer() && |
| 301 | "Load/Store pointer operand isn't a pointer"); |
Ahmed Bougacha | 7adfac5 | 2016-07-29 16:56:16 +0000 | [diff] [blame] | 302 | #endif |
| 303 | |
| 304 | const unsigned ValReg = I.getOperand(0).getReg(); |
| 305 | const RegisterBank &RB = *RBI.getRegBank(ValReg, MRI, TRI); |
| 306 | |
| 307 | const unsigned NewOpc = |
| 308 | selectLoadStoreUIOp(I.getOpcode(), RB.getID(), MemTy.getSizeInBits()); |
| 309 | if (NewOpc == I.getOpcode()) |
| 310 | return false; |
| 311 | |
| 312 | I.setDesc(TII.get(NewOpc)); |
Ahmed Bougacha | 7adfac5 | 2016-07-29 16:56:16 +0000 | [diff] [blame] | 313 | |
| 314 | I.addOperand(MachineOperand::CreateImm(0)); |
| 315 | return constrainSelectedInstRegOperands(I, TII, TRI, RBI); |
| 316 | } |
| 317 | |
Ahmed Bougacha | e4c03ab | 2016-08-16 14:37:46 +0000 | [diff] [blame] | 318 | case TargetOpcode::G_MUL: { |
| 319 | // Reject the various things we don't support yet. |
| 320 | if (unsupportedBinOp(I, RBI, MRI, TRI)) |
| 321 | return false; |
| 322 | |
| 323 | const unsigned DefReg = I.getOperand(0).getReg(); |
| 324 | const RegisterBank &RB = *RBI.getRegBank(DefReg, MRI, TRI); |
| 325 | |
| 326 | if (RB.getID() != AArch64::GPRRegBankID) { |
| 327 | DEBUG(dbgs() << "G_MUL on bank: " << RB << ", expected: GPR\n"); |
| 328 | return false; |
| 329 | } |
| 330 | |
| 331 | unsigned ZeroReg; |
| 332 | unsigned NewOpc; |
| 333 | if (Ty == LLT::scalar(32)) { |
| 334 | NewOpc = AArch64::MADDWrrr; |
| 335 | ZeroReg = AArch64::WZR; |
| 336 | } else if (Ty == LLT::scalar(64)) { |
| 337 | NewOpc = AArch64::MADDXrrr; |
| 338 | ZeroReg = AArch64::XZR; |
| 339 | } else { |
| 340 | DEBUG(dbgs() << "G_MUL has type: " << Ty << ", expected: " |
| 341 | << LLT::scalar(32) << " or " << LLT::scalar(64) << '\n'); |
| 342 | return false; |
| 343 | } |
| 344 | |
| 345 | I.setDesc(TII.get(NewOpc)); |
Ahmed Bougacha | e4c03ab | 2016-08-16 14:37:46 +0000 | [diff] [blame] | 346 | |
| 347 | I.addOperand(MachineOperand::CreateReg(ZeroReg, /*isDef=*/false)); |
| 348 | |
| 349 | // Now that we selected an opcode, we need to constrain the register |
| 350 | // operands to use appropriate classes. |
| 351 | return constrainSelectedInstRegOperands(I, TII, TRI, RBI); |
| 352 | } |
| 353 | |
Ahmed Bougacha | 33e19fe | 2016-08-18 16:05:11 +0000 | [diff] [blame] | 354 | case TargetOpcode::G_FADD: |
| 355 | case TargetOpcode::G_FSUB: |
| 356 | case TargetOpcode::G_FMUL: |
| 357 | case TargetOpcode::G_FDIV: |
| 358 | |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 359 | case TargetOpcode::G_OR: |
Ahmed Bougacha | 6db3cfe | 2016-07-29 16:56:25 +0000 | [diff] [blame] | 360 | case TargetOpcode::G_XOR: |
Ahmed Bougacha | 61a7928 | 2016-07-28 16:58:31 +0000 | [diff] [blame] | 361 | case TargetOpcode::G_AND: |
Ahmed Bougacha | 2ac5bf9 | 2016-08-16 14:02:47 +0000 | [diff] [blame] | 362 | case TargetOpcode::G_SHL: |
| 363 | case TargetOpcode::G_LSHR: |
| 364 | case TargetOpcode::G_ASHR: |
Ahmed Bougacha | 1d0560b | 2016-08-18 15:17:13 +0000 | [diff] [blame] | 365 | case TargetOpcode::G_SDIV: |
| 366 | case TargetOpcode::G_UDIV: |
Ahmed Bougacha | d7748d6 | 2016-07-28 16:58:35 +0000 | [diff] [blame] | 367 | case TargetOpcode::G_ADD: |
Tim Northover | 2fda4b0 | 2016-10-10 21:49:49 +0000 | [diff] [blame] | 368 | case TargetOpcode::G_SUB: |
| 369 | case TargetOpcode::G_GEP: { |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 370 | // Reject the various things we don't support yet. |
Ahmed Bougacha | 59e160a | 2016-08-16 14:37:40 +0000 | [diff] [blame] | 371 | if (unsupportedBinOp(I, RBI, MRI, TRI)) |
| 372 | return false; |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 373 | |
Ahmed Bougacha | 59e160a | 2016-08-16 14:37:40 +0000 | [diff] [blame] | 374 | const unsigned OpSize = Ty.getSizeInBits(); |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 375 | |
| 376 | const unsigned DefReg = I.getOperand(0).getReg(); |
| 377 | const RegisterBank &RB = *RBI.getRegBank(DefReg, MRI, TRI); |
| 378 | |
| 379 | const unsigned NewOpc = selectBinaryOp(I.getOpcode(), RB.getID(), OpSize); |
| 380 | if (NewOpc == I.getOpcode()) |
| 381 | return false; |
| 382 | |
| 383 | I.setDesc(TII.get(NewOpc)); |
| 384 | // FIXME: Should the type be always reset in setDesc? |
Ahmed Bougacha | 6756a2c | 2016-07-27 14:31:55 +0000 | [diff] [blame] | 385 | |
| 386 | // Now that we selected an opcode, we need to constrain the register |
| 387 | // operands to use appropriate classes. |
| 388 | return constrainSelectedInstRegOperands(I, TII, TRI, RBI); |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | return false; |
| 393 | } |