| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1 | //===- NVPTXInstrInfo.cpp - NVPTX Instruction Information -----------------===// |
| 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 |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file contains the NVPTX implementation of the TargetInstrInfo class. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 13 | #include "NVPTXInstrInfo.h" |
| Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 14 | #include "NVPTX.h" |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 15 | #include "NVPTXTargetMachine.h" |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/STLExtras.h" |
| 17 | #include "llvm/CodeGen/MachineFunction.h" |
| 18 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 19 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 20 | #include "llvm/IR/Function.h" |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 21 | |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 22 | using namespace llvm; |
| 23 | |
| Chandler Carruth | d174b72 | 2014-04-22 02:03:14 +0000 | [diff] [blame] | 24 | #define GET_INSTRINFO_CTOR_DTOR |
| 25 | #include "NVPTXGenInstrInfo.inc" |
| 26 | |
| Juergen Ributzka | d12ccbd | 2013-11-19 00:57:56 +0000 | [diff] [blame] | 27 | // Pin the vtable to this file. |
| 28 | void NVPTXInstrInfo::anchor() {} |
| 29 | |
| Eric Christopher | 02389e3 | 2015-02-19 00:08:27 +0000 | [diff] [blame] | 30 | NVPTXInstrInfo::NVPTXInstrInfo() : NVPTXGenInstrInfo(), RegInfo() {} |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 31 | |
| Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 32 | void NVPTXInstrInfo::copyPhysReg(MachineBasicBlock &MBB, |
| 33 | MachineBasicBlock::iterator I, |
| Matt Arsenault | e6c9a9a | 2019-11-11 13:54:21 +0530 | [diff] [blame] | 34 | const DebugLoc &DL, MCRegister DestReg, |
| 35 | MCRegister SrcReg, bool KillSrc) const { |
| Justin Holewinski | dbb3b2f | 2013-05-31 12:14:49 +0000 | [diff] [blame] | 36 | const MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); |
| 37 | const TargetRegisterClass *DestRC = MRI.getRegClass(DestReg); |
| 38 | const TargetRegisterClass *SrcRC = MRI.getRegClass(SrcReg); |
| 39 | |
| Krzysztof Parzyszek | 44e25f3 | 2017-04-24 18:55:33 +0000 | [diff] [blame] | 40 | if (RegInfo.getRegSizeInBits(*DestRC) != RegInfo.getRegSizeInBits(*SrcRC)) |
| Jingyue Wu | ffa09be | 2015-08-01 18:02:12 +0000 | [diff] [blame] | 41 | report_fatal_error("Copy one register into another with a different width"); |
| Justin Holewinski | dbb3b2f | 2013-05-31 12:14:49 +0000 | [diff] [blame] | 42 | |
| Jingyue Wu | ffa09be | 2015-08-01 18:02:12 +0000 | [diff] [blame] | 43 | unsigned Op; |
| 44 | if (DestRC == &NVPTX::Int1RegsRegClass) { |
| 45 | Op = NVPTX::IMOV1rr; |
| 46 | } else if (DestRC == &NVPTX::Int16RegsRegClass) { |
| 47 | Op = NVPTX::IMOV16rr; |
| 48 | } else if (DestRC == &NVPTX::Int32RegsRegClass) { |
| 49 | Op = (SrcRC == &NVPTX::Int32RegsRegClass ? NVPTX::IMOV32rr |
| 50 | : NVPTX::BITCONVERT_32_F2I); |
| 51 | } else if (DestRC == &NVPTX::Int64RegsRegClass) { |
| 52 | Op = (SrcRC == &NVPTX::Int64RegsRegClass ? NVPTX::IMOV64rr |
| 53 | : NVPTX::BITCONVERT_64_F2I); |
| Artem Belevich | 64dc9be | 2017-01-13 20:56:17 +0000 | [diff] [blame] | 54 | } else if (DestRC == &NVPTX::Float16RegsRegClass) { |
| 55 | Op = (SrcRC == &NVPTX::Float16RegsRegClass ? NVPTX::FMOV16rr |
| 56 | : NVPTX::BITCONVERT_16_I2F); |
| Artem Belevich | 620db1f | 2017-02-23 22:38:24 +0000 | [diff] [blame] | 57 | } else if (DestRC == &NVPTX::Float16x2RegsRegClass) { |
| 58 | Op = NVPTX::IMOV32rr; |
| Jingyue Wu | ffa09be | 2015-08-01 18:02:12 +0000 | [diff] [blame] | 59 | } else if (DestRC == &NVPTX::Float32RegsRegClass) { |
| 60 | Op = (SrcRC == &NVPTX::Float32RegsRegClass ? NVPTX::FMOV32rr |
| 61 | : NVPTX::BITCONVERT_32_I2F); |
| 62 | } else if (DestRC == &NVPTX::Float64RegsRegClass) { |
| 63 | Op = (SrcRC == &NVPTX::Float64RegsRegClass ? NVPTX::FMOV64rr |
| 64 | : NVPTX::BITCONVERT_64_I2F); |
| 65 | } else { |
| Justin Holewinski | dbb3b2f | 2013-05-31 12:14:49 +0000 | [diff] [blame] | 66 | llvm_unreachable("Bad register copy"); |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 67 | } |
| Jingyue Wu | ffa09be | 2015-08-01 18:02:12 +0000 | [diff] [blame] | 68 | BuildMI(MBB, I, DL, get(Op), DestReg) |
| 69 | .addReg(SrcReg, getKillRegState(KillSrc)); |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 70 | } |
| 71 | |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 72 | /// AnalyzeBranch - Analyze the branching code at the end of MBB, returning |
| 73 | /// true if it cannot be understood (e.g. it's a switch dispatch or isn't |
| 74 | /// implemented for a target). Upon success, this returns false and returns |
| 75 | /// with the following information in various cases: |
| 76 | /// |
| 77 | /// 1. If this block ends with no branches (it just falls through to its succ) |
| 78 | /// just return false, leaving TBB/FBB null. |
| 79 | /// 2. If this block ends with only an unconditional branch, it sets TBB to be |
| 80 | /// the destination block. |
| 81 | /// 3. If this block ends with an conditional branch and it falls through to |
| 82 | /// an successor block, it sets TBB to be the branch destination block and a |
| 83 | /// list of operands that evaluate the condition. These |
| 84 | /// operands can be passed to other TargetInstrInfo methods to create new |
| 85 | /// branches. |
| 86 | /// 4. If this block ends with an conditional branch and an unconditional |
| 87 | /// block, it returns the 'true' destination in TBB, the 'false' destination |
| 88 | /// in FBB, and a list of operands that evaluate the condition. These |
| 89 | /// operands can be passed to other TargetInstrInfo methods to create new |
| 90 | /// branches. |
| 91 | /// |
| Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 92 | /// Note that removeBranch and insertBranch must be implemented to support |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 93 | /// cases where this method returns success. |
| 94 | /// |
| Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 95 | bool NVPTXInstrInfo::analyzeBranch(MachineBasicBlock &MBB, |
| 96 | MachineBasicBlock *&TBB, |
| 97 | MachineBasicBlock *&FBB, |
| 98 | SmallVectorImpl<MachineOperand> &Cond, |
| 99 | bool AllowModify) const { |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 100 | // If the block has no terminators, it just falls into the block after it. |
| 101 | MachineBasicBlock::iterator I = MBB.end(); |
| Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 102 | if (I == MBB.begin() || !isUnpredicatedTerminator(*--I)) |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 103 | return false; |
| 104 | |
| 105 | // Get the last instruction in the block. |
| Duncan P. N. Exon Smith | 68f499a | 2016-07-08 21:10:58 +0000 | [diff] [blame] | 106 | MachineInstr &LastInst = *I; |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 107 | |
| 108 | // If there is only one terminator instruction, process it. |
| Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 109 | if (I == MBB.begin() || !isUnpredicatedTerminator(*--I)) { |
| Duncan P. N. Exon Smith | 68f499a | 2016-07-08 21:10:58 +0000 | [diff] [blame] | 110 | if (LastInst.getOpcode() == NVPTX::GOTO) { |
| 111 | TBB = LastInst.getOperand(0).getMBB(); |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 112 | return false; |
| Duncan P. N. Exon Smith | 68f499a | 2016-07-08 21:10:58 +0000 | [diff] [blame] | 113 | } else if (LastInst.getOpcode() == NVPTX::CBranch) { |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 114 | // Block ends with fall-through condbranch. |
| Duncan P. N. Exon Smith | 68f499a | 2016-07-08 21:10:58 +0000 | [diff] [blame] | 115 | TBB = LastInst.getOperand(1).getMBB(); |
| 116 | Cond.push_back(LastInst.getOperand(0)); |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 117 | return false; |
| 118 | } |
| 119 | // Otherwise, don't know what this is. |
| 120 | return true; |
| 121 | } |
| 122 | |
| 123 | // Get the instruction before it if it's a terminator. |
| Duncan P. N. Exon Smith | 68f499a | 2016-07-08 21:10:58 +0000 | [diff] [blame] | 124 | MachineInstr &SecondLastInst = *I; |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 125 | |
| 126 | // If there are three terminators, we don't know what sort of block this is. |
| Duncan P. N. Exon Smith | 68f499a | 2016-07-08 21:10:58 +0000 | [diff] [blame] | 127 | if (I != MBB.begin() && isUnpredicatedTerminator(*--I)) |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 128 | return true; |
| 129 | |
| 130 | // If the block ends with NVPTX::GOTO and NVPTX:CBranch, handle it. |
| Duncan P. N. Exon Smith | 68f499a | 2016-07-08 21:10:58 +0000 | [diff] [blame] | 131 | if (SecondLastInst.getOpcode() == NVPTX::CBranch && |
| 132 | LastInst.getOpcode() == NVPTX::GOTO) { |
| 133 | TBB = SecondLastInst.getOperand(1).getMBB(); |
| 134 | Cond.push_back(SecondLastInst.getOperand(0)); |
| 135 | FBB = LastInst.getOperand(0).getMBB(); |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 136 | return false; |
| 137 | } |
| 138 | |
| 139 | // If the block ends with two NVPTX:GOTOs, handle it. The second one is not |
| 140 | // executed, so remove it. |
| Duncan P. N. Exon Smith | 68f499a | 2016-07-08 21:10:58 +0000 | [diff] [blame] | 141 | if (SecondLastInst.getOpcode() == NVPTX::GOTO && |
| 142 | LastInst.getOpcode() == NVPTX::GOTO) { |
| 143 | TBB = SecondLastInst.getOperand(0).getMBB(); |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 144 | I = LastInst; |
| 145 | if (AllowModify) |
| 146 | I->eraseFromParent(); |
| 147 | return false; |
| 148 | } |
| 149 | |
| 150 | // Otherwise, can't handle this. |
| 151 | return true; |
| 152 | } |
| 153 | |
| Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 154 | unsigned NVPTXInstrInfo::removeBranch(MachineBasicBlock &MBB, |
| Matt Arsenault | a2b036e | 2016-09-14 17:23:48 +0000 | [diff] [blame] | 155 | int *BytesRemoved) const { |
| 156 | assert(!BytesRemoved && "code size not handled"); |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 157 | MachineBasicBlock::iterator I = MBB.end(); |
| Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 158 | if (I == MBB.begin()) |
| 159 | return 0; |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 160 | --I; |
| 161 | if (I->getOpcode() != NVPTX::GOTO && I->getOpcode() != NVPTX::CBranch) |
| 162 | return 0; |
| 163 | |
| 164 | // Remove the branch. |
| 165 | I->eraseFromParent(); |
| 166 | |
| 167 | I = MBB.end(); |
| 168 | |
| Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 169 | if (I == MBB.begin()) |
| 170 | return 1; |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 171 | --I; |
| 172 | if (I->getOpcode() != NVPTX::CBranch) |
| 173 | return 1; |
| 174 | |
| 175 | // Remove the branch. |
| 176 | I->eraseFromParent(); |
| 177 | return 2; |
| 178 | } |
| 179 | |
| Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 180 | unsigned NVPTXInstrInfo::insertBranch(MachineBasicBlock &MBB, |
| Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 181 | MachineBasicBlock *TBB, |
| 182 | MachineBasicBlock *FBB, |
| 183 | ArrayRef<MachineOperand> Cond, |
| Matt Arsenault | a2b036e | 2016-09-14 17:23:48 +0000 | [diff] [blame] | 184 | const DebugLoc &DL, |
| 185 | int *BytesAdded) const { |
| 186 | assert(!BytesAdded && "code size not handled"); |
| 187 | |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 188 | // Shouldn't be a fall through. |
| Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 189 | assert(TBB && "insertBranch must not be told to insert a fallthrough"); |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 190 | assert((Cond.size() == 1 || Cond.size() == 0) && |
| 191 | "NVPTX branch conditions have two components!"); |
| 192 | |
| 193 | // One-way branch. |
| Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 194 | if (!FBB) { |
| Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 195 | if (Cond.empty()) // Unconditional branch |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 196 | BuildMI(&MBB, DL, get(NVPTX::GOTO)).addMBB(TBB); |
| Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 197 | else // Conditional branch |
| 198 | BuildMI(&MBB, DL, get(NVPTX::CBranch)).addReg(Cond[0].getReg()) |
| 199 | .addMBB(TBB); |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 200 | return 1; |
| 201 | } |
| 202 | |
| 203 | // Two-way Conditional Branch. |
| Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 204 | BuildMI(&MBB, DL, get(NVPTX::CBranch)).addReg(Cond[0].getReg()).addMBB(TBB); |
| Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 205 | BuildMI(&MBB, DL, get(NVPTX::GOTO)).addMBB(FBB); |
| 206 | return 2; |
| 207 | } |