Alex Bradbury | 8971842 | 2017-10-19 21:37:38 +0000 | [diff] [blame] | 1 | //===-- RISCVInstrInfo.cpp - RISCV Instruction Information ------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Alex Bradbury | 8971842 | 2017-10-19 21:37:38 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file contains the RISCV implementation of the TargetInstrInfo class. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #include "RISCVInstrInfo.h" |
| 14 | #include "RISCV.h" |
| 15 | #include "RISCVSubtarget.h" |
| 16 | #include "RISCVTargetMachine.h" |
| 17 | #include "llvm/ADT/STLExtras.h" |
| 18 | #include "llvm/ADT/SmallVector.h" |
| 19 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 20 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 21 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/RegisterScavenging.h" |
Alex Bradbury | 8971842 | 2017-10-19 21:37:38 +0000 | [diff] [blame] | 23 | #include "llvm/Support/ErrorHandling.h" |
| 24 | #include "llvm/Support/TargetRegistry.h" |
| 25 | |
| 26 | #define GET_INSTRINFO_CTOR_DTOR |
| 27 | #include "RISCVGenInstrInfo.inc" |
| 28 | |
| 29 | using namespace llvm; |
| 30 | |
Alex Bradbury | a337675 | 2017-11-08 13:41:21 +0000 | [diff] [blame] | 31 | RISCVInstrInfo::RISCVInstrInfo() |
| 32 | : RISCVGenInstrInfo(RISCV::ADJCALLSTACKDOWN, RISCV::ADJCALLSTACKUP) {} |
Alex Bradbury | cfa6291 | 2017-11-08 12:20:01 +0000 | [diff] [blame] | 33 | |
Alex Bradbury | fda6037 | 2018-04-26 15:34:27 +0000 | [diff] [blame] | 34 | unsigned RISCVInstrInfo::isLoadFromStackSlot(const MachineInstr &MI, |
| 35 | int &FrameIndex) const { |
| 36 | switch (MI.getOpcode()) { |
| 37 | default: |
| 38 | return 0; |
| 39 | case RISCV::LB: |
| 40 | case RISCV::LBU: |
| 41 | case RISCV::LH: |
| 42 | case RISCV::LHU: |
| 43 | case RISCV::LW: |
| 44 | case RISCV::FLW: |
| 45 | case RISCV::LWU: |
| 46 | case RISCV::LD: |
| 47 | case RISCV::FLD: |
| 48 | break; |
| 49 | } |
| 50 | |
| 51 | if (MI.getOperand(1).isFI() && MI.getOperand(2).isImm() && |
| 52 | MI.getOperand(2).getImm() == 0) { |
| 53 | FrameIndex = MI.getOperand(1).getIndex(); |
| 54 | return MI.getOperand(0).getReg(); |
| 55 | } |
| 56 | |
| 57 | return 0; |
| 58 | } |
| 59 | |
| 60 | unsigned RISCVInstrInfo::isStoreToStackSlot(const MachineInstr &MI, |
| 61 | int &FrameIndex) const { |
| 62 | switch (MI.getOpcode()) { |
| 63 | default: |
| 64 | return 0; |
| 65 | case RISCV::SB: |
| 66 | case RISCV::SH: |
| 67 | case RISCV::SW: |
| 68 | case RISCV::FSW: |
| 69 | case RISCV::SD: |
| 70 | case RISCV::FSD: |
| 71 | break; |
| 72 | } |
| 73 | |
| 74 | if (MI.getOperand(0).isFI() && MI.getOperand(1).isImm() && |
| 75 | MI.getOperand(1).getImm() == 0) { |
| 76 | FrameIndex = MI.getOperand(0).getIndex(); |
| 77 | return MI.getOperand(2).getReg(); |
| 78 | } |
| 79 | |
| 80 | return 0; |
| 81 | } |
| 82 | |
Alex Bradbury | cfa6291 | 2017-11-08 12:20:01 +0000 | [diff] [blame] | 83 | void RISCVInstrInfo::copyPhysReg(MachineBasicBlock &MBB, |
| 84 | MachineBasicBlock::iterator MBBI, |
| 85 | const DebugLoc &DL, unsigned DstReg, |
| 86 | unsigned SrcReg, bool KillSrc) const { |
Alex Bradbury | 65d6ea5 | 2018-03-21 15:11:02 +0000 | [diff] [blame] | 87 | if (RISCV::GPRRegClass.contains(DstReg, SrcReg)) { |
| 88 | BuildMI(MBB, MBBI, DL, get(RISCV::ADDI), DstReg) |
| 89 | .addReg(SrcReg, getKillRegState(KillSrc)) |
| 90 | .addImm(0); |
| 91 | return; |
| 92 | } |
Alex Bradbury | cfa6291 | 2017-11-08 12:20:01 +0000 | [diff] [blame] | 93 | |
Alex Bradbury | 21d28fe | 2018-04-12 05:50:06 +0000 | [diff] [blame] | 94 | // FPR->FPR copies |
| 95 | unsigned Opc; |
| 96 | if (RISCV::FPR32RegClass.contains(DstReg, SrcReg)) |
| 97 | Opc = RISCV::FSGNJ_S; |
| 98 | else if (RISCV::FPR64RegClass.contains(DstReg, SrcReg)) |
| 99 | Opc = RISCV::FSGNJ_D; |
| 100 | else |
| 101 | llvm_unreachable("Impossible reg-to-reg copy"); |
Alex Bradbury | 65d6ea5 | 2018-03-21 15:11:02 +0000 | [diff] [blame] | 102 | |
Alex Bradbury | 21d28fe | 2018-04-12 05:50:06 +0000 | [diff] [blame] | 103 | BuildMI(MBB, MBBI, DL, get(Opc), DstReg) |
| 104 | .addReg(SrcReg, getKillRegState(KillSrc)) |
| 105 | .addReg(SrcReg, getKillRegState(KillSrc)); |
Alex Bradbury | cfa6291 | 2017-11-08 12:20:01 +0000 | [diff] [blame] | 106 | } |
Alex Bradbury | 74913e1 | 2017-11-08 13:31:40 +0000 | [diff] [blame] | 107 | |
| 108 | void RISCVInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB, |
| 109 | MachineBasicBlock::iterator I, |
| 110 | unsigned SrcReg, bool IsKill, int FI, |
| 111 | const TargetRegisterClass *RC, |
| 112 | const TargetRegisterInfo *TRI) const { |
| 113 | DebugLoc DL; |
| 114 | if (I != MBB.end()) |
| 115 | DL = I->getDebugLoc(); |
| 116 | |
Alex Bradbury | 65d6ea5 | 2018-03-21 15:11:02 +0000 | [diff] [blame] | 117 | unsigned Opcode; |
| 118 | |
Alex Bradbury | 87a54d6 | 2017-12-07 12:45:05 +0000 | [diff] [blame] | 119 | if (RISCV::GPRRegClass.hasSubClassEq(RC)) |
Ana Pazos | 2e4106b | 2018-07-26 17:49:43 +0000 | [diff] [blame] | 120 | Opcode = TRI->getRegSizeInBits(RISCV::GPRRegClass) == 32 ? |
| 121 | RISCV::SW : RISCV::SD; |
Alex Bradbury | 65d6ea5 | 2018-03-21 15:11:02 +0000 | [diff] [blame] | 122 | else if (RISCV::FPR32RegClass.hasSubClassEq(RC)) |
| 123 | Opcode = RISCV::FSW; |
Alex Bradbury | 0b4175f | 2018-04-12 05:34:25 +0000 | [diff] [blame] | 124 | else if (RISCV::FPR64RegClass.hasSubClassEq(RC)) |
| 125 | Opcode = RISCV::FSD; |
Alex Bradbury | 74913e1 | 2017-11-08 13:31:40 +0000 | [diff] [blame] | 126 | else |
| 127 | llvm_unreachable("Can't store this register to stack slot"); |
Alex Bradbury | 65d6ea5 | 2018-03-21 15:11:02 +0000 | [diff] [blame] | 128 | |
| 129 | BuildMI(MBB, I, DL, get(Opcode)) |
| 130 | .addReg(SrcReg, getKillRegState(IsKill)) |
| 131 | .addFrameIndex(FI) |
| 132 | .addImm(0); |
Alex Bradbury | 74913e1 | 2017-11-08 13:31:40 +0000 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | void RISCVInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 136 | MachineBasicBlock::iterator I, |
| 137 | unsigned DstReg, int FI, |
| 138 | const TargetRegisterClass *RC, |
| 139 | const TargetRegisterInfo *TRI) const { |
| 140 | DebugLoc DL; |
| 141 | if (I != MBB.end()) |
| 142 | DL = I->getDebugLoc(); |
| 143 | |
Alex Bradbury | 65d6ea5 | 2018-03-21 15:11:02 +0000 | [diff] [blame] | 144 | unsigned Opcode; |
| 145 | |
Alex Bradbury | 87a54d6 | 2017-12-07 12:45:05 +0000 | [diff] [blame] | 146 | if (RISCV::GPRRegClass.hasSubClassEq(RC)) |
Ana Pazos | 2e4106b | 2018-07-26 17:49:43 +0000 | [diff] [blame] | 147 | Opcode = TRI->getRegSizeInBits(RISCV::GPRRegClass) == 32 ? |
| 148 | RISCV::LW : RISCV::LD; |
Alex Bradbury | 65d6ea5 | 2018-03-21 15:11:02 +0000 | [diff] [blame] | 149 | else if (RISCV::FPR32RegClass.hasSubClassEq(RC)) |
| 150 | Opcode = RISCV::FLW; |
Alex Bradbury | 0b4175f | 2018-04-12 05:34:25 +0000 | [diff] [blame] | 151 | else if (RISCV::FPR64RegClass.hasSubClassEq(RC)) |
| 152 | Opcode = RISCV::FLD; |
Alex Bradbury | 74913e1 | 2017-11-08 13:31:40 +0000 | [diff] [blame] | 153 | else |
| 154 | llvm_unreachable("Can't load this register from stack slot"); |
Alex Bradbury | 65d6ea5 | 2018-03-21 15:11:02 +0000 | [diff] [blame] | 155 | |
| 156 | BuildMI(MBB, I, DL, get(Opcode), DstReg).addFrameIndex(FI).addImm(0); |
Alex Bradbury | 74913e1 | 2017-11-08 13:31:40 +0000 | [diff] [blame] | 157 | } |
Alex Bradbury | 9fea488 | 2018-01-10 19:53:46 +0000 | [diff] [blame] | 158 | |
| 159 | void RISCVInstrInfo::movImm32(MachineBasicBlock &MBB, |
| 160 | MachineBasicBlock::iterator MBBI, |
| 161 | const DebugLoc &DL, unsigned DstReg, uint64_t Val, |
| 162 | MachineInstr::MIFlag Flag) const { |
| 163 | assert(isInt<32>(Val) && "Can only materialize 32-bit constants"); |
| 164 | |
Alex Bradbury | 099c720 | 2018-04-18 19:02:31 +0000 | [diff] [blame] | 165 | // TODO: If the value can be materialized using only one instruction, only |
| 166 | // insert a single instruction. |
| 167 | |
| 168 | uint64_t Hi20 = ((Val + 0x800) >> 12) & 0xfffff; |
| 169 | uint64_t Lo12 = SignExtend64<12>(Val); |
| 170 | BuildMI(MBB, MBBI, DL, get(RISCV::LUI), DstReg) |
| 171 | .addImm(Hi20) |
| 172 | .setMIFlag(Flag); |
| 173 | BuildMI(MBB, MBBI, DL, get(RISCV::ADDI), DstReg) |
| 174 | .addReg(DstReg, RegState::Kill) |
| 175 | .addImm(Lo12) |
Alex Bradbury | 9fea488 | 2018-01-10 19:53:46 +0000 | [diff] [blame] | 176 | .setMIFlag(Flag); |
| 177 | } |
Alex Bradbury | e027c93 | 2018-01-10 20:47:00 +0000 | [diff] [blame] | 178 | |
| 179 | // The contents of values added to Cond are not examined outside of |
| 180 | // RISCVInstrInfo, giving us flexibility in what to push to it. For RISCV, we |
| 181 | // push BranchOpcode, Reg1, Reg2. |
| 182 | static void parseCondBranch(MachineInstr &LastInst, MachineBasicBlock *&Target, |
| 183 | SmallVectorImpl<MachineOperand> &Cond) { |
| 184 | // Block ends with fall-through condbranch. |
| 185 | assert(LastInst.getDesc().isConditionalBranch() && |
| 186 | "Unknown conditional branch"); |
| 187 | Target = LastInst.getOperand(2).getMBB(); |
| 188 | Cond.push_back(MachineOperand::CreateImm(LastInst.getOpcode())); |
| 189 | Cond.push_back(LastInst.getOperand(0)); |
| 190 | Cond.push_back(LastInst.getOperand(1)); |
| 191 | } |
| 192 | |
| 193 | static unsigned getOppositeBranchOpcode(int Opc) { |
| 194 | switch (Opc) { |
| 195 | default: |
| 196 | llvm_unreachable("Unrecognized conditional branch"); |
| 197 | case RISCV::BEQ: |
| 198 | return RISCV::BNE; |
| 199 | case RISCV::BNE: |
| 200 | return RISCV::BEQ; |
| 201 | case RISCV::BLT: |
| 202 | return RISCV::BGE; |
| 203 | case RISCV::BGE: |
| 204 | return RISCV::BLT; |
| 205 | case RISCV::BLTU: |
| 206 | return RISCV::BGEU; |
| 207 | case RISCV::BGEU: |
| 208 | return RISCV::BLTU; |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | bool RISCVInstrInfo::analyzeBranch(MachineBasicBlock &MBB, |
| 213 | MachineBasicBlock *&TBB, |
| 214 | MachineBasicBlock *&FBB, |
| 215 | SmallVectorImpl<MachineOperand> &Cond, |
| 216 | bool AllowModify) const { |
| 217 | TBB = FBB = nullptr; |
| 218 | Cond.clear(); |
| 219 | |
| 220 | // If the block has no terminators, it just falls into the block after it. |
| 221 | MachineBasicBlock::iterator I = MBB.getLastNonDebugInstr(); |
| 222 | if (I == MBB.end() || !isUnpredicatedTerminator(*I)) |
| 223 | return false; |
| 224 | |
| 225 | // Count the number of terminators and find the first unconditional or |
| 226 | // indirect branch. |
| 227 | MachineBasicBlock::iterator FirstUncondOrIndirectBr = MBB.end(); |
| 228 | int NumTerminators = 0; |
| 229 | for (auto J = I.getReverse(); J != MBB.rend() && isUnpredicatedTerminator(*J); |
| 230 | J++) { |
| 231 | NumTerminators++; |
| 232 | if (J->getDesc().isUnconditionalBranch() || |
| 233 | J->getDesc().isIndirectBranch()) { |
| 234 | FirstUncondOrIndirectBr = J.getReverse(); |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | // If AllowModify is true, we can erase any terminators after |
| 239 | // FirstUncondOrIndirectBR. |
| 240 | if (AllowModify && FirstUncondOrIndirectBr != MBB.end()) { |
| 241 | while (std::next(FirstUncondOrIndirectBr) != MBB.end()) { |
| 242 | std::next(FirstUncondOrIndirectBr)->eraseFromParent(); |
| 243 | NumTerminators--; |
| 244 | } |
| 245 | I = FirstUncondOrIndirectBr; |
| 246 | } |
| 247 | |
| 248 | // We can't handle blocks that end in an indirect branch. |
| 249 | if (I->getDesc().isIndirectBranch()) |
| 250 | return true; |
| 251 | |
| 252 | // We can't handle blocks with more than 2 terminators. |
| 253 | if (NumTerminators > 2) |
| 254 | return true; |
| 255 | |
| 256 | // Handle a single unconditional branch. |
| 257 | if (NumTerminators == 1 && I->getDesc().isUnconditionalBranch()) { |
| 258 | TBB = I->getOperand(0).getMBB(); |
| 259 | return false; |
| 260 | } |
| 261 | |
| 262 | // Handle a single conditional branch. |
| 263 | if (NumTerminators == 1 && I->getDesc().isConditionalBranch()) { |
| 264 | parseCondBranch(*I, TBB, Cond); |
| 265 | return false; |
| 266 | } |
| 267 | |
| 268 | // Handle a conditional branch followed by an unconditional branch. |
| 269 | if (NumTerminators == 2 && std::prev(I)->getDesc().isConditionalBranch() && |
| 270 | I->getDesc().isUnconditionalBranch()) { |
| 271 | parseCondBranch(*std::prev(I), TBB, Cond); |
| 272 | FBB = I->getOperand(0).getMBB(); |
| 273 | return false; |
| 274 | } |
| 275 | |
| 276 | // Otherwise, we can't handle this. |
| 277 | return true; |
| 278 | } |
| 279 | |
| 280 | unsigned RISCVInstrInfo::removeBranch(MachineBasicBlock &MBB, |
| 281 | int *BytesRemoved) const { |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 282 | if (BytesRemoved) |
| 283 | *BytesRemoved = 0; |
Alex Bradbury | e027c93 | 2018-01-10 20:47:00 +0000 | [diff] [blame] | 284 | MachineBasicBlock::iterator I = MBB.getLastNonDebugInstr(); |
| 285 | if (I == MBB.end()) |
| 286 | return 0; |
| 287 | |
| 288 | if (!I->getDesc().isUnconditionalBranch() && |
| 289 | !I->getDesc().isConditionalBranch()) |
| 290 | return 0; |
| 291 | |
| 292 | // Remove the branch. |
| 293 | I->eraseFromParent(); |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 294 | if (BytesRemoved) |
| 295 | *BytesRemoved += getInstSizeInBytes(*I); |
Alex Bradbury | e027c93 | 2018-01-10 20:47:00 +0000 | [diff] [blame] | 296 | |
| 297 | I = MBB.end(); |
| 298 | |
| 299 | if (I == MBB.begin()) |
| 300 | return 1; |
| 301 | --I; |
| 302 | if (!I->getDesc().isConditionalBranch()) |
| 303 | return 1; |
| 304 | |
| 305 | // Remove the branch. |
| 306 | I->eraseFromParent(); |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 307 | if (BytesRemoved) |
| 308 | *BytesRemoved += getInstSizeInBytes(*I); |
Alex Bradbury | e027c93 | 2018-01-10 20:47:00 +0000 | [diff] [blame] | 309 | return 2; |
| 310 | } |
| 311 | |
| 312 | // Inserts a branch into the end of the specific MachineBasicBlock, returning |
| 313 | // the number of instructions inserted. |
| 314 | unsigned RISCVInstrInfo::insertBranch( |
| 315 | MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, |
| 316 | ArrayRef<MachineOperand> Cond, const DebugLoc &DL, int *BytesAdded) const { |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 317 | if (BytesAdded) |
| 318 | *BytesAdded = 0; |
Alex Bradbury | e027c93 | 2018-01-10 20:47:00 +0000 | [diff] [blame] | 319 | |
| 320 | // Shouldn't be a fall through. |
| 321 | assert(TBB && "InsertBranch must not be told to insert a fallthrough"); |
| 322 | assert((Cond.size() == 3 || Cond.size() == 0) && |
| 323 | "RISCV branch conditions have two components!"); |
| 324 | |
| 325 | // Unconditional branch. |
| 326 | if (Cond.empty()) { |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 327 | MachineInstr &MI = *BuildMI(&MBB, DL, get(RISCV::PseudoBR)).addMBB(TBB); |
| 328 | if (BytesAdded) |
| 329 | *BytesAdded += getInstSizeInBytes(MI); |
Alex Bradbury | e027c93 | 2018-01-10 20:47:00 +0000 | [diff] [blame] | 330 | return 1; |
| 331 | } |
| 332 | |
| 333 | // Either a one or two-way conditional branch. |
| 334 | unsigned Opc = Cond[0].getImm(); |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 335 | MachineInstr &CondMI = |
| 336 | *BuildMI(&MBB, DL, get(Opc)).add(Cond[1]).add(Cond[2]).addMBB(TBB); |
| 337 | if (BytesAdded) |
| 338 | *BytesAdded += getInstSizeInBytes(CondMI); |
Alex Bradbury | e027c93 | 2018-01-10 20:47:00 +0000 | [diff] [blame] | 339 | |
| 340 | // One-way conditional branch. |
| 341 | if (!FBB) |
| 342 | return 1; |
| 343 | |
| 344 | // Two-way conditional branch. |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 345 | MachineInstr &MI = *BuildMI(&MBB, DL, get(RISCV::PseudoBR)).addMBB(FBB); |
| 346 | if (BytesAdded) |
| 347 | *BytesAdded += getInstSizeInBytes(MI); |
Alex Bradbury | e027c93 | 2018-01-10 20:47:00 +0000 | [diff] [blame] | 348 | return 2; |
| 349 | } |
| 350 | |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 351 | unsigned RISCVInstrInfo::insertIndirectBranch(MachineBasicBlock &MBB, |
| 352 | MachineBasicBlock &DestBB, |
| 353 | const DebugLoc &DL, |
| 354 | int64_t BrOffset, |
| 355 | RegScavenger *RS) const { |
| 356 | assert(RS && "RegScavenger required for long branching"); |
| 357 | assert(MBB.empty() && |
| 358 | "new block should be inserted for expanding unconditional branch"); |
| 359 | assert(MBB.pred_size() == 1); |
| 360 | |
| 361 | MachineFunction *MF = MBB.getParent(); |
| 362 | MachineRegisterInfo &MRI = MF->getRegInfo(); |
| 363 | const auto &TM = static_cast<const RISCVTargetMachine &>(MF->getTarget()); |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 364 | |
Alex Bradbury | 5bf3b20 | 2018-10-04 14:30:03 +0000 | [diff] [blame] | 365 | if (TM.isPositionIndependent()) |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 366 | report_fatal_error("Unable to insert indirect branch"); |
| 367 | |
| 368 | if (!isInt<32>(BrOffset)) |
| 369 | report_fatal_error( |
| 370 | "Branch offsets outside of the signed 32-bit range not supported"); |
| 371 | |
| 372 | // FIXME: A virtual register must be used initially, as the register |
| 373 | // scavenger won't work with empty blocks (SIInstrInfo::insertIndirectBranch |
| 374 | // uses the same workaround). |
| 375 | unsigned ScratchReg = MRI.createVirtualRegister(&RISCV::GPRRegClass); |
| 376 | auto II = MBB.end(); |
| 377 | |
| 378 | MachineInstr &LuiMI = *BuildMI(MBB, II, DL, get(RISCV::LUI), ScratchReg) |
| 379 | .addMBB(&DestBB, RISCVII::MO_HI); |
| 380 | BuildMI(MBB, II, DL, get(RISCV::PseudoBRIND)) |
| 381 | .addReg(ScratchReg, RegState::Kill) |
| 382 | .addMBB(&DestBB, RISCVII::MO_LO); |
| 383 | |
| 384 | RS->enterBasicBlockEnd(MBB); |
Alex Bradbury | 2c6c84e | 2019-03-11 20:43:29 +0000 | [diff] [blame] | 385 | unsigned Scav = RS->scavengeRegisterBackwards(RISCV::GPRRegClass, |
| 386 | LuiMI.getIterator(), false, 0); |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 387 | MRI.replaceRegWith(ScratchReg, Scav); |
| 388 | MRI.clearVirtRegs(); |
| 389 | RS->setRegUsed(Scav); |
| 390 | return 8; |
| 391 | } |
| 392 | |
Alex Bradbury | e027c93 | 2018-01-10 20:47:00 +0000 | [diff] [blame] | 393 | bool RISCVInstrInfo::reverseBranchCondition( |
| 394 | SmallVectorImpl<MachineOperand> &Cond) const { |
| 395 | assert((Cond.size() == 3) && "Invalid branch condition!"); |
| 396 | Cond[0].setImm(getOppositeBranchOpcode(Cond[0].getImm())); |
| 397 | return false; |
| 398 | } |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 399 | |
| 400 | MachineBasicBlock * |
| 401 | RISCVInstrInfo::getBranchDestBlock(const MachineInstr &MI) const { |
| 402 | assert(MI.getDesc().isBranch() && "Unexpected opcode!"); |
| 403 | // The branch target is always the last operand. |
| 404 | int NumOp = MI.getNumExplicitOperands(); |
| 405 | return MI.getOperand(NumOp - 1).getMBB(); |
| 406 | } |
| 407 | |
| 408 | bool RISCVInstrInfo::isBranchOffsetInRange(unsigned BranchOp, |
| 409 | int64_t BrOffset) const { |
| 410 | // Ideally we could determine the supported branch offset from the |
| 411 | // RISCVII::FormMask, but this can't be used for Pseudo instructions like |
| 412 | // PseudoBR. |
| 413 | switch (BranchOp) { |
| 414 | default: |
| 415 | llvm_unreachable("Unexpected opcode!"); |
| 416 | case RISCV::BEQ: |
| 417 | case RISCV::BNE: |
| 418 | case RISCV::BLT: |
| 419 | case RISCV::BGE: |
| 420 | case RISCV::BLTU: |
| 421 | case RISCV::BGEU: |
| 422 | return isIntN(13, BrOffset); |
| 423 | case RISCV::JAL: |
| 424 | case RISCV::PseudoBR: |
| 425 | return isIntN(21, BrOffset); |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | unsigned RISCVInstrInfo::getInstSizeInBytes(const MachineInstr &MI) const { |
| 430 | unsigned Opcode = MI.getOpcode(); |
| 431 | |
| 432 | switch (Opcode) { |
| 433 | default: { return get(Opcode).getSize(); } |
| 434 | case TargetOpcode::EH_LABEL: |
| 435 | case TargetOpcode::IMPLICIT_DEF: |
| 436 | case TargetOpcode::KILL: |
| 437 | case TargetOpcode::DBG_VALUE: |
| 438 | return 0; |
Shiva Chen | d58bd8d | 2018-04-25 14:19:12 +0000 | [diff] [blame] | 439 | case RISCV::PseudoCALL: |
Mandeep Singh Grang | ddcb956 | 2018-05-23 22:44:08 +0000 | [diff] [blame] | 440 | case RISCV::PseudoTAIL: |
Shiva Chen | d58bd8d | 2018-04-25 14:19:12 +0000 | [diff] [blame] | 441 | return 8; |
Craig Topper | 784929d | 2019-02-08 20:48:56 +0000 | [diff] [blame] | 442 | case TargetOpcode::INLINEASM: |
| 443 | case TargetOpcode::INLINEASM_BR: { |
Alex Bradbury | 315cd3a | 2018-01-10 21:05:07 +0000 | [diff] [blame] | 444 | const MachineFunction &MF = *MI.getParent()->getParent(); |
| 445 | const auto &TM = static_cast<const RISCVTargetMachine &>(MF.getTarget()); |
| 446 | return getInlineAsmLength(MI.getOperand(0).getSymbolName(), |
| 447 | *TM.getMCAsmInfo()); |
| 448 | } |
| 449 | } |
| 450 | } |
Ana Pazos | 05a6064 | 2019-01-25 20:22:49 +0000 | [diff] [blame] | 451 | |
| 452 | bool RISCVInstrInfo::isAsCheapAsAMove(const MachineInstr &MI) const { |
| 453 | const unsigned Opcode = MI.getOpcode(); |
| 454 | switch(Opcode) { |
| 455 | default: |
| 456 | break; |
| 457 | case RISCV::ADDI: |
| 458 | case RISCV::ORI: |
| 459 | case RISCV::XORI: |
| 460 | return (MI.getOperand(1).isReg() && MI.getOperand(1).getReg() == RISCV::X0); |
| 461 | } |
| 462 | return MI.isAsCheapAsAMove(); |
| 463 | } |