blob: 25bcfa91fa40412da7089488cc008a4d68675449 [file] [log] [blame]
Eugene Zelenko76bf48d2017-06-26 22:44:03 +00001//==- llvm/CodeGen/GlobalISel/RegBankSelect.cpp - RegBankSelect --*- C++ -*-==//
Quentin Colombet8e8e85c2016-04-05 19:06:01 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Quentin Colombet8e8e85c2016-04-05 19:06:01 +00006//
7//===----------------------------------------------------------------------===//
8/// \file
9/// This file implements the RegBankSelect class.
10//===----------------------------------------------------------------------===//
11
12#include "llvm/CodeGen/GlobalISel/RegBankSelect.h"
Quentin Colombetcfd97b92016-05-20 00:35:26 +000013#include "llvm/ADT/PostOrderIterator.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000014#include "llvm/ADT/STLExtras.h"
15#include "llvm/ADT/SmallVector.h"
Tim Northover69fa84a2016-10-14 22:18:18 +000016#include "llvm/CodeGen/GlobalISel/LegalizerInfo.h"
Quentin Colombet40ad5732016-04-07 18:19:27 +000017#include "llvm/CodeGen/GlobalISel/RegisterBank.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000018#include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h"
Ahmed Bougachaae9dade2017-02-23 21:05:42 +000019#include "llvm/CodeGen/GlobalISel/Utils.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000020#include "llvm/CodeGen/MachineBasicBlock.h"
Quentin Colombet55650752016-05-20 00:49:10 +000021#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
22#include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000023#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineInstr.h"
25#include "llvm/CodeGen/MachineOperand.h"
26#include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h"
Quentin Colombet40ad5732016-04-07 18:19:27 +000027#include "llvm/CodeGen/MachineRegisterInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000028#include "llvm/CodeGen/TargetOpcodes.h"
Quentin Colombetacb857b2016-08-27 02:38:27 +000029#include "llvm/CodeGen/TargetPassConfig.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000030#include "llvm/CodeGen/TargetRegisterInfo.h"
31#include "llvm/CodeGen/TargetSubtargetInfo.h"
Nico Weber432a3882018-04-30 14:59:11 +000032#include "llvm/Config/llvm-config.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000033#include "llvm/IR/Attributes.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000034#include "llvm/IR/Function.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000035#include "llvm/Pass.h"
Quentin Colombetcfd97b92016-05-20 00:35:26 +000036#include "llvm/Support/BlockFrequency.h"
Quentin Colombeta41272f2016-06-08 15:49:23 +000037#include "llvm/Support/CommandLine.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000038#include "llvm/Support/Compiler.h"
Quentin Colombete16f5612016-04-07 23:53:55 +000039#include "llvm/Support/Debug.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000040#include "llvm/Support/ErrorHandling.h"
41#include "llvm/Support/raw_ostream.h"
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000042#include <algorithm>
43#include <cassert>
44#include <cstdint>
45#include <limits>
46#include <memory>
47#include <utility>
Quentin Colombet8e8e85c2016-04-05 19:06:01 +000048
49#define DEBUG_TYPE "regbankselect"
50
51using namespace llvm;
52
Quentin Colombeta41272f2016-06-08 15:49:23 +000053static cl::opt<RegBankSelect::Mode> RegBankSelectMode(
54 cl::desc("Mode of the RegBankSelect pass"), cl::Hidden, cl::Optional,
55 cl::values(clEnumValN(RegBankSelect::Mode::Fast, "regbankselect-fast",
56 "Run the Fast mode (default mapping)"),
57 clEnumValN(RegBankSelect::Mode::Greedy, "regbankselect-greedy",
Mehdi Amini732afdd2016-10-08 19:41:06 +000058 "Use the Greedy mode (best local mapping)")));
Quentin Colombeta41272f2016-06-08 15:49:23 +000059
Quentin Colombet8e8e85c2016-04-05 19:06:01 +000060char RegBankSelect::ID = 0;
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000061
Quentin Colombetc13ea882016-09-23 17:50:06 +000062INITIALIZE_PASS_BEGIN(RegBankSelect, DEBUG_TYPE,
Quentin Colombet25fcef72016-05-20 17:54:09 +000063 "Assign register bank of generic virtual registers",
64 false, false);
65INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo)
66INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
Quentin Colombetacb857b2016-08-27 02:38:27 +000067INITIALIZE_PASS_DEPENDENCY(TargetPassConfig)
Quentin Colombetc13ea882016-09-23 17:50:06 +000068INITIALIZE_PASS_END(RegBankSelect, DEBUG_TYPE,
Quentin Colombet25fcef72016-05-20 17:54:09 +000069 "Assign register bank of generic virtual registers", false,
Tim Northover884b47e2016-07-26 03:29:18 +000070 false)
Quentin Colombet8e8e85c2016-04-05 19:06:01 +000071
Quentin Colombet46df7222016-05-20 16:55:35 +000072RegBankSelect::RegBankSelect(Mode RunningMode)
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000073 : MachineFunctionPass(ID), OptMode(RunningMode) {
Quentin Colombeta41272f2016-06-08 15:49:23 +000074 if (RegBankSelectMode.getNumOccurrences() != 0) {
75 OptMode = RegBankSelectMode;
76 if (RegBankSelectMode != RunningMode)
Nicola Zaghend34e60c2018-05-14 12:53:11 +000077 LLVM_DEBUG(dbgs() << "RegBankSelect mode overrided by command line\n");
Quentin Colombeta41272f2016-06-08 15:49:23 +000078 }
Quentin Colombet8e8e85c2016-04-05 19:06:01 +000079}
80
Quentin Colombet40ad5732016-04-07 18:19:27 +000081void RegBankSelect::init(MachineFunction &MF) {
82 RBI = MF.getSubtarget().getRegBankInfo();
83 assert(RBI && "Cannot work without RegisterBankInfo");
84 MRI = &MF.getRegInfo();
Quentin Colombetaac71a42016-04-07 21:32:23 +000085 TRI = MF.getSubtarget().getRegisterInfo();
Quentin Colombetacb857b2016-08-27 02:38:27 +000086 TPC = &getAnalysis<TargetPassConfig>();
Quentin Colombet25fcef72016-05-20 17:54:09 +000087 if (OptMode != Mode::Fast) {
88 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
89 MBPI = &getAnalysis<MachineBranchProbabilityInfo>();
90 } else {
91 MBFI = nullptr;
92 MBPI = nullptr;
93 }
Quentin Colombet40ad5732016-04-07 18:19:27 +000094 MIRBuilder.setMF(MF);
Eugene Zelenko76bf48d2017-06-26 22:44:03 +000095 MORE = llvm::make_unique<MachineOptimizationRemarkEmitter>(MF, MBFI);
Quentin Colombet40ad5732016-04-07 18:19:27 +000096}
97
Quentin Colombet25fcef72016-05-20 17:54:09 +000098void RegBankSelect::getAnalysisUsage(AnalysisUsage &AU) const {
99 if (OptMode != Mode::Fast) {
100 // We could preserve the information from these two analysis but
101 // the APIs do not allow to do so yet.
102 AU.addRequired<MachineBlockFrequencyInfo>();
103 AU.addRequired<MachineBranchProbabilityInfo>();
104 }
Quentin Colombetacb857b2016-08-27 02:38:27 +0000105 AU.addRequired<TargetPassConfig>();
Matthias Braun90ad6832018-07-13 00:08:38 +0000106 getSelectionDAGFallbackAnalysisUsage(AU);
Quentin Colombet25fcef72016-05-20 17:54:09 +0000107 MachineFunctionPass::getAnalysisUsage(AU);
108}
109
Quentin Colombet40ad5732016-04-07 18:19:27 +0000110bool RegBankSelect::assignmentMatch(
Matt Arsenault3018d182019-06-28 01:47:44 +0000111 Register Reg, const RegisterBankInfo::ValueMapping &ValMapping,
Quentin Colombet0d77da42016-05-20 00:42:57 +0000112 bool &OnlyAssign) const {
113 // By default we assume we will have to repair something.
114 OnlyAssign = false;
Quentin Colombet40ad5732016-04-07 18:19:27 +0000115 // Each part of a break down needs to end up in a different register.
Matt Arsenault376f2ef2019-01-08 01:25:47 +0000116 // In other word, Reg assignment does not match.
Matt Arsenault1ac38ba2018-12-18 09:27:29 +0000117 if (ValMapping.NumBreakDowns != 1)
Quentin Colombet40ad5732016-04-07 18:19:27 +0000118 return false;
119
Quentin Colombet6d6d6af2016-04-08 16:48:16 +0000120 const RegisterBank *CurRegBank = RBI->getRegBank(Reg, *MRI, *TRI);
121 const RegisterBank *DesiredRegBrank = ValMapping.BreakDown[0].RegBank;
Quentin Colombet0d77da42016-05-20 00:42:57 +0000122 // Reg is free of assignment, a simple assignment will make the
123 // register bank to match.
124 OnlyAssign = CurRegBank == nullptr;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000125 LLVM_DEBUG(dbgs() << "Does assignment already match: ";
126 if (CurRegBank) dbgs() << *CurRegBank; else dbgs() << "none";
127 dbgs() << " against ";
128 assert(DesiredRegBrank && "The mapping must be valid");
129 dbgs() << *DesiredRegBrank << '\n';);
Quentin Colombet6d6d6af2016-04-08 16:48:16 +0000130 return CurRegBank == DesiredRegBrank;
Quentin Colombet40ad5732016-04-07 18:19:27 +0000131}
132
Quentin Colombetacb857b2016-08-27 02:38:27 +0000133bool RegBankSelect::repairReg(
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000134 MachineOperand &MO, const RegisterBankInfo::ValueMapping &ValMapping,
135 RegBankSelect::RepairingPlacement &RepairPt,
Matt Arsenault3018d182019-06-28 01:47:44 +0000136 const iterator_range<SmallVectorImpl<Register>::const_iterator> &NewVRegs) {
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000137
Fangrui Songec6dc302019-05-17 05:53:39 +0000138 assert(ValMapping.NumBreakDowns == (unsigned)size(NewVRegs) &&
139 "need new vreg for each breakdown");
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000140
Quentin Colombetf33e3652016-06-08 16:30:55 +0000141 // An empty range of new register means no repairing.
Matthias Braun9fd397b2018-10-31 00:23:23 +0000142 assert(!empty(NewVRegs) && "We should not have to repair");
Quentin Colombetf33e3652016-06-08 16:30:55 +0000143
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000144 MachineInstr *MI;
145 if (ValMapping.NumBreakDowns == 1) {
146 // Assume we are repairing a use and thus, the original reg will be
147 // the source of the repairing.
Matt Arsenault3018d182019-06-28 01:47:44 +0000148 Register Src = MO.getReg();
149 Register Dst = *NewVRegs.begin();
Quentin Colombet904a2c72016-04-12 00:12:59 +0000150
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000151 // If we repair a definition, swap the source and destination for
152 // the repairing.
153 if (MO.isDef())
154 std::swap(Src, Dst);
Quentin Colombet904a2c72016-04-12 00:12:59 +0000155
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000156 assert((RepairPt.getNumInsertPoints() == 1 ||
Daniel Sanders2bea69b2019-08-01 23:27:28 +0000157 Register::isPhysicalRegister(Dst)) &&
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000158 "We are about to create several defs for Dst");
Quentin Colombet904a2c72016-04-12 00:12:59 +0000159
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000160 // Build the instruction used to repair, then clone it at the right
161 // places. Avoiding buildCopy bypasses the check that Src and Dst have the
162 // same types because the type is a placeholder when this function is called.
163 MI = MIRBuilder.buildInstrNoInsert(TargetOpcode::COPY)
164 .addDef(Dst)
165 .addUse(Src);
166 LLVM_DEBUG(dbgs() << "Copy: " << printReg(Src) << " to: " << printReg(Dst)
167 << '\n');
168 } else {
169 // TODO: Support with G_IMPLICIT_DEF + G_INSERT sequence or G_EXTRACT
170 // sequence.
171 assert(ValMapping.partsAllUniform() && "irregular breakdowns not supported");
172
173 LLT RegTy = MRI->getType(MO.getReg());
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000174 if (MO.isDef()) {
Matt Arsenault75257972019-02-25 22:24:13 +0000175 unsigned MergeOp;
176 if (RegTy.isVector()) {
177 if (ValMapping.NumBreakDowns == RegTy.getNumElements())
178 MergeOp = TargetOpcode::G_BUILD_VECTOR;
179 else {
180 assert(
181 (ValMapping.BreakDown[0].Length * ValMapping.NumBreakDowns ==
182 RegTy.getSizeInBits()) &&
183 (ValMapping.BreakDown[0].Length % RegTy.getScalarSizeInBits() ==
184 0) &&
185 "don't understand this value breakdown");
186
187 MergeOp = TargetOpcode::G_CONCAT_VECTORS;
188 }
189 } else
190 MergeOp = TargetOpcode::G_MERGE_VALUES;
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000191
Matt Arsenault6bab7ab2019-01-24 23:42:01 +0000192 auto MergeBuilder =
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000193 MIRBuilder.buildInstrNoInsert(MergeOp)
194 .addDef(MO.getReg());
195
Matt Arsenault3018d182019-06-28 01:47:44 +0000196 for (Register SrcReg : NewVRegs)
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000197 MergeBuilder.addUse(SrcReg);
198
199 MI = MergeBuilder;
200 } else {
201 MachineInstrBuilder UnMergeBuilder =
202 MIRBuilder.buildInstrNoInsert(TargetOpcode::G_UNMERGE_VALUES);
Matt Arsenault3018d182019-06-28 01:47:44 +0000203 for (Register DefReg : NewVRegs)
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000204 UnMergeBuilder.addDef(DefReg);
205
206 UnMergeBuilder.addUse(MO.getReg());
207 MI = UnMergeBuilder;
208 }
209 }
210
211 if (RepairPt.getNumInsertPoints() != 1)
212 report_fatal_error("need testcase to support multiple insertion points");
213
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000214 // TODO:
215 // Check if MI is legal. if not, we need to legalize all the
216 // instructions we are going to insert.
217 std::unique_ptr<MachineInstr *[]> NewInstrs(
218 new MachineInstr *[RepairPt.getNumInsertPoints()]);
219 bool IsFirst = true;
220 unsigned Idx = 0;
221 for (const std::unique_ptr<InsertPoint> &InsertPt : RepairPt) {
222 MachineInstr *CurMI;
223 if (IsFirst)
224 CurMI = MI;
225 else
226 CurMI = MIRBuilder.getMF().CloneMachineInstr(MI);
227 InsertPt->insert(*CurMI);
228 NewInstrs[Idx++] = CurMI;
229 IsFirst = false;
230 }
231 // TODO:
232 // Legalize NewInstrs if need be.
Quentin Colombetacb857b2016-08-27 02:38:27 +0000233 return true;
Quentin Colombet40ad5732016-04-07 18:19:27 +0000234}
235
Quentin Colombetf2723a22016-05-21 01:43:25 +0000236uint64_t RegBankSelect::getRepairCost(
237 const MachineOperand &MO,
238 const RegisterBankInfo::ValueMapping &ValMapping) const {
239 assert(MO.isReg() && "We should only repair register operand");
Quentin Colombet0afa7d62016-09-23 00:14:30 +0000240 assert(ValMapping.NumBreakDowns && "Nothing to map??");
Quentin Colombetf2723a22016-05-21 01:43:25 +0000241
Quentin Colombet0afa7d62016-09-23 00:14:30 +0000242 bool IsSameNumOfValues = ValMapping.NumBreakDowns == 1;
Quentin Colombetf2723a22016-05-21 01:43:25 +0000243 const RegisterBank *CurRegBank = RBI->getRegBank(MO.getReg(), *MRI, *TRI);
244 // If MO does not have a register bank, we should have just been
245 // able to set one unless we have to break the value down.
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000246 assert(CurRegBank || MO.isDef());
247
Quentin Colombetf2723a22016-05-21 01:43:25 +0000248 // Def: Val <- NewDefs
249 // Same number of values: copy
250 // Different number: Val = build_sequence Defs1, Defs2, ...
251 // Use: NewSources <- Val.
252 // Same number of values: copy.
253 // Different number: Src1, Src2, ... =
254 // extract_value Val, Src1Begin, Src1Len, Src2Begin, Src2Len, ...
255 // We should remember that this value is available somewhere else to
256 // coalesce the value.
257
Matt Arsenaultbaa5d2e2019-01-24 22:47:04 +0000258 if (ValMapping.NumBreakDowns != 1)
259 return RBI->getBreakDownCost(ValMapping, CurRegBank);
260
Quentin Colombetf2723a22016-05-21 01:43:25 +0000261 if (IsSameNumOfValues) {
262 const RegisterBank *DesiredRegBrank = ValMapping.BreakDown[0].RegBank;
263 // If we repair a definition, swap the source and destination for
264 // the repairing.
265 if (MO.isDef())
266 std::swap(CurRegBank, DesiredRegBrank);
Quentin Colombetd6886bd2016-06-08 17:39:43 +0000267 // TODO: It may be possible to actually avoid the copy.
268 // If we repair something where the source is defined by a copy
269 // and the source of that copy is on the right bank, we can reuse
270 // it for free.
271 // E.g.,
272 // RegToRepair<BankA> = copy AlternativeSrc<BankB>
273 // = op RegToRepair<BankA>
274 // We can simply propagate AlternativeSrc instead of copying RegToRepair
275 // into a new virtual register.
276 // We would also need to propagate this information in the
277 // repairing placement.
Quentin Colombet4a6b7502017-10-13 21:16:15 +0000278 unsigned Cost = RBI->copyCost(*DesiredRegBrank, *CurRegBank,
279 RBI->getSizeInBits(MO.getReg(), *MRI, *TRI));
Quentin Colombetf2723a22016-05-21 01:43:25 +0000280 // TODO: use a dedicated constant for ImpossibleCost.
Eugene Zelenko76bf48d2017-06-26 22:44:03 +0000281 if (Cost != std::numeric_limits<unsigned>::max())
Quentin Colombetf2723a22016-05-21 01:43:25 +0000282 return Cost;
Quentin Colombetf2723a22016-05-21 01:43:25 +0000283 // Return the legalization cost of that repairing.
284 }
Eugene Zelenko76bf48d2017-06-26 22:44:03 +0000285 return std::numeric_limits<unsigned>::max();
Quentin Colombetf2723a22016-05-21 01:43:25 +0000286}
287
Quentin Colombet245994d2017-05-05 22:48:22 +0000288const RegisterBankInfo::InstructionMapping &RegBankSelect::findBestMapping(
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000289 MachineInstr &MI, RegisterBankInfo::InstructionMappings &PossibleMappings,
290 SmallVectorImpl<RepairingPlacement> &RepairPts) {
Quentin Colombetacb857b2016-08-27 02:38:27 +0000291 assert(!PossibleMappings.empty() &&
292 "Do not know how to map this instruction");
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000293
Quentin Colombet245994d2017-05-05 22:48:22 +0000294 const RegisterBankInfo::InstructionMapping *BestMapping = nullptr;
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000295 MappingCost Cost = MappingCost::ImpossibleCost();
296 SmallVector<RepairingPlacement, 4> LocalRepairPts;
Quentin Colombet245994d2017-05-05 22:48:22 +0000297 for (const RegisterBankInfo::InstructionMapping *CurMapping :
298 PossibleMappings) {
299 MappingCost CurCost =
300 computeMapping(MI, *CurMapping, LocalRepairPts, &Cost);
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000301 if (CurCost < Cost) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000302 LLVM_DEBUG(dbgs() << "New best: " << CurCost << '\n');
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000303 Cost = CurCost;
Quentin Colombet245994d2017-05-05 22:48:22 +0000304 BestMapping = CurMapping;
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000305 RepairPts.clear();
306 for (RepairingPlacement &RepairPt : LocalRepairPts)
307 RepairPts.emplace_back(std::move(RepairPt));
308 }
309 }
Quentin Colombetacb857b2016-08-27 02:38:27 +0000310 if (!BestMapping && !TPC->isGlobalISelAbortEnabled()) {
311 // If none of the mapping worked that means they are all impossible.
312 // Thus, pick the first one and set an impossible repairing point.
313 // It will trigger the failed isel mode.
Quentin Colombet245994d2017-05-05 22:48:22 +0000314 BestMapping = *PossibleMappings.begin();
Quentin Colombetacb857b2016-08-27 02:38:27 +0000315 RepairPts.emplace_back(
316 RepairingPlacement(MI, 0, *TRI, *this, RepairingPlacement::Impossible));
317 } else
318 assert(BestMapping && "No suitable mapping for instruction");
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000319 return *BestMapping;
320}
321
Quentin Colombetf75c2bf2016-05-20 16:36:12 +0000322void RegBankSelect::tryAvoidingSplit(
323 RegBankSelect::RepairingPlacement &RepairPt, const MachineOperand &MO,
324 const RegisterBankInfo::ValueMapping &ValMapping) const {
325 const MachineInstr &MI = *MO.getParent();
326 assert(RepairPt.hasSplit() && "We should not have to adjust for split");
327 // Splitting should only occur for PHIs or between terminators,
328 // because we only do local repairing.
329 assert((MI.isPHI() || MI.isTerminator()) && "Why do we split?");
330
331 assert(&MI.getOperand(RepairPt.getOpIdx()) == &MO &&
332 "Repairing placement does not match operand");
333
334 // If we need splitting for phis, that means it is because we
335 // could not find an insertion point before the terminators of
336 // the predecessor block for this argument. In other words,
337 // the input value is defined by one of the terminators.
338 assert((!MI.isPHI() || !MO.isDef()) && "Need split for phi def?");
339
340 // We split to repair the use of a phi or a terminator.
341 if (!MO.isDef()) {
342 if (MI.isTerminator()) {
343 assert(&MI != &(*MI.getParent()->getFirstTerminator()) &&
344 "Need to split for the first terminator?!");
345 } else {
346 // For the PHI case, the split may not be actually required.
347 // In the copy case, a phi is already a copy on the incoming edge,
348 // therefore there is no need to split.
Quentin Colombet0afa7d62016-09-23 00:14:30 +0000349 if (ValMapping.NumBreakDowns == 1)
Quentin Colombetf75c2bf2016-05-20 16:36:12 +0000350 // This is a already a copy, there is nothing to do.
351 RepairPt.switchTo(RepairingPlacement::RepairingKind::Reassign);
352 }
353 return;
354 }
355
356 // At this point, we need to repair a defintion of a terminator.
357
358 // Technically we need to fix the def of MI on all outgoing
359 // edges of MI to keep the repairing local. In other words, we
360 // will create several definitions of the same register. This
361 // does not work for SSA unless that definition is a physical
362 // register.
363 // However, there are other cases where we can get away with
364 // that while still keeping the repairing local.
365 assert(MI.isTerminator() && MO.isDef() &&
366 "This code is for the def of a terminator");
367
368 // Since we use RPO traversal, if we need to repair a definition
369 // this means this definition could be:
370 // 1. Used by PHIs (i.e., this VReg has been visited as part of the
371 // uses of a phi.), or
372 // 2. Part of a target specific instruction (i.e., the target applied
373 // some register class constraints when creating the instruction.)
374 // If the constraints come for #2, the target said that another mapping
375 // is supported so we may just drop them. Indeed, if we do not change
376 // the number of registers holding that value, the uses will get fixed
377 // when we get to them.
378 // Uses in PHIs may have already been proceeded though.
379 // If the constraints come for #1, then, those are weak constraints and
380 // no actual uses may rely on them. However, the problem remains mainly
381 // the same as for #2. If the value stays in one register, we could
382 // just switch the register bank of the definition, but we would need to
383 // account for a repairing cost for each phi we silently change.
384 //
385 // In any case, if the value needs to be broken down into several
386 // registers, the repairing is not local anymore as we need to patch
387 // every uses to rebuild the value in just one register.
388 //
389 // To summarize:
390 // - If the value is in a physical register, we can do the split and
391 // fix locally.
392 // Otherwise if the value is in a virtual register:
393 // - If the value remains in one register, we do not have to split
394 // just switching the register bank would do, but we need to account
395 // in the repairing cost all the phi we changed.
396 // - If the value spans several registers, then we cannot do a local
397 // repairing.
398
399 // Check if this is a physical or virtual register.
Matt Arsenault3018d182019-06-28 01:47:44 +0000400 Register Reg = MO.getReg();
Daniel Sanders2bea69b2019-08-01 23:27:28 +0000401 if (Register::isPhysicalRegister(Reg)) {
Quentin Colombetf75c2bf2016-05-20 16:36:12 +0000402 // We are going to split every outgoing edges.
403 // Check that this is possible.
404 // FIXME: The machine representation is currently broken
405 // since it also several terminators in one basic block.
406 // Because of that we would technically need a way to get
407 // the targets of just one terminator to know which edges
408 // we have to split.
409 // Assert that we do not hit the ill-formed representation.
410
411 // If there are other terminators before that one, some of
412 // the outgoing edges may not be dominated by this definition.
413 assert(&MI == &(*MI.getParent()->getFirstTerminator()) &&
414 "Do not know which outgoing edges are relevant");
415 const MachineInstr *Next = MI.getNextNode();
416 assert((!Next || Next->isUnconditionalBranch()) &&
417 "Do not know where each terminator ends up");
418 if (Next)
419 // If the next terminator uses Reg, this means we have
420 // to split right after MI and thus we need a way to ask
421 // which outgoing edges are affected.
422 assert(!Next->readsRegister(Reg) && "Need to split between terminators");
423 // We will split all the edges and repair there.
424 } else {
425 // This is a virtual register defined by a terminator.
Quentin Colombet0afa7d62016-09-23 00:14:30 +0000426 if (ValMapping.NumBreakDowns == 1) {
Quentin Colombetf75c2bf2016-05-20 16:36:12 +0000427 // There is nothing to repair, but we may actually lie on
428 // the repairing cost because of the PHIs already proceeded
429 // as already stated.
430 // Though the code will be correct.
Eugene Zelenko76bf48d2017-06-26 22:44:03 +0000431 assert(false && "Repairing cost may not be accurate");
Quentin Colombetf75c2bf2016-05-20 16:36:12 +0000432 } else {
433 // We need to do non-local repairing. Basically, patch all
434 // the uses (i.e., phis) that we already proceeded.
435 // For now, just say this mapping is not possible.
436 RepairPt.switchTo(RepairingPlacement::RepairingKind::Impossible);
437 }
438 }
439}
440
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000441RegBankSelect::MappingCost RegBankSelect::computeMapping(
442 MachineInstr &MI, const RegisterBankInfo::InstructionMapping &InstrMapping,
Quentin Colombet6e80dbc2016-05-20 18:00:46 +0000443 SmallVectorImpl<RepairingPlacement> &RepairPts,
444 const RegBankSelect::MappingCost *BestCost) {
445 assert((MBFI || !BestCost) && "Costs comparison require MBFI");
Quentin Colombete16f5612016-04-07 23:53:55 +0000446
Tim Northoverc1a23852016-12-06 18:38:38 +0000447 if (!InstrMapping.isValid())
448 return MappingCost::ImpossibleCost();
449
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000450 // If mapped with InstrMapping, MI will have the recorded cost.
Quentin Colombet25fcef72016-05-20 17:54:09 +0000451 MappingCost Cost(MBFI ? MBFI->getBlockFreq(MI.getParent()) : 1);
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000452 bool Saturated = Cost.addLocalCost(InstrMapping.getCost());
453 assert(!Saturated && "Possible mapping saturated the cost");
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000454 LLVM_DEBUG(dbgs() << "Evaluating mapping cost for: " << MI);
455 LLVM_DEBUG(dbgs() << "With: " << InstrMapping << '\n');
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000456 RepairPts.clear();
Quentin Colombet0b63b312017-01-11 00:48:41 +0000457 if (BestCost && Cost > *BestCost) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000458 LLVM_DEBUG(dbgs() << "Mapping is too expensive from the start\n");
Quentin Colombet6e80dbc2016-05-20 18:00:46 +0000459 return Cost;
Quentin Colombet0b63b312017-01-11 00:48:41 +0000460 }
Quentin Colombet6e80dbc2016-05-20 18:00:46 +0000461
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000462 // Moreover, to realize this mapping, the register bank of each operand must
463 // match this mapping. In other words, we may need to locally reassign the
464 // register banks. Account for that repairing cost as well.
465 // In this context, local means in the surrounding of MI.
Quentin Colombet1b016772016-09-29 19:51:46 +0000466 for (unsigned OpIdx = 0, EndOpIdx = InstrMapping.getNumOperands();
467 OpIdx != EndOpIdx; ++OpIdx) {
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000468 const MachineOperand &MO = MI.getOperand(OpIdx);
Quentin Colombet40ad5732016-04-07 18:19:27 +0000469 if (!MO.isReg())
470 continue;
Matt Arsenault3018d182019-06-28 01:47:44 +0000471 Register Reg = MO.getReg();
Quentin Colombet40ad5732016-04-07 18:19:27 +0000472 if (!Reg)
473 continue;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000474 LLVM_DEBUG(dbgs() << "Opd" << OpIdx << '\n');
Quentin Colombet40ad5732016-04-07 18:19:27 +0000475 const RegisterBankInfo::ValueMapping &ValMapping =
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000476 InstrMapping.getOperandMapping(OpIdx);
477 // If Reg is already properly mapped, this is free.
478 bool Assign;
479 if (assignmentMatch(Reg, ValMapping, Assign)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000480 LLVM_DEBUG(dbgs() << "=> is free (match).\n");
Quentin Colombet40ad5732016-04-07 18:19:27 +0000481 continue;
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000482 }
483 if (Assign) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000484 LLVM_DEBUG(dbgs() << "=> is free (simple assignment).\n");
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000485 RepairPts.emplace_back(RepairingPlacement(MI, OpIdx, *TRI, *this,
486 RepairingPlacement::Reassign));
487 continue;
Quentin Colombet40ad5732016-04-07 18:19:27 +0000488 }
Quentin Colombet904a2c72016-04-12 00:12:59 +0000489
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000490 // Find the insertion point for the repairing code.
491 RepairPts.emplace_back(
492 RepairingPlacement(MI, OpIdx, *TRI, *this, RepairingPlacement::Insert));
493 RepairingPlacement &RepairPt = RepairPts.back();
494
Quentin Colombetf75c2bf2016-05-20 16:36:12 +0000495 // If we need to split a basic block to materialize this insertion point,
496 // we may give a higher cost to this mapping.
497 // Nevertheless, we may get away with the split, so try that first.
498 if (RepairPt.hasSplit())
499 tryAvoidingSplit(RepairPt, MO, ValMapping);
500
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000501 // Check that the materialization of the repairing is possible.
Quentin Colombet0b63b312017-01-11 00:48:41 +0000502 if (!RepairPt.canMaterialize()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000503 LLVM_DEBUG(dbgs() << "Mapping involves impossible repairing\n");
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000504 return MappingCost::ImpossibleCost();
Quentin Colombet0b63b312017-01-11 00:48:41 +0000505 }
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000506
507 // Account for the split cost and repair cost.
Quentin Colombet6e80dbc2016-05-20 18:00:46 +0000508 // Unless the cost is already saturated or we do not care about the cost.
509 if (!BestCost || Saturated)
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000510 continue;
511
Quentin Colombet6e80dbc2016-05-20 18:00:46 +0000512 // To get accurate information we need MBFI and MBPI.
513 // Thus, if we end up here this information should be here.
514 assert(MBFI && MBPI && "Cost computation requires MBFI and MBPI");
515
Quentin Colombet6feaf8202016-06-08 15:40:32 +0000516 // FIXME: We will have to rework the repairing cost model.
517 // The repairing cost depends on the register bank that MO has.
518 // However, when we break down the value into different values,
519 // MO may not have a register bank while still needing repairing.
520 // For the fast mode, we don't compute the cost so that is fine,
521 // but still for the repairing code, we will have to make a choice.
522 // For the greedy mode, we should choose greedily what is the best
523 // choice based on the next use of MO.
524
Quentin Colombetf2723a22016-05-21 01:43:25 +0000525 // Sums up the repairing cost of MO at each insertion point.
526 uint64_t RepairCost = getRepairCost(MO, ValMapping);
Tom Stellard049e7e02017-05-15 09:52:33 +0000527
528 // This is an impossible to repair cost.
Eugene Zelenko76bf48d2017-06-26 22:44:03 +0000529 if (RepairCost == std::numeric_limits<unsigned>::max())
Tom Stellard179757e2018-07-25 03:08:35 +0000530 return MappingCost::ImpossibleCost();
Tom Stellard049e7e02017-05-15 09:52:33 +0000531
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000532 // Bias used for splitting: 5%.
533 const uint64_t PercentageForBias = 5;
534 uint64_t Bias = (RepairCost * PercentageForBias + 99) / 100;
535 // We should not need more than a couple of instructions to repair
536 // an assignment. In other words, the computation should not
537 // overflow because the repairing cost is free of basic block
538 // frequency.
539 assert(((RepairCost < RepairCost * PercentageForBias) &&
540 (RepairCost * PercentageForBias <
541 RepairCost * PercentageForBias + 99)) &&
542 "Repairing involves more than a billion of instructions?!");
543 for (const std::unique_ptr<InsertPoint> &InsertPt : RepairPt) {
544 assert(InsertPt->canMaterialize() && "We should not have made it here");
545 // We will applied some basic block frequency and those uses uint64_t.
546 if (!InsertPt->isSplit())
547 Saturated = Cost.addLocalCost(RepairCost);
548 else {
549 uint64_t CostForInsertPt = RepairCost;
550 // Again we shouldn't overflow here givent that
551 // CostForInsertPt is frequency free at this point.
552 assert(CostForInsertPt + Bias > CostForInsertPt &&
553 "Repairing + split bias overflows");
554 CostForInsertPt += Bias;
555 uint64_t PtCost = InsertPt->frequency(*this) * CostForInsertPt;
556 // Check if we just overflowed.
557 if ((Saturated = PtCost < CostForInsertPt))
558 Cost.saturate();
559 else
560 Saturated = Cost.addNonLocalCost(PtCost);
561 }
Quentin Colombet6e80dbc2016-05-20 18:00:46 +0000562
563 // Stop looking into what it takes to repair, this is already
564 // too expensive.
Quentin Colombet0b63b312017-01-11 00:48:41 +0000565 if (BestCost && Cost > *BestCost) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000566 LLVM_DEBUG(dbgs() << "Mapping is too expensive, stop processing\n");
Quentin Colombet6e80dbc2016-05-20 18:00:46 +0000567 return Cost;
Quentin Colombet0b63b312017-01-11 00:48:41 +0000568 }
Quentin Colombet6e80dbc2016-05-20 18:00:46 +0000569
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000570 // No need to accumulate more cost information.
571 // We need to still gather the repairing information though.
572 if (Saturated)
573 break;
574 }
Quentin Colombet40ad5732016-04-07 18:19:27 +0000575 }
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000576 LLVM_DEBUG(dbgs() << "Total cost is: " << Cost << "\n");
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000577 return Cost;
578}
579
Quentin Colombetacb857b2016-08-27 02:38:27 +0000580bool RegBankSelect::applyMapping(
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000581 MachineInstr &MI, const RegisterBankInfo::InstructionMapping &InstrMapping,
582 SmallVectorImpl<RegBankSelect::RepairingPlacement> &RepairPts) {
Matt Arsenault376f2ef2019-01-08 01:25:47 +0000583 // OpdMapper will hold all the information needed for the rewriting.
Quentin Colombetf33e3652016-06-08 16:30:55 +0000584 RegisterBankInfo::OperandsMapper OpdMapper(MI, InstrMapping, *MRI);
585
Quentin Colombetec5c93d2016-06-08 16:45:04 +0000586 // First, place the repairing code.
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000587 for (RepairingPlacement &RepairPt : RepairPts) {
Quentin Colombetacb857b2016-08-27 02:38:27 +0000588 if (!RepairPt.canMaterialize() ||
589 RepairPt.getKind() == RepairingPlacement::Impossible)
590 return false;
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000591 assert(RepairPt.getKind() != RepairingPlacement::None &&
592 "This should not make its way in the list");
593 unsigned OpIdx = RepairPt.getOpIdx();
594 MachineOperand &MO = MI.getOperand(OpIdx);
595 const RegisterBankInfo::ValueMapping &ValMapping =
596 InstrMapping.getOperandMapping(OpIdx);
Matt Arsenault3018d182019-06-28 01:47:44 +0000597 Register Reg = MO.getReg();
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000598
599 switch (RepairPt.getKind()) {
600 case RepairingPlacement::Reassign:
Quentin Colombet0afa7d62016-09-23 00:14:30 +0000601 assert(ValMapping.NumBreakDowns == 1 &&
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000602 "Reassignment should only be for simple mapping");
603 MRI->setRegBank(Reg, *ValMapping.BreakDown[0].RegBank);
604 break;
605 case RepairingPlacement::Insert:
Quentin Colombetf33e3652016-06-08 16:30:55 +0000606 OpdMapper.createVRegs(OpIdx);
Quentin Colombetacb857b2016-08-27 02:38:27 +0000607 if (!repairReg(MO, ValMapping, RepairPt, OpdMapper.getVRegs(OpIdx)))
608 return false;
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000609 break;
610 default:
611 llvm_unreachable("Other kind should not happen");
612 }
613 }
Tim Northover849fcca2017-06-27 21:41:40 +0000614
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000615 // Second, rewrite the instruction.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000616 LLVM_DEBUG(dbgs() << "Actual mapping of the operands: " << OpdMapper << '\n');
Quentin Colombetec5c93d2016-06-08 16:45:04 +0000617 RBI->applyMapping(OpdMapper);
Tim Northover849fcca2017-06-27 21:41:40 +0000618
Quentin Colombetacb857b2016-08-27 02:38:27 +0000619 return true;
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000620}
621
Quentin Colombetacb857b2016-08-27 02:38:27 +0000622bool RegBankSelect::assignInstr(MachineInstr &MI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000623 LLVM_DEBUG(dbgs() << "Assign: " << MI);
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000624 // Remember the repairing placement for all the operands.
625 SmallVector<RepairingPlacement, 4> RepairPts;
626
Quentin Colombet245994d2017-05-05 22:48:22 +0000627 const RegisterBankInfo::InstructionMapping *BestMapping;
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000628 if (OptMode == RegBankSelect::Mode::Fast) {
Quentin Colombet245994d2017-05-05 22:48:22 +0000629 BestMapping = &RBI->getInstrMapping(MI);
630 MappingCost DefaultCost = computeMapping(MI, *BestMapping, RepairPts);
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000631 (void)DefaultCost;
Quentin Colombetacb857b2016-08-27 02:38:27 +0000632 if (DefaultCost == MappingCost::ImpossibleCost())
633 return false;
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000634 } else {
635 RegisterBankInfo::InstructionMappings PossibleMappings =
636 RBI->getInstrPossibleMappings(MI);
Quentin Colombetacb857b2016-08-27 02:38:27 +0000637 if (PossibleMappings.empty())
638 return false;
Quentin Colombet245994d2017-05-05 22:48:22 +0000639 BestMapping = &findBestMapping(MI, PossibleMappings, RepairPts);
Quentin Colombet79fe1be2016-05-20 18:37:33 +0000640 }
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000641 // Make sure the mapping is valid for MI.
Quentin Colombet245994d2017-05-05 22:48:22 +0000642 assert(BestMapping->verify(MI) && "Invalid instruction mapping");
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000643
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000644 LLVM_DEBUG(dbgs() << "Best Mapping: " << *BestMapping << '\n');
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000645
Quentin Colombet9400bfb2016-06-08 21:55:29 +0000646 // After this call, MI may not be valid anymore.
647 // Do not use it.
Quentin Colombet245994d2017-05-05 22:48:22 +0000648 return applyMapping(MI, *BestMapping, RepairPts);
Quentin Colombet40ad5732016-04-07 18:19:27 +0000649}
650
Quentin Colombet8e8e85c2016-04-05 19:06:01 +0000651bool RegBankSelect::runOnMachineFunction(MachineFunction &MF) {
Quentin Colombet60495242016-08-27 00:18:24 +0000652 // If the ISel pipeline failed, do not bother running that pass.
653 if (MF.getProperties().hasProperty(
654 MachineFunctionProperties::Property::FailedISel))
655 return false;
656
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000657 LLVM_DEBUG(dbgs() << "Assign register banks for: " << MF.getName() << '\n');
Matthias Braunf1caa282017-12-15 22:22:58 +0000658 const Function &F = MF.getFunction();
Quentin Colombeta5530122016-05-20 17:36:54 +0000659 Mode SaveOptMode = OptMode;
Evandro Menezes85bd3972019-04-04 22:40:06 +0000660 if (F.hasOptNone())
Quentin Colombeta5530122016-05-20 17:36:54 +0000661 OptMode = Mode::Fast;
Quentin Colombet40ad5732016-04-07 18:19:27 +0000662 init(MF);
Ahmed Bougacha24d0d4d2016-08-02 15:10:32 +0000663
664#ifndef NDEBUG
665 // Check that our input is fully legal: we require the function to have the
666 // Legalized property, so it should be.
Roman Tereshin2b949722018-03-01 00:27:48 +0000667 // FIXME: This should be in the MachineVerifier.
668 if (!DisableGISelLegalityCheck)
669 if (const MachineInstr *MI = machineFunctionIsIllegal(MF)) {
670 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect",
671 "instruction is not legal", *MI);
672 return false;
Ahmed Bougacha24d0d4d2016-08-02 15:10:32 +0000673 }
Ahmed Bougacha24d0d4d2016-08-02 15:10:32 +0000674#endif
675
Quentin Colombet40ad5732016-04-07 18:19:27 +0000676 // Walk the function and assign register banks to all operands.
Quentin Colombetab8c21f2016-04-08 17:19:10 +0000677 // Use a RPOT to make sure all registers are assigned before we choose
678 // the best mapping of the current instruction.
679 ReversePostOrderTraversal<MachineFunction*> RPOT(&MF);
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000680 for (MachineBasicBlock *MBB : RPOT) {
681 // Set a sensible insertion point so that subsequent calls to
682 // MIRBuilder.
683 MIRBuilder.setMBB(*MBB);
Quentin Colombetec5c93d2016-06-08 16:45:04 +0000684 for (MachineBasicBlock::iterator MII = MBB->begin(), End = MBB->end();
685 MII != End;) {
686 // MI might be invalidated by the assignment, so move the
687 // iterator before hand.
Ahmed Bougacha45eb3b92016-08-02 11:41:16 +0000688 MachineInstr &MI = *MII++;
689
690 // Ignore target-specific instructions: they should use proper regclasses.
691 if (isTargetSpecificOpcode(MI.getOpcode()))
692 continue;
693
Quentin Colombetacb857b2016-08-27 02:38:27 +0000694 if (!assignInstr(MI)) {
Ahmed Bougachaae9dade2017-02-23 21:05:42 +0000695 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect",
696 "unable to map instruction", MI);
Quentin Colombetacb857b2016-08-27 02:38:27 +0000697 return false;
698 }
Matt Arsenault8df2f3d2019-02-21 15:48:13 +0000699
700 // It's possible the mapping changed control flow, and moved the following
701 // instruction to a new block, so figure out the new parent.
702 if (MII != End) {
703 MachineBasicBlock *NextInstBB = MII->getParent();
704 if (NextInstBB != MBB) {
705 LLVM_DEBUG(dbgs() << "Instruction mapping changed control flow\n");
706 MBB = NextInstBB;
707 MIRBuilder.setMBB(*MBB);
708 End = MBB->end();
709 }
710 }
Quentin Colombetec5c93d2016-06-08 16:45:04 +0000711 }
Quentin Colombetd84d00b2016-05-20 00:55:51 +0000712 }
Matt Arsenault8df2f3d2019-02-21 15:48:13 +0000713
Quentin Colombeta5530122016-05-20 17:36:54 +0000714 OptMode = SaveOptMode;
Quentin Colombet8e8e85c2016-04-05 19:06:01 +0000715 return false;
716}
Quentin Colombetcfd97b92016-05-20 00:35:26 +0000717
718//------------------------------------------------------------------------------
Quentin Colombet55650752016-05-20 00:49:10 +0000719// Helper Classes Implementation
Quentin Colombetcfd97b92016-05-20 00:35:26 +0000720//------------------------------------------------------------------------------
Quentin Colombet55650752016-05-20 00:49:10 +0000721RegBankSelect::RepairingPlacement::RepairingPlacement(
722 MachineInstr &MI, unsigned OpIdx, const TargetRegisterInfo &TRI, Pass &P,
723 RepairingPlacement::RepairingKind Kind)
724 // Default is, we are going to insert code to repair OpIdx.
Eugene Zelenko76bf48d2017-06-26 22:44:03 +0000725 : Kind(Kind), OpIdx(OpIdx),
726 CanMaterialize(Kind != RepairingKind::Impossible), P(P) {
Quentin Colombet55650752016-05-20 00:49:10 +0000727 const MachineOperand &MO = MI.getOperand(OpIdx);
728 assert(MO.isReg() && "Trying to repair a non-reg operand");
729
730 if (Kind != RepairingKind::Insert)
731 return;
732
733 // Repairings for definitions happen after MI, uses happen before.
734 bool Before = !MO.isDef();
735
736 // Check if we are done with MI.
737 if (!MI.isPHI() && !MI.isTerminator()) {
738 addInsertPoint(MI, Before);
739 // We are done with the initialization.
740 return;
741 }
742
743 // Now, look for the special cases.
744 if (MI.isPHI()) {
745 // - PHI must be the first instructions:
746 // * Before, we have to split the related incoming edge.
747 // * After, move the insertion point past the last phi.
748 if (!Before) {
749 MachineBasicBlock::iterator It = MI.getParent()->getFirstNonPHI();
750 if (It != MI.getParent()->end())
751 addInsertPoint(*It, /*Before*/ true);
752 else
753 addInsertPoint(*(--It), /*Before*/ false);
754 return;
755 }
756 // We repair a use of a phi, we may need to split the related edge.
757 MachineBasicBlock &Pred = *MI.getOperand(OpIdx + 1).getMBB();
758 // Check if we can move the insertion point prior to the
759 // terminators of the predecessor.
Matt Arsenault3018d182019-06-28 01:47:44 +0000760 Register Reg = MO.getReg();
Quentin Colombet55650752016-05-20 00:49:10 +0000761 MachineBasicBlock::iterator It = Pred.getLastNonDebugInstr();
762 for (auto Begin = Pred.begin(); It != Begin && It->isTerminator(); --It)
763 if (It->modifiesRegister(Reg, &TRI)) {
764 // We cannot hoist the repairing code in the predecessor.
765 // Split the edge.
766 addInsertPoint(Pred, *MI.getParent());
767 return;
768 }
769 // At this point, we can insert in Pred.
770
771 // - If It is invalid, Pred is empty and we can insert in Pred
772 // wherever we want.
773 // - If It is valid, It is the first non-terminator, insert after It.
774 if (It == Pred.end())
775 addInsertPoint(Pred, /*Beginning*/ false);
776 else
777 addInsertPoint(*It, /*Before*/ false);
778 } else {
779 // - Terminators must be the last instructions:
780 // * Before, move the insert point before the first terminator.
781 // * After, we have to split the outcoming edges.
Quentin Colombet55650752016-05-20 00:49:10 +0000782 if (Before) {
783 // Check whether Reg is defined by any terminator.
Matt Arsenaultadc40ba2019-01-08 01:22:47 +0000784 MachineBasicBlock::reverse_iterator It = MI;
785 auto REnd = MI.getParent()->rend();
786
787 for (; It != REnd && It->isTerminator(); ++It) {
Benjamin Kramera4805232019-01-08 12:54:26 +0000788 assert(!It->modifiesRegister(MO.getReg(), &TRI) &&
Matt Arsenaultadc40ba2019-01-08 01:22:47 +0000789 "copy insertion in middle of terminators not handled");
790 }
791
792 if (It == REnd) {
793 addInsertPoint(*MI.getParent()->begin(), true);
794 return;
795 }
796
797 // We are sure to be right before the first terminator.
798 addInsertPoint(*It, /*Before*/ false);
Quentin Colombet55650752016-05-20 00:49:10 +0000799 return;
800 }
801 // Make sure Reg is not redefined by other terminators, otherwise
802 // we do not know how to split.
803 for (MachineBasicBlock::iterator It = MI, End = MI.getParent()->end();
804 ++It != End;)
805 // The machine verifier should reject this kind of code.
Benjamin Kramera4805232019-01-08 12:54:26 +0000806 assert(It->modifiesRegister(MO.getReg(), &TRI) &&
807 "Do not know where to split");
Quentin Colombet55650752016-05-20 00:49:10 +0000808 // Split each outcoming edges.
809 MachineBasicBlock &Src = *MI.getParent();
810 for (auto &Succ : Src.successors())
811 addInsertPoint(Src, Succ);
812 }
813}
814
815void RegBankSelect::RepairingPlacement::addInsertPoint(MachineInstr &MI,
816 bool Before) {
817 addInsertPoint(*new InstrInsertPoint(MI, Before));
818}
819
820void RegBankSelect::RepairingPlacement::addInsertPoint(MachineBasicBlock &MBB,
821 bool Beginning) {
822 addInsertPoint(*new MBBInsertPoint(MBB, Beginning));
823}
824
825void RegBankSelect::RepairingPlacement::addInsertPoint(MachineBasicBlock &Src,
826 MachineBasicBlock &Dst) {
827 addInsertPoint(*new EdgeInsertPoint(Src, Dst, P));
828}
829
830void RegBankSelect::RepairingPlacement::addInsertPoint(
831 RegBankSelect::InsertPoint &Point) {
832 CanMaterialize &= Point.canMaterialize();
833 HasSplit |= Point.isSplit();
834 InsertPoints.emplace_back(&Point);
835}
836
837RegBankSelect::InstrInsertPoint::InstrInsertPoint(MachineInstr &Instr,
838 bool Before)
839 : InsertPoint(), Instr(Instr), Before(Before) {
840 // Since we do not support splitting, we do not need to update
841 // liveness and such, so do not do anything with P.
842 assert((!Before || !Instr.isPHI()) &&
843 "Splitting before phis requires more points");
844 assert((!Before || !Instr.getNextNode() || !Instr.getNextNode()->isPHI()) &&
845 "Splitting between phis does not make sense");
846}
847
848void RegBankSelect::InstrInsertPoint::materialize() {
849 if (isSplit()) {
850 // Slice and return the beginning of the new block.
851 // If we need to split between the terminators, we theoritically
852 // need to know where the first and second set of terminators end
853 // to update the successors properly.
854 // Now, in pratice, we should have a maximum of 2 branch
855 // instructions; one conditional and one unconditional. Therefore
856 // we know how to update the successor by looking at the target of
857 // the unconditional branch.
858 // If we end up splitting at some point, then, we should update
859 // the liveness information and such. I.e., we would need to
860 // access P here.
861 // The machine verifier should actually make sure such cases
862 // cannot happen.
863 llvm_unreachable("Not yet implemented");
864 }
865 // Otherwise the insertion point is just the current or next
866 // instruction depending on Before. I.e., there is nothing to do
867 // here.
868}
869
870bool RegBankSelect::InstrInsertPoint::isSplit() const {
871 // If the insertion point is after a terminator, we need to split.
872 if (!Before)
873 return Instr.isTerminator();
874 // If we insert before an instruction that is after a terminator,
875 // we are still after a terminator.
876 return Instr.getPrevNode() && Instr.getPrevNode()->isTerminator();
877}
878
879uint64_t RegBankSelect::InstrInsertPoint::frequency(const Pass &P) const {
880 // Even if we need to split, because we insert between terminators,
881 // this split has actually the same frequency as the instruction.
882 const MachineBlockFrequencyInfo *MBFI =
883 P.getAnalysisIfAvailable<MachineBlockFrequencyInfo>();
884 if (!MBFI)
885 return 1;
886 return MBFI->getBlockFreq(Instr.getParent()).getFrequency();
887}
888
889uint64_t RegBankSelect::MBBInsertPoint::frequency(const Pass &P) const {
890 const MachineBlockFrequencyInfo *MBFI =
891 P.getAnalysisIfAvailable<MachineBlockFrequencyInfo>();
892 if (!MBFI)
893 return 1;
894 return MBFI->getBlockFreq(&MBB).getFrequency();
895}
896
897void RegBankSelect::EdgeInsertPoint::materialize() {
898 // If we end up repairing twice at the same place before materializing the
899 // insertion point, we may think we have to split an edge twice.
900 // We should have a factory for the insert point such that identical points
901 // are the same instance.
902 assert(Src.isSuccessor(DstOrSplit) && DstOrSplit->isPredecessor(&Src) &&
903 "This point has already been split");
904 MachineBasicBlock *NewBB = Src.SplitCriticalEdge(DstOrSplit, P);
905 assert(NewBB && "Invalid call to materialize");
906 // We reuse the destination block to hold the information of the new block.
907 DstOrSplit = NewBB;
908}
909
910uint64_t RegBankSelect::EdgeInsertPoint::frequency(const Pass &P) const {
911 const MachineBlockFrequencyInfo *MBFI =
912 P.getAnalysisIfAvailable<MachineBlockFrequencyInfo>();
913 if (!MBFI)
914 return 1;
915 if (WasMaterialized)
916 return MBFI->getBlockFreq(DstOrSplit).getFrequency();
917
918 const MachineBranchProbabilityInfo *MBPI =
919 P.getAnalysisIfAvailable<MachineBranchProbabilityInfo>();
920 if (!MBPI)
921 return 1;
922 // The basic block will be on the edge.
923 return (MBFI->getBlockFreq(&Src) * MBPI->getEdgeProbability(&Src, DstOrSplit))
924 .getFrequency();
925}
926
927bool RegBankSelect::EdgeInsertPoint::canMaterialize() const {
928 // If this is not a critical edge, we should not have used this insert
929 // point. Indeed, either the successor or the predecessor should
930 // have do.
931 assert(Src.succ_size() > 1 && DstOrSplit->pred_size() > 1 &&
932 "Edge is not critical");
933 return Src.canSplitCriticalEdge(DstOrSplit);
934}
935
Quentin Colombetcfd97b92016-05-20 00:35:26 +0000936RegBankSelect::MappingCost::MappingCost(const BlockFrequency &LocalFreq)
Eugene Zelenko76bf48d2017-06-26 22:44:03 +0000937 : LocalFreq(LocalFreq.getFrequency()) {}
Quentin Colombetcfd97b92016-05-20 00:35:26 +0000938
939bool RegBankSelect::MappingCost::addLocalCost(uint64_t Cost) {
940 // Check if this overflows.
941 if (LocalCost + Cost < LocalCost) {
942 saturate();
943 return true;
944 }
945 LocalCost += Cost;
946 return isSaturated();
947}
948
949bool RegBankSelect::MappingCost::addNonLocalCost(uint64_t Cost) {
950 // Check if this overflows.
951 if (NonLocalCost + Cost < NonLocalCost) {
952 saturate();
953 return true;
954 }
955 NonLocalCost += Cost;
956 return isSaturated();
957}
958
959bool RegBankSelect::MappingCost::isSaturated() const {
960 return LocalCost == UINT64_MAX - 1 && NonLocalCost == UINT64_MAX &&
961 LocalFreq == UINT64_MAX;
962}
963
964void RegBankSelect::MappingCost::saturate() {
965 *this = ImpossibleCost();
966 --LocalCost;
967}
968
969RegBankSelect::MappingCost RegBankSelect::MappingCost::ImpossibleCost() {
970 return MappingCost(UINT64_MAX, UINT64_MAX, UINT64_MAX);
971}
972
973bool RegBankSelect::MappingCost::operator<(const MappingCost &Cost) const {
974 // Sort out the easy cases.
975 if (*this == Cost)
976 return false;
977 // If one is impossible to realize the other is cheaper unless it is
978 // impossible as well.
979 if ((*this == ImpossibleCost()) || (Cost == ImpossibleCost()))
980 return (*this == ImpossibleCost()) < (Cost == ImpossibleCost());
981 // If one is saturated the other is cheaper, unless it is saturated
982 // as well.
983 if (isSaturated() || Cost.isSaturated())
984 return isSaturated() < Cost.isSaturated();
985 // At this point we know both costs hold sensible values.
986
987 // If both values have a different base frequency, there is no much
988 // we can do but to scale everything.
989 // However, if they have the same base frequency we can avoid making
990 // complicated computation.
991 uint64_t ThisLocalAdjust;
992 uint64_t OtherLocalAdjust;
993 if (LLVM_LIKELY(LocalFreq == Cost.LocalFreq)) {
994
995 // At this point, we know the local costs are comparable.
996 // Do the case that do not involve potential overflow first.
997 if (NonLocalCost == Cost.NonLocalCost)
998 // Since the non-local costs do not discriminate on the result,
999 // just compare the local costs.
1000 return LocalCost < Cost.LocalCost;
1001
1002 // The base costs are comparable so we may only keep the relative
1003 // value to increase our chances of avoiding overflows.
1004 ThisLocalAdjust = 0;
1005 OtherLocalAdjust = 0;
1006 if (LocalCost < Cost.LocalCost)
1007 OtherLocalAdjust = Cost.LocalCost - LocalCost;
1008 else
1009 ThisLocalAdjust = LocalCost - Cost.LocalCost;
Quentin Colombetcfd97b92016-05-20 00:35:26 +00001010 } else {
1011 ThisLocalAdjust = LocalCost;
1012 OtherLocalAdjust = Cost.LocalCost;
1013 }
1014
1015 // The non-local costs are comparable, just keep the relative value.
1016 uint64_t ThisNonLocalAdjust = 0;
1017 uint64_t OtherNonLocalAdjust = 0;
1018 if (NonLocalCost < Cost.NonLocalCost)
1019 OtherNonLocalAdjust = Cost.NonLocalCost - NonLocalCost;
1020 else
1021 ThisNonLocalAdjust = NonLocalCost - Cost.NonLocalCost;
1022 // Scale everything to make them comparable.
1023 uint64_t ThisScaledCost = ThisLocalAdjust * LocalFreq;
1024 // Check for overflow on that operation.
1025 bool ThisOverflows = ThisLocalAdjust && (ThisScaledCost < ThisLocalAdjust ||
1026 ThisScaledCost < LocalFreq);
1027 uint64_t OtherScaledCost = OtherLocalAdjust * Cost.LocalFreq;
1028 // Check for overflow on the last operation.
1029 bool OtherOverflows =
1030 OtherLocalAdjust &&
1031 (OtherScaledCost < OtherLocalAdjust || OtherScaledCost < Cost.LocalFreq);
1032 // Add the non-local costs.
1033 ThisOverflows |= ThisNonLocalAdjust &&
1034 ThisScaledCost + ThisNonLocalAdjust < ThisNonLocalAdjust;
1035 ThisScaledCost += ThisNonLocalAdjust;
1036 OtherOverflows |= OtherNonLocalAdjust &&
1037 OtherScaledCost + OtherNonLocalAdjust < OtherNonLocalAdjust;
1038 OtherScaledCost += OtherNonLocalAdjust;
1039 // If both overflows, we cannot compare without additional
1040 // precision, e.g., APInt. Just give up on that case.
1041 if (ThisOverflows && OtherOverflows)
1042 return false;
1043 // If one overflows but not the other, we can still compare.
1044 if (ThisOverflows || OtherOverflows)
1045 return ThisOverflows < OtherOverflows;
1046 // Otherwise, just compare the values.
1047 return ThisScaledCost < OtherScaledCost;
1048}
1049
1050bool RegBankSelect::MappingCost::operator==(const MappingCost &Cost) const {
1051 return LocalCost == Cost.LocalCost && NonLocalCost == Cost.NonLocalCost &&
1052 LocalFreq == Cost.LocalFreq;
1053}
Quentin Colombet0b63b312017-01-11 00:48:41 +00001054
Aaron Ballman615eb472017-10-15 14:32:27 +00001055#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Matthias Braun8c209aa2017-01-28 02:02:38 +00001056LLVM_DUMP_METHOD void RegBankSelect::MappingCost::dump() const {
Quentin Colombet0b63b312017-01-11 00:48:41 +00001057 print(dbgs());
1058 dbgs() << '\n';
1059}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001060#endif
Quentin Colombet0b63b312017-01-11 00:48:41 +00001061
1062void RegBankSelect::MappingCost::print(raw_ostream &OS) const {
1063 if (*this == ImpossibleCost()) {
1064 OS << "impossible";
1065 return;
1066 }
1067 if (isSaturated()) {
1068 OS << "saturated";
1069 return;
1070 }
1071 OS << LocalFreq << " * " << LocalCost << " + " << NonLocalCost;
1072}