blob: 35ad433a97d719a5e9a25dbddfba46608309a7ba [file] [log] [blame]
Quentin Colombetb4e71182016-12-22 21:56:19 +00001//===- llvm/CodeGen/GlobalISel/Utils.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 This file implements the utility functions used by the GlobalISel
10/// pipeline.
11//===----------------------------------------------------------------------===//
12
13#include "llvm/CodeGen/GlobalISel/Utils.h"
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000014#include "llvm/ADT/Twine.h"
Quentin Colombetb4e71182016-12-22 21:56:19 +000015#include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h"
16#include "llvm/CodeGen/MachineInstr.h"
17#include "llvm/CodeGen/MachineInstrBuilder.h"
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000018#include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h"
Quentin Colombetb4e71182016-12-22 21:56:19 +000019#include "llvm/CodeGen/MachineRegisterInfo.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000020#include "llvm/CodeGen/TargetInstrInfo.h"
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000021#include "llvm/CodeGen/TargetPassConfig.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000022#include "llvm/CodeGen/TargetRegisterInfo.h"
Aditya Nandakumar75ad9cc2017-04-19 20:48:50 +000023#include "llvm/IR/Constants.h"
Quentin Colombetb4e71182016-12-22 21:56:19 +000024
25#define DEBUG_TYPE "globalisel-utils"
26
27using namespace llvm;
28
Daniel Sandersa6e2ceb2017-06-20 12:36:34 +000029unsigned llvm::constrainRegToClass(MachineRegisterInfo &MRI,
30 const TargetInstrInfo &TII,
31 const RegisterBankInfo &RBI,
32 MachineInstr &InsertPt, unsigned Reg,
33 const TargetRegisterClass &RegClass) {
34 if (!RBI.constrainGenericRegister(Reg, RegClass, MRI)) {
35 unsigned NewReg = MRI.createVirtualRegister(&RegClass);
36 BuildMI(*InsertPt.getParent(), InsertPt, InsertPt.getDebugLoc(),
37 TII.get(TargetOpcode::COPY), NewReg)
38 .addReg(Reg);
39 return NewReg;
40 }
41
42 return Reg;
43}
44
45
Quentin Colombetb4e71182016-12-22 21:56:19 +000046unsigned llvm::constrainOperandRegClass(
47 const MachineFunction &MF, const TargetRegisterInfo &TRI,
48 MachineRegisterInfo &MRI, const TargetInstrInfo &TII,
49 const RegisterBankInfo &RBI, MachineInstr &InsertPt, const MCInstrDesc &II,
50 unsigned Reg, unsigned OpIdx) {
51 // Assume physical registers are properly constrained.
52 assert(TargetRegisterInfo::isVirtualRegister(Reg) &&
53 "PhysReg not implemented");
54
55 const TargetRegisterClass *RegClass = TII.getRegClass(II, OpIdx, &TRI, MF);
Daniel Sanders08464522018-01-29 21:09:12 +000056 // Some of the target independent instructions, like COPY, may not impose any
57 // register class constraints on some of their operands:
58 if (!RegClass) {
59 assert(!isTargetSpecificOpcode(II.getOpcode()) &&
60 "Only target independent instructions are allowed to have operands "
61 "with no register class constraints");
62 // FIXME: Just bailing out like this here could be not enough, unless we
63 // expect the users of this function to do the right thing for PHIs and
64 // COPY:
65 // v1 = COPY v0
66 // v2 = COPY v1
67 // v1 here may end up not being constrained at all. Please notice that to
68 // reproduce the issue we likely need a destination pattern of a selection
69 // rule producing such extra copies, not just an input GMIR with them as
70 // every existing target using selectImpl handles copies before calling it
71 // and they never reach this function.
72 return Reg;
73 }
Daniel Sandersa6e2ceb2017-06-20 12:36:34 +000074 return constrainRegToClass(MRI, TII, RBI, InsertPt, Reg, *RegClass);
Quentin Colombetb4e71182016-12-22 21:56:19 +000075}
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000076
Aditya Nandakumar18b3f9d2018-01-17 19:31:33 +000077bool llvm::constrainSelectedInstRegOperands(MachineInstr &I,
78 const TargetInstrInfo &TII,
79 const TargetRegisterInfo &TRI,
80 const RegisterBankInfo &RBI) {
Daniel Sanders08464522018-01-29 21:09:12 +000081 assert(!isPreISelGenericOpcode(I.getOpcode()) &&
82 "A selected instruction is expected");
Aditya Nandakumar18b3f9d2018-01-17 19:31:33 +000083 MachineBasicBlock &MBB = *I.getParent();
84 MachineFunction &MF = *MBB.getParent();
85 MachineRegisterInfo &MRI = MF.getRegInfo();
86
87 for (unsigned OpI = 0, OpE = I.getNumExplicitOperands(); OpI != OpE; ++OpI) {
88 MachineOperand &MO = I.getOperand(OpI);
89
90 // There's nothing to be done on non-register operands.
91 if (!MO.isReg())
92 continue;
93
94 DEBUG(dbgs() << "Converting operand: " << MO << '\n');
95 assert(MO.isReg() && "Unsupported non-reg operand");
96
97 unsigned Reg = MO.getReg();
98 // Physical registers don't need to be constrained.
99 if (TRI.isPhysicalRegister(Reg))
100 continue;
101
102 // Register operands with a value of 0 (e.g. predicate operands) don't need
103 // to be constrained.
104 if (Reg == 0)
105 continue;
106
107 // If the operand is a vreg, we should constrain its regclass, and only
108 // insert COPYs if that's impossible.
109 // constrainOperandRegClass does that for us.
110 MO.setReg(constrainOperandRegClass(MF, TRI, MRI, TII, RBI, I, I.getDesc(),
111 Reg, OpI));
112
113 // Tie uses to defs as indicated in MCInstrDesc if this hasn't already been
114 // done.
115 if (MO.isUse()) {
116 int DefIdx = I.getDesc().getOperandConstraint(OpI, MCOI::TIED_TO);
117 if (DefIdx != -1 && !I.isRegTiedToUseOperand(DefIdx))
118 I.tieOperands(DefIdx, OpI);
119 }
120 }
121 return true;
122}
123
Volkan Keles47debae2017-03-21 10:47:35 +0000124bool llvm::isTriviallyDead(const MachineInstr &MI,
125 const MachineRegisterInfo &MRI) {
126 // If we can move an instruction, we can remove it. Otherwise, it has
127 // a side-effect of some sort.
128 bool SawStore = false;
129 if (!MI.isSafeToMove(/*AA=*/nullptr, SawStore))
130 return false;
131
132 // Instructions without side-effects are dead iff they only define dead vregs.
133 for (auto &MO : MI.operands()) {
134 if (!MO.isReg() || !MO.isDef())
135 continue;
136
137 unsigned Reg = MO.getReg();
Ahmed Bougacha15b3e8a2017-03-21 23:42:54 +0000138 if (TargetRegisterInfo::isPhysicalRegister(Reg) ||
139 !MRI.use_nodbg_empty(Reg))
Volkan Keles47debae2017-03-21 10:47:35 +0000140 return false;
141 }
142 return true;
143}
144
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000145void llvm::reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC,
146 MachineOptimizationRemarkEmitter &MORE,
147 MachineOptimizationRemarkMissed &R) {
148 MF.getProperties().set(MachineFunctionProperties::Property::FailedISel);
149
150 // Print the function name explicitly if we don't have a debug location (which
151 // makes the diagnostic less useful) or if we're going to emit a raw error.
152 if (!R.getLocation().isValid() || TPC.isGlobalISelAbortEnabled())
153 R << (" (in function: " + MF.getName() + ")").str();
154
155 if (TPC.isGlobalISelAbortEnabled())
156 report_fatal_error(R.getMsg());
157 else
158 MORE.emit(R);
159}
160
161void llvm::reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC,
162 MachineOptimizationRemarkEmitter &MORE,
163 const char *PassName, StringRef Msg,
164 const MachineInstr &MI) {
165 MachineOptimizationRemarkMissed R(PassName, "GISelFailure: ",
166 MI.getDebugLoc(), MI.getParent());
Ahmed Bougachad630a922017-09-18 18:50:09 +0000167 R << Msg;
168 // Printing MI is expensive; only do it if expensive remarks are enabled.
169 if (MORE.allowExtraAnalysis(PassName))
170 R << ": " << ore::MNV("Inst", MI);
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000171 reportGISelFailure(MF, TPC, MORE, R);
172}
Aditya Nandakumar75ad9cc2017-04-19 20:48:50 +0000173
174Optional<int64_t> llvm::getConstantVRegVal(unsigned VReg,
175 const MachineRegisterInfo &MRI) {
176 MachineInstr *MI = MRI.getVRegDef(VReg);
177 if (MI->getOpcode() != TargetOpcode::G_CONSTANT)
178 return None;
179
180 if (MI->getOperand(1).isImm())
181 return MI->getOperand(1).getImm();
182
183 if (MI->getOperand(1).isCImm() &&
184 MI->getOperand(1).getCImm()->getBitWidth() <= 64)
185 return MI->getOperand(1).getCImm()->getSExtValue();
186
187 return None;
188}
Aditya Nandakumar2a735422017-05-12 22:54:52 +0000189
190const llvm::ConstantFP* llvm::getConstantFPVRegVal(unsigned VReg,
191 const MachineRegisterInfo &MRI) {
192 MachineInstr *MI = MRI.getVRegDef(VReg);
193 if (TargetOpcode::G_FCONSTANT != MI->getOpcode())
194 return nullptr;
195 return MI->getOperand(1).getFPImm();
196}
Aditya Nandakumar954eea02017-11-15 23:45:04 +0000197
198llvm::MachineInstr *llvm::getOpcodeDef(unsigned Opcode, unsigned Reg,
199 const MachineRegisterInfo &MRI) {
200 auto *DefMI = MRI.getVRegDef(Reg);
201 auto DstTy = MRI.getType(DefMI->getOperand(0).getReg());
202 if (!DstTy.isValid())
203 return nullptr;
204 while (DefMI->getOpcode() == TargetOpcode::COPY) {
205 unsigned SrcReg = DefMI->getOperand(1).getReg();
206 auto SrcTy = MRI.getType(SrcReg);
207 if (!SrcTy.isValid() || SrcTy != DstTy)
208 break;
209 DefMI = MRI.getVRegDef(SrcReg);
210 }
211 return DefMI->getOpcode() == Opcode ? DefMI : nullptr;
212}