Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 1 | //==- llvm/CodeGen/GlobalISel/RegBankSelect.cpp - RegBankSelect --*- C++ -*-==// |
Quentin Colombet | 8e8e85c | 2016-04-05 19:06:01 +0000 | [diff] [blame] | 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 |
Quentin Colombet | 8e8e85c | 2016-04-05 19:06:01 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// \file |
| 9 | /// This file implements the RegBankSelect class. |
| 10 | //===----------------------------------------------------------------------===// |
| 11 | |
| 12 | #include "llvm/CodeGen/GlobalISel/RegBankSelect.h" |
Quentin Colombet | cfd97b9 | 2016-05-20 00:35:26 +0000 | [diff] [blame] | 13 | #include "llvm/ADT/PostOrderIterator.h" |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/STLExtras.h" |
| 15 | #include "llvm/ADT/SmallVector.h" |
Tim Northover | 69fa84a | 2016-10-14 22:18:18 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/GlobalISel/LegalizerInfo.h" |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/GlobalISel/RegisterBank.h" |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h" |
Ahmed Bougacha | ae9dade | 2017-02-23 21:05:42 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/GlobalISel/Utils.h" |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Quentin Colombet | 5565075 | 2016-05-20 00:49:10 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |
| 22 | #include "llvm/CodeGen/MachineBranchProbabilityInfo.h" |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineFunction.h" |
| 24 | #include "llvm/CodeGen/MachineInstr.h" |
| 25 | #include "llvm/CodeGen/MachineOperand.h" |
| 26 | #include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h" |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/TargetOpcodes.h" |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/TargetPassConfig.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 31 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Nico Weber | 432a388 | 2018-04-30 14:59:11 +0000 | [diff] [blame] | 32 | #include "llvm/Config/llvm-config.h" |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 33 | #include "llvm/IR/Attributes.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 34 | #include "llvm/IR/Function.h" |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 35 | #include "llvm/Pass.h" |
Quentin Colombet | cfd97b9 | 2016-05-20 00:35:26 +0000 | [diff] [blame] | 36 | #include "llvm/Support/BlockFrequency.h" |
Quentin Colombet | a41272f | 2016-06-08 15:49:23 +0000 | [diff] [blame] | 37 | #include "llvm/Support/CommandLine.h" |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 38 | #include "llvm/Support/Compiler.h" |
Quentin Colombet | e16f561 | 2016-04-07 23:53:55 +0000 | [diff] [blame] | 39 | #include "llvm/Support/Debug.h" |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 40 | #include "llvm/Support/ErrorHandling.h" |
| 41 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 42 | #include <algorithm> |
| 43 | #include <cassert> |
| 44 | #include <cstdint> |
| 45 | #include <limits> |
| 46 | #include <memory> |
| 47 | #include <utility> |
Quentin Colombet | 8e8e85c | 2016-04-05 19:06:01 +0000 | [diff] [blame] | 48 | |
| 49 | #define DEBUG_TYPE "regbankselect" |
| 50 | |
| 51 | using namespace llvm; |
| 52 | |
Quentin Colombet | a41272f | 2016-06-08 15:49:23 +0000 | [diff] [blame] | 53 | static 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 Amini | 732afdd | 2016-10-08 19:41:06 +0000 | [diff] [blame] | 58 | "Use the Greedy mode (best local mapping)"))); |
Quentin Colombet | a41272f | 2016-06-08 15:49:23 +0000 | [diff] [blame] | 59 | |
Quentin Colombet | 8e8e85c | 2016-04-05 19:06:01 +0000 | [diff] [blame] | 60 | char RegBankSelect::ID = 0; |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 61 | |
Quentin Colombet | c13ea88 | 2016-09-23 17:50:06 +0000 | [diff] [blame] | 62 | INITIALIZE_PASS_BEGIN(RegBankSelect, DEBUG_TYPE, |
Quentin Colombet | 25fcef7 | 2016-05-20 17:54:09 +0000 | [diff] [blame] | 63 | "Assign register bank of generic virtual registers", |
| 64 | false, false); |
| 65 | INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo) |
| 66 | INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo) |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 67 | INITIALIZE_PASS_DEPENDENCY(TargetPassConfig) |
Quentin Colombet | c13ea88 | 2016-09-23 17:50:06 +0000 | [diff] [blame] | 68 | INITIALIZE_PASS_END(RegBankSelect, DEBUG_TYPE, |
Quentin Colombet | 25fcef7 | 2016-05-20 17:54:09 +0000 | [diff] [blame] | 69 | "Assign register bank of generic virtual registers", false, |
Tim Northover | 884b47e | 2016-07-26 03:29:18 +0000 | [diff] [blame] | 70 | false) |
Quentin Colombet | 8e8e85c | 2016-04-05 19:06:01 +0000 | [diff] [blame] | 71 | |
Quentin Colombet | 46df722 | 2016-05-20 16:55:35 +0000 | [diff] [blame] | 72 | RegBankSelect::RegBankSelect(Mode RunningMode) |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 73 | : MachineFunctionPass(ID), OptMode(RunningMode) { |
Quentin Colombet | 8e8e85c | 2016-04-05 19:06:01 +0000 | [diff] [blame] | 74 | initializeRegBankSelectPass(*PassRegistry::getPassRegistry()); |
Quentin Colombet | a41272f | 2016-06-08 15:49:23 +0000 | [diff] [blame] | 75 | if (RegBankSelectMode.getNumOccurrences() != 0) { |
| 76 | OptMode = RegBankSelectMode; |
| 77 | if (RegBankSelectMode != RunningMode) |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 78 | LLVM_DEBUG(dbgs() << "RegBankSelect mode overrided by command line\n"); |
Quentin Colombet | a41272f | 2016-06-08 15:49:23 +0000 | [diff] [blame] | 79 | } |
Quentin Colombet | 8e8e85c | 2016-04-05 19:06:01 +0000 | [diff] [blame] | 80 | } |
| 81 | |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 82 | void RegBankSelect::init(MachineFunction &MF) { |
| 83 | RBI = MF.getSubtarget().getRegBankInfo(); |
| 84 | assert(RBI && "Cannot work without RegisterBankInfo"); |
| 85 | MRI = &MF.getRegInfo(); |
Quentin Colombet | aac71a4 | 2016-04-07 21:32:23 +0000 | [diff] [blame] | 86 | TRI = MF.getSubtarget().getRegisterInfo(); |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 87 | TPC = &getAnalysis<TargetPassConfig>(); |
Quentin Colombet | 25fcef7 | 2016-05-20 17:54:09 +0000 | [diff] [blame] | 88 | if (OptMode != Mode::Fast) { |
| 89 | MBFI = &getAnalysis<MachineBlockFrequencyInfo>(); |
| 90 | MBPI = &getAnalysis<MachineBranchProbabilityInfo>(); |
| 91 | } else { |
| 92 | MBFI = nullptr; |
| 93 | MBPI = nullptr; |
| 94 | } |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 95 | MIRBuilder.setMF(MF); |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 96 | MORE = llvm::make_unique<MachineOptimizationRemarkEmitter>(MF, MBFI); |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Quentin Colombet | 25fcef7 | 2016-05-20 17:54:09 +0000 | [diff] [blame] | 99 | void RegBankSelect::getAnalysisUsage(AnalysisUsage &AU) const { |
| 100 | if (OptMode != Mode::Fast) { |
| 101 | // We could preserve the information from these two analysis but |
| 102 | // the APIs do not allow to do so yet. |
| 103 | AU.addRequired<MachineBlockFrequencyInfo>(); |
| 104 | AU.addRequired<MachineBranchProbabilityInfo>(); |
| 105 | } |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 106 | AU.addRequired<TargetPassConfig>(); |
Matthias Braun | 90ad683 | 2018-07-13 00:08:38 +0000 | [diff] [blame] | 107 | getSelectionDAGFallbackAnalysisUsage(AU); |
Quentin Colombet | 25fcef7 | 2016-05-20 17:54:09 +0000 | [diff] [blame] | 108 | MachineFunctionPass::getAnalysisUsage(AU); |
| 109 | } |
| 110 | |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 111 | bool RegBankSelect::assignmentMatch( |
Quentin Colombet | 0d77da4 | 2016-05-20 00:42:57 +0000 | [diff] [blame] | 112 | unsigned Reg, const RegisterBankInfo::ValueMapping &ValMapping, |
| 113 | bool &OnlyAssign) const { |
| 114 | // By default we assume we will have to repair something. |
| 115 | OnlyAssign = false; |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 116 | // Each part of a break down needs to end up in a different register. |
Matt Arsenault | 376f2ef | 2019-01-08 01:25:47 +0000 | [diff] [blame] | 117 | // In other word, Reg assignment does not match. |
Matt Arsenault | 1ac38ba | 2018-12-18 09:27:29 +0000 | [diff] [blame] | 118 | if (ValMapping.NumBreakDowns != 1) |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 119 | return false; |
| 120 | |
Quentin Colombet | 6d6d6af | 2016-04-08 16:48:16 +0000 | [diff] [blame] | 121 | const RegisterBank *CurRegBank = RBI->getRegBank(Reg, *MRI, *TRI); |
| 122 | const RegisterBank *DesiredRegBrank = ValMapping.BreakDown[0].RegBank; |
Quentin Colombet | 0d77da4 | 2016-05-20 00:42:57 +0000 | [diff] [blame] | 123 | // Reg is free of assignment, a simple assignment will make the |
| 124 | // register bank to match. |
| 125 | OnlyAssign = CurRegBank == nullptr; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 126 | LLVM_DEBUG(dbgs() << "Does assignment already match: "; |
| 127 | if (CurRegBank) dbgs() << *CurRegBank; else dbgs() << "none"; |
| 128 | dbgs() << " against "; |
| 129 | assert(DesiredRegBrank && "The mapping must be valid"); |
| 130 | dbgs() << *DesiredRegBrank << '\n';); |
Quentin Colombet | 6d6d6af | 2016-04-08 16:48:16 +0000 | [diff] [blame] | 131 | return CurRegBank == DesiredRegBrank; |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 134 | bool RegBankSelect::repairReg( |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 135 | MachineOperand &MO, const RegisterBankInfo::ValueMapping &ValMapping, |
| 136 | RegBankSelect::RepairingPlacement &RepairPt, |
Quentin Colombet | 06ef4e2 | 2016-06-08 16:24:55 +0000 | [diff] [blame] | 137 | const iterator_range<SmallVectorImpl<unsigned>::const_iterator> &NewVRegs) { |
Quentin Colombet | 0afa7d6 | 2016-09-23 00:14:30 +0000 | [diff] [blame] | 138 | if (ValMapping.NumBreakDowns != 1 && !TPC->isGlobalISelAbortEnabled()) |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 139 | return false; |
Quentin Colombet | 0afa7d6 | 2016-09-23 00:14:30 +0000 | [diff] [blame] | 140 | assert(ValMapping.NumBreakDowns == 1 && "Not yet implemented"); |
Quentin Colombet | f33e365 | 2016-06-08 16:30:55 +0000 | [diff] [blame] | 141 | // An empty range of new register means no repairing. |
Matthias Braun | 9fd397b | 2018-10-31 00:23:23 +0000 | [diff] [blame] | 142 | assert(!empty(NewVRegs) && "We should not have to repair"); |
Quentin Colombet | f33e365 | 2016-06-08 16:30:55 +0000 | [diff] [blame] | 143 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 144 | // Assume we are repairing a use and thus, the original reg will be |
| 145 | // the source of the repairing. |
| 146 | unsigned Src = MO.getReg(); |
| 147 | unsigned Dst = *NewVRegs.begin(); |
Quentin Colombet | 904a2c7 | 2016-04-12 00:12:59 +0000 | [diff] [blame] | 148 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 149 | // If we repair a definition, swap the source and destination for |
| 150 | // the repairing. |
| 151 | if (MO.isDef()) |
Quentin Colombet | 904a2c7 | 2016-04-12 00:12:59 +0000 | [diff] [blame] | 152 | std::swap(Src, Dst); |
Quentin Colombet | 904a2c7 | 2016-04-12 00:12:59 +0000 | [diff] [blame] | 153 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 154 | assert((RepairPt.getNumInsertPoints() == 1 || |
| 155 | TargetRegisterInfo::isPhysicalRegister(Dst)) && |
| 156 | "We are about to create several defs for Dst"); |
Quentin Colombet | 904a2c7 | 2016-04-12 00:12:59 +0000 | [diff] [blame] | 157 | |
Tim Northover | 849fcca | 2017-06-27 21:41:40 +0000 | [diff] [blame] | 158 | // Build the instruction used to repair, then clone it at the right |
| 159 | // places. Avoiding buildCopy bypasses the check that Src and Dst have the |
| 160 | // same types because the type is a placeholder when this function is called. |
| 161 | MachineInstr *MI = |
| 162 | MIRBuilder.buildInstrNoInsert(TargetOpcode::COPY).addDef(Dst).addUse(Src); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 163 | LLVM_DEBUG(dbgs() << "Copy: " << printReg(Src) << " to: " << printReg(Dst) |
| 164 | << '\n'); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 165 | // TODO: |
| 166 | // Check if MI is legal. if not, we need to legalize all the |
| 167 | // instructions we are going to insert. |
| 168 | std::unique_ptr<MachineInstr *[]> NewInstrs( |
| 169 | new MachineInstr *[RepairPt.getNumInsertPoints()]); |
| 170 | bool IsFirst = true; |
| 171 | unsigned Idx = 0; |
| 172 | for (const std::unique_ptr<InsertPoint> &InsertPt : RepairPt) { |
| 173 | MachineInstr *CurMI; |
| 174 | if (IsFirst) |
| 175 | CurMI = MI; |
| 176 | else |
| 177 | CurMI = MIRBuilder.getMF().CloneMachineInstr(MI); |
| 178 | InsertPt->insert(*CurMI); |
| 179 | NewInstrs[Idx++] = CurMI; |
| 180 | IsFirst = false; |
| 181 | } |
| 182 | // TODO: |
| 183 | // Legalize NewInstrs if need be. |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 184 | return true; |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 185 | } |
| 186 | |
Quentin Colombet | f2723a2 | 2016-05-21 01:43:25 +0000 | [diff] [blame] | 187 | uint64_t RegBankSelect::getRepairCost( |
| 188 | const MachineOperand &MO, |
| 189 | const RegisterBankInfo::ValueMapping &ValMapping) const { |
| 190 | assert(MO.isReg() && "We should only repair register operand"); |
Quentin Colombet | 0afa7d6 | 2016-09-23 00:14:30 +0000 | [diff] [blame] | 191 | assert(ValMapping.NumBreakDowns && "Nothing to map??"); |
Quentin Colombet | f2723a2 | 2016-05-21 01:43:25 +0000 | [diff] [blame] | 192 | |
Quentin Colombet | 0afa7d6 | 2016-09-23 00:14:30 +0000 | [diff] [blame] | 193 | bool IsSameNumOfValues = ValMapping.NumBreakDowns == 1; |
Quentin Colombet | f2723a2 | 2016-05-21 01:43:25 +0000 | [diff] [blame] | 194 | const RegisterBank *CurRegBank = RBI->getRegBank(MO.getReg(), *MRI, *TRI); |
| 195 | // If MO does not have a register bank, we should have just been |
| 196 | // able to set one unless we have to break the value down. |
| 197 | assert((!IsSameNumOfValues || CurRegBank) && "We should not have to repair"); |
| 198 | // Def: Val <- NewDefs |
| 199 | // Same number of values: copy |
| 200 | // Different number: Val = build_sequence Defs1, Defs2, ... |
| 201 | // Use: NewSources <- Val. |
| 202 | // Same number of values: copy. |
| 203 | // Different number: Src1, Src2, ... = |
| 204 | // extract_value Val, Src1Begin, Src1Len, Src2Begin, Src2Len, ... |
| 205 | // We should remember that this value is available somewhere else to |
| 206 | // coalesce the value. |
| 207 | |
| 208 | if (IsSameNumOfValues) { |
| 209 | const RegisterBank *DesiredRegBrank = ValMapping.BreakDown[0].RegBank; |
| 210 | // If we repair a definition, swap the source and destination for |
| 211 | // the repairing. |
| 212 | if (MO.isDef()) |
| 213 | std::swap(CurRegBank, DesiredRegBrank); |
Quentin Colombet | d6886bd | 2016-06-08 17:39:43 +0000 | [diff] [blame] | 214 | // TODO: It may be possible to actually avoid the copy. |
| 215 | // If we repair something where the source is defined by a copy |
| 216 | // and the source of that copy is on the right bank, we can reuse |
| 217 | // it for free. |
| 218 | // E.g., |
| 219 | // RegToRepair<BankA> = copy AlternativeSrc<BankB> |
| 220 | // = op RegToRepair<BankA> |
| 221 | // We can simply propagate AlternativeSrc instead of copying RegToRepair |
| 222 | // into a new virtual register. |
| 223 | // We would also need to propagate this information in the |
| 224 | // repairing placement. |
Quentin Colombet | 4a6b750 | 2017-10-13 21:16:15 +0000 | [diff] [blame] | 225 | unsigned Cost = RBI->copyCost(*DesiredRegBrank, *CurRegBank, |
| 226 | RBI->getSizeInBits(MO.getReg(), *MRI, *TRI)); |
Quentin Colombet | f2723a2 | 2016-05-21 01:43:25 +0000 | [diff] [blame] | 227 | // TODO: use a dedicated constant for ImpossibleCost. |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 228 | if (Cost != std::numeric_limits<unsigned>::max()) |
Quentin Colombet | f2723a2 | 2016-05-21 01:43:25 +0000 | [diff] [blame] | 229 | return Cost; |
Quentin Colombet | f2723a2 | 2016-05-21 01:43:25 +0000 | [diff] [blame] | 230 | // Return the legalization cost of that repairing. |
| 231 | } |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 232 | return std::numeric_limits<unsigned>::max(); |
Quentin Colombet | f2723a2 | 2016-05-21 01:43:25 +0000 | [diff] [blame] | 233 | } |
| 234 | |
Quentin Colombet | 245994d | 2017-05-05 22:48:22 +0000 | [diff] [blame] | 235 | const RegisterBankInfo::InstructionMapping &RegBankSelect::findBestMapping( |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 236 | MachineInstr &MI, RegisterBankInfo::InstructionMappings &PossibleMappings, |
| 237 | SmallVectorImpl<RepairingPlacement> &RepairPts) { |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 238 | assert(!PossibleMappings.empty() && |
| 239 | "Do not know how to map this instruction"); |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 240 | |
Quentin Colombet | 245994d | 2017-05-05 22:48:22 +0000 | [diff] [blame] | 241 | const RegisterBankInfo::InstructionMapping *BestMapping = nullptr; |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 242 | MappingCost Cost = MappingCost::ImpossibleCost(); |
| 243 | SmallVector<RepairingPlacement, 4> LocalRepairPts; |
Quentin Colombet | 245994d | 2017-05-05 22:48:22 +0000 | [diff] [blame] | 244 | for (const RegisterBankInfo::InstructionMapping *CurMapping : |
| 245 | PossibleMappings) { |
| 246 | MappingCost CurCost = |
| 247 | computeMapping(MI, *CurMapping, LocalRepairPts, &Cost); |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 248 | if (CurCost < Cost) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 249 | LLVM_DEBUG(dbgs() << "New best: " << CurCost << '\n'); |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 250 | Cost = CurCost; |
Quentin Colombet | 245994d | 2017-05-05 22:48:22 +0000 | [diff] [blame] | 251 | BestMapping = CurMapping; |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 252 | RepairPts.clear(); |
| 253 | for (RepairingPlacement &RepairPt : LocalRepairPts) |
| 254 | RepairPts.emplace_back(std::move(RepairPt)); |
| 255 | } |
| 256 | } |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 257 | if (!BestMapping && !TPC->isGlobalISelAbortEnabled()) { |
| 258 | // If none of the mapping worked that means they are all impossible. |
| 259 | // Thus, pick the first one and set an impossible repairing point. |
| 260 | // It will trigger the failed isel mode. |
Quentin Colombet | 245994d | 2017-05-05 22:48:22 +0000 | [diff] [blame] | 261 | BestMapping = *PossibleMappings.begin(); |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 262 | RepairPts.emplace_back( |
| 263 | RepairingPlacement(MI, 0, *TRI, *this, RepairingPlacement::Impossible)); |
| 264 | } else |
| 265 | assert(BestMapping && "No suitable mapping for instruction"); |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 266 | return *BestMapping; |
| 267 | } |
| 268 | |
Quentin Colombet | f75c2bf | 2016-05-20 16:36:12 +0000 | [diff] [blame] | 269 | void RegBankSelect::tryAvoidingSplit( |
| 270 | RegBankSelect::RepairingPlacement &RepairPt, const MachineOperand &MO, |
| 271 | const RegisterBankInfo::ValueMapping &ValMapping) const { |
| 272 | const MachineInstr &MI = *MO.getParent(); |
| 273 | assert(RepairPt.hasSplit() && "We should not have to adjust for split"); |
| 274 | // Splitting should only occur for PHIs or between terminators, |
| 275 | // because we only do local repairing. |
| 276 | assert((MI.isPHI() || MI.isTerminator()) && "Why do we split?"); |
| 277 | |
| 278 | assert(&MI.getOperand(RepairPt.getOpIdx()) == &MO && |
| 279 | "Repairing placement does not match operand"); |
| 280 | |
| 281 | // If we need splitting for phis, that means it is because we |
| 282 | // could not find an insertion point before the terminators of |
| 283 | // the predecessor block for this argument. In other words, |
| 284 | // the input value is defined by one of the terminators. |
| 285 | assert((!MI.isPHI() || !MO.isDef()) && "Need split for phi def?"); |
| 286 | |
| 287 | // We split to repair the use of a phi or a terminator. |
| 288 | if (!MO.isDef()) { |
| 289 | if (MI.isTerminator()) { |
| 290 | assert(&MI != &(*MI.getParent()->getFirstTerminator()) && |
| 291 | "Need to split for the first terminator?!"); |
| 292 | } else { |
| 293 | // For the PHI case, the split may not be actually required. |
| 294 | // In the copy case, a phi is already a copy on the incoming edge, |
| 295 | // therefore there is no need to split. |
Quentin Colombet | 0afa7d6 | 2016-09-23 00:14:30 +0000 | [diff] [blame] | 296 | if (ValMapping.NumBreakDowns == 1) |
Quentin Colombet | f75c2bf | 2016-05-20 16:36:12 +0000 | [diff] [blame] | 297 | // This is a already a copy, there is nothing to do. |
| 298 | RepairPt.switchTo(RepairingPlacement::RepairingKind::Reassign); |
| 299 | } |
| 300 | return; |
| 301 | } |
| 302 | |
| 303 | // At this point, we need to repair a defintion of a terminator. |
| 304 | |
| 305 | // Technically we need to fix the def of MI on all outgoing |
| 306 | // edges of MI to keep the repairing local. In other words, we |
| 307 | // will create several definitions of the same register. This |
| 308 | // does not work for SSA unless that definition is a physical |
| 309 | // register. |
| 310 | // However, there are other cases where we can get away with |
| 311 | // that while still keeping the repairing local. |
| 312 | assert(MI.isTerminator() && MO.isDef() && |
| 313 | "This code is for the def of a terminator"); |
| 314 | |
| 315 | // Since we use RPO traversal, if we need to repair a definition |
| 316 | // this means this definition could be: |
| 317 | // 1. Used by PHIs (i.e., this VReg has been visited as part of the |
| 318 | // uses of a phi.), or |
| 319 | // 2. Part of a target specific instruction (i.e., the target applied |
| 320 | // some register class constraints when creating the instruction.) |
| 321 | // If the constraints come for #2, the target said that another mapping |
| 322 | // is supported so we may just drop them. Indeed, if we do not change |
| 323 | // the number of registers holding that value, the uses will get fixed |
| 324 | // when we get to them. |
| 325 | // Uses in PHIs may have already been proceeded though. |
| 326 | // If the constraints come for #1, then, those are weak constraints and |
| 327 | // no actual uses may rely on them. However, the problem remains mainly |
| 328 | // the same as for #2. If the value stays in one register, we could |
| 329 | // just switch the register bank of the definition, but we would need to |
| 330 | // account for a repairing cost for each phi we silently change. |
| 331 | // |
| 332 | // In any case, if the value needs to be broken down into several |
| 333 | // registers, the repairing is not local anymore as we need to patch |
| 334 | // every uses to rebuild the value in just one register. |
| 335 | // |
| 336 | // To summarize: |
| 337 | // - If the value is in a physical register, we can do the split and |
| 338 | // fix locally. |
| 339 | // Otherwise if the value is in a virtual register: |
| 340 | // - If the value remains in one register, we do not have to split |
| 341 | // just switching the register bank would do, but we need to account |
| 342 | // in the repairing cost all the phi we changed. |
| 343 | // - If the value spans several registers, then we cannot do a local |
| 344 | // repairing. |
| 345 | |
| 346 | // Check if this is a physical or virtual register. |
| 347 | unsigned Reg = MO.getReg(); |
| 348 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
| 349 | // We are going to split every outgoing edges. |
| 350 | // Check that this is possible. |
| 351 | // FIXME: The machine representation is currently broken |
| 352 | // since it also several terminators in one basic block. |
| 353 | // Because of that we would technically need a way to get |
| 354 | // the targets of just one terminator to know which edges |
| 355 | // we have to split. |
| 356 | // Assert that we do not hit the ill-formed representation. |
| 357 | |
| 358 | // If there are other terminators before that one, some of |
| 359 | // the outgoing edges may not be dominated by this definition. |
| 360 | assert(&MI == &(*MI.getParent()->getFirstTerminator()) && |
| 361 | "Do not know which outgoing edges are relevant"); |
| 362 | const MachineInstr *Next = MI.getNextNode(); |
| 363 | assert((!Next || Next->isUnconditionalBranch()) && |
| 364 | "Do not know where each terminator ends up"); |
| 365 | if (Next) |
| 366 | // If the next terminator uses Reg, this means we have |
| 367 | // to split right after MI and thus we need a way to ask |
| 368 | // which outgoing edges are affected. |
| 369 | assert(!Next->readsRegister(Reg) && "Need to split between terminators"); |
| 370 | // We will split all the edges and repair there. |
| 371 | } else { |
| 372 | // This is a virtual register defined by a terminator. |
Quentin Colombet | 0afa7d6 | 2016-09-23 00:14:30 +0000 | [diff] [blame] | 373 | if (ValMapping.NumBreakDowns == 1) { |
Quentin Colombet | f75c2bf | 2016-05-20 16:36:12 +0000 | [diff] [blame] | 374 | // There is nothing to repair, but we may actually lie on |
| 375 | // the repairing cost because of the PHIs already proceeded |
| 376 | // as already stated. |
| 377 | // Though the code will be correct. |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 378 | assert(false && "Repairing cost may not be accurate"); |
Quentin Colombet | f75c2bf | 2016-05-20 16:36:12 +0000 | [diff] [blame] | 379 | } else { |
| 380 | // We need to do non-local repairing. Basically, patch all |
| 381 | // the uses (i.e., phis) that we already proceeded. |
| 382 | // For now, just say this mapping is not possible. |
| 383 | RepairPt.switchTo(RepairingPlacement::RepairingKind::Impossible); |
| 384 | } |
| 385 | } |
| 386 | } |
| 387 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 388 | RegBankSelect::MappingCost RegBankSelect::computeMapping( |
| 389 | MachineInstr &MI, const RegisterBankInfo::InstructionMapping &InstrMapping, |
Quentin Colombet | 6e80dbc | 2016-05-20 18:00:46 +0000 | [diff] [blame] | 390 | SmallVectorImpl<RepairingPlacement> &RepairPts, |
| 391 | const RegBankSelect::MappingCost *BestCost) { |
| 392 | assert((MBFI || !BestCost) && "Costs comparison require MBFI"); |
Quentin Colombet | e16f561 | 2016-04-07 23:53:55 +0000 | [diff] [blame] | 393 | |
Tim Northover | c1a2385 | 2016-12-06 18:38:38 +0000 | [diff] [blame] | 394 | if (!InstrMapping.isValid()) |
| 395 | return MappingCost::ImpossibleCost(); |
| 396 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 397 | // If mapped with InstrMapping, MI will have the recorded cost. |
Quentin Colombet | 25fcef7 | 2016-05-20 17:54:09 +0000 | [diff] [blame] | 398 | MappingCost Cost(MBFI ? MBFI->getBlockFreq(MI.getParent()) : 1); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 399 | bool Saturated = Cost.addLocalCost(InstrMapping.getCost()); |
| 400 | assert(!Saturated && "Possible mapping saturated the cost"); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 401 | LLVM_DEBUG(dbgs() << "Evaluating mapping cost for: " << MI); |
| 402 | LLVM_DEBUG(dbgs() << "With: " << InstrMapping << '\n'); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 403 | RepairPts.clear(); |
Quentin Colombet | 0b63b31 | 2017-01-11 00:48:41 +0000 | [diff] [blame] | 404 | if (BestCost && Cost > *BestCost) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 405 | LLVM_DEBUG(dbgs() << "Mapping is too expensive from the start\n"); |
Quentin Colombet | 6e80dbc | 2016-05-20 18:00:46 +0000 | [diff] [blame] | 406 | return Cost; |
Quentin Colombet | 0b63b31 | 2017-01-11 00:48:41 +0000 | [diff] [blame] | 407 | } |
Quentin Colombet | 6e80dbc | 2016-05-20 18:00:46 +0000 | [diff] [blame] | 408 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 409 | // Moreover, to realize this mapping, the register bank of each operand must |
| 410 | // match this mapping. In other words, we may need to locally reassign the |
| 411 | // register banks. Account for that repairing cost as well. |
| 412 | // In this context, local means in the surrounding of MI. |
Quentin Colombet | 1b01677 | 2016-09-29 19:51:46 +0000 | [diff] [blame] | 413 | for (unsigned OpIdx = 0, EndOpIdx = InstrMapping.getNumOperands(); |
| 414 | OpIdx != EndOpIdx; ++OpIdx) { |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 415 | const MachineOperand &MO = MI.getOperand(OpIdx); |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 416 | if (!MO.isReg()) |
| 417 | continue; |
| 418 | unsigned Reg = MO.getReg(); |
| 419 | if (!Reg) |
| 420 | continue; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 421 | LLVM_DEBUG(dbgs() << "Opd" << OpIdx << '\n'); |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 422 | const RegisterBankInfo::ValueMapping &ValMapping = |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 423 | InstrMapping.getOperandMapping(OpIdx); |
| 424 | // If Reg is already properly mapped, this is free. |
| 425 | bool Assign; |
| 426 | if (assignmentMatch(Reg, ValMapping, Assign)) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 427 | LLVM_DEBUG(dbgs() << "=> is free (match).\n"); |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 428 | continue; |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 429 | } |
| 430 | if (Assign) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 431 | LLVM_DEBUG(dbgs() << "=> is free (simple assignment).\n"); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 432 | RepairPts.emplace_back(RepairingPlacement(MI, OpIdx, *TRI, *this, |
| 433 | RepairingPlacement::Reassign)); |
| 434 | continue; |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 435 | } |
Quentin Colombet | 904a2c7 | 2016-04-12 00:12:59 +0000 | [diff] [blame] | 436 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 437 | // Find the insertion point for the repairing code. |
| 438 | RepairPts.emplace_back( |
| 439 | RepairingPlacement(MI, OpIdx, *TRI, *this, RepairingPlacement::Insert)); |
| 440 | RepairingPlacement &RepairPt = RepairPts.back(); |
| 441 | |
Quentin Colombet | f75c2bf | 2016-05-20 16:36:12 +0000 | [diff] [blame] | 442 | // If we need to split a basic block to materialize this insertion point, |
| 443 | // we may give a higher cost to this mapping. |
| 444 | // Nevertheless, we may get away with the split, so try that first. |
| 445 | if (RepairPt.hasSplit()) |
| 446 | tryAvoidingSplit(RepairPt, MO, ValMapping); |
| 447 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 448 | // Check that the materialization of the repairing is possible. |
Quentin Colombet | 0b63b31 | 2017-01-11 00:48:41 +0000 | [diff] [blame] | 449 | if (!RepairPt.canMaterialize()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 450 | LLVM_DEBUG(dbgs() << "Mapping involves impossible repairing\n"); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 451 | return MappingCost::ImpossibleCost(); |
Quentin Colombet | 0b63b31 | 2017-01-11 00:48:41 +0000 | [diff] [blame] | 452 | } |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 453 | |
| 454 | // Account for the split cost and repair cost. |
Quentin Colombet | 6e80dbc | 2016-05-20 18:00:46 +0000 | [diff] [blame] | 455 | // Unless the cost is already saturated or we do not care about the cost. |
| 456 | if (!BestCost || Saturated) |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 457 | continue; |
| 458 | |
Quentin Colombet | 6e80dbc | 2016-05-20 18:00:46 +0000 | [diff] [blame] | 459 | // To get accurate information we need MBFI and MBPI. |
| 460 | // Thus, if we end up here this information should be here. |
| 461 | assert(MBFI && MBPI && "Cost computation requires MBFI and MBPI"); |
| 462 | |
Quentin Colombet | 6feaf820 | 2016-06-08 15:40:32 +0000 | [diff] [blame] | 463 | // FIXME: We will have to rework the repairing cost model. |
| 464 | // The repairing cost depends on the register bank that MO has. |
| 465 | // However, when we break down the value into different values, |
| 466 | // MO may not have a register bank while still needing repairing. |
| 467 | // For the fast mode, we don't compute the cost so that is fine, |
| 468 | // but still for the repairing code, we will have to make a choice. |
| 469 | // For the greedy mode, we should choose greedily what is the best |
| 470 | // choice based on the next use of MO. |
| 471 | |
Quentin Colombet | f2723a2 | 2016-05-21 01:43:25 +0000 | [diff] [blame] | 472 | // Sums up the repairing cost of MO at each insertion point. |
| 473 | uint64_t RepairCost = getRepairCost(MO, ValMapping); |
Tom Stellard | 049e7e0 | 2017-05-15 09:52:33 +0000 | [diff] [blame] | 474 | |
| 475 | // This is an impossible to repair cost. |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 476 | if (RepairCost == std::numeric_limits<unsigned>::max()) |
Tom Stellard | 179757e | 2018-07-25 03:08:35 +0000 | [diff] [blame] | 477 | return MappingCost::ImpossibleCost(); |
Tom Stellard | 049e7e0 | 2017-05-15 09:52:33 +0000 | [diff] [blame] | 478 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 479 | // Bias used for splitting: 5%. |
| 480 | const uint64_t PercentageForBias = 5; |
| 481 | uint64_t Bias = (RepairCost * PercentageForBias + 99) / 100; |
| 482 | // We should not need more than a couple of instructions to repair |
| 483 | // an assignment. In other words, the computation should not |
| 484 | // overflow because the repairing cost is free of basic block |
| 485 | // frequency. |
| 486 | assert(((RepairCost < RepairCost * PercentageForBias) && |
| 487 | (RepairCost * PercentageForBias < |
| 488 | RepairCost * PercentageForBias + 99)) && |
| 489 | "Repairing involves more than a billion of instructions?!"); |
| 490 | for (const std::unique_ptr<InsertPoint> &InsertPt : RepairPt) { |
| 491 | assert(InsertPt->canMaterialize() && "We should not have made it here"); |
| 492 | // We will applied some basic block frequency and those uses uint64_t. |
| 493 | if (!InsertPt->isSplit()) |
| 494 | Saturated = Cost.addLocalCost(RepairCost); |
| 495 | else { |
| 496 | uint64_t CostForInsertPt = RepairCost; |
| 497 | // Again we shouldn't overflow here givent that |
| 498 | // CostForInsertPt is frequency free at this point. |
| 499 | assert(CostForInsertPt + Bias > CostForInsertPt && |
| 500 | "Repairing + split bias overflows"); |
| 501 | CostForInsertPt += Bias; |
| 502 | uint64_t PtCost = InsertPt->frequency(*this) * CostForInsertPt; |
| 503 | // Check if we just overflowed. |
| 504 | if ((Saturated = PtCost < CostForInsertPt)) |
| 505 | Cost.saturate(); |
| 506 | else |
| 507 | Saturated = Cost.addNonLocalCost(PtCost); |
| 508 | } |
Quentin Colombet | 6e80dbc | 2016-05-20 18:00:46 +0000 | [diff] [blame] | 509 | |
| 510 | // Stop looking into what it takes to repair, this is already |
| 511 | // too expensive. |
Quentin Colombet | 0b63b31 | 2017-01-11 00:48:41 +0000 | [diff] [blame] | 512 | if (BestCost && Cost > *BestCost) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 513 | LLVM_DEBUG(dbgs() << "Mapping is too expensive, stop processing\n"); |
Quentin Colombet | 6e80dbc | 2016-05-20 18:00:46 +0000 | [diff] [blame] | 514 | return Cost; |
Quentin Colombet | 0b63b31 | 2017-01-11 00:48:41 +0000 | [diff] [blame] | 515 | } |
Quentin Colombet | 6e80dbc | 2016-05-20 18:00:46 +0000 | [diff] [blame] | 516 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 517 | // No need to accumulate more cost information. |
| 518 | // We need to still gather the repairing information though. |
| 519 | if (Saturated) |
| 520 | break; |
| 521 | } |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 522 | } |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 523 | LLVM_DEBUG(dbgs() << "Total cost is: " << Cost << "\n"); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 524 | return Cost; |
| 525 | } |
| 526 | |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 527 | bool RegBankSelect::applyMapping( |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 528 | MachineInstr &MI, const RegisterBankInfo::InstructionMapping &InstrMapping, |
| 529 | SmallVectorImpl<RegBankSelect::RepairingPlacement> &RepairPts) { |
Matt Arsenault | 376f2ef | 2019-01-08 01:25:47 +0000 | [diff] [blame] | 530 | // OpdMapper will hold all the information needed for the rewriting. |
Quentin Colombet | f33e365 | 2016-06-08 16:30:55 +0000 | [diff] [blame] | 531 | RegisterBankInfo::OperandsMapper OpdMapper(MI, InstrMapping, *MRI); |
| 532 | |
Quentin Colombet | ec5c93d | 2016-06-08 16:45:04 +0000 | [diff] [blame] | 533 | // First, place the repairing code. |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 534 | for (RepairingPlacement &RepairPt : RepairPts) { |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 535 | if (!RepairPt.canMaterialize() || |
| 536 | RepairPt.getKind() == RepairingPlacement::Impossible) |
| 537 | return false; |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 538 | assert(RepairPt.getKind() != RepairingPlacement::None && |
| 539 | "This should not make its way in the list"); |
| 540 | unsigned OpIdx = RepairPt.getOpIdx(); |
| 541 | MachineOperand &MO = MI.getOperand(OpIdx); |
| 542 | const RegisterBankInfo::ValueMapping &ValMapping = |
| 543 | InstrMapping.getOperandMapping(OpIdx); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 544 | unsigned Reg = MO.getReg(); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 545 | |
| 546 | switch (RepairPt.getKind()) { |
| 547 | case RepairingPlacement::Reassign: |
Quentin Colombet | 0afa7d6 | 2016-09-23 00:14:30 +0000 | [diff] [blame] | 548 | assert(ValMapping.NumBreakDowns == 1 && |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 549 | "Reassignment should only be for simple mapping"); |
| 550 | MRI->setRegBank(Reg, *ValMapping.BreakDown[0].RegBank); |
| 551 | break; |
| 552 | case RepairingPlacement::Insert: |
Quentin Colombet | f33e365 | 2016-06-08 16:30:55 +0000 | [diff] [blame] | 553 | OpdMapper.createVRegs(OpIdx); |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 554 | if (!repairReg(MO, ValMapping, RepairPt, OpdMapper.getVRegs(OpIdx))) |
| 555 | return false; |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 556 | break; |
| 557 | default: |
| 558 | llvm_unreachable("Other kind should not happen"); |
| 559 | } |
| 560 | } |
Tim Northover | 849fcca | 2017-06-27 21:41:40 +0000 | [diff] [blame] | 561 | |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 562 | // Second, rewrite the instruction. |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 563 | LLVM_DEBUG(dbgs() << "Actual mapping of the operands: " << OpdMapper << '\n'); |
Quentin Colombet | ec5c93d | 2016-06-08 16:45:04 +0000 | [diff] [blame] | 564 | RBI->applyMapping(OpdMapper); |
Tim Northover | 849fcca | 2017-06-27 21:41:40 +0000 | [diff] [blame] | 565 | |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 566 | return true; |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 567 | } |
| 568 | |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 569 | bool RegBankSelect::assignInstr(MachineInstr &MI) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 570 | LLVM_DEBUG(dbgs() << "Assign: " << MI); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 571 | // Remember the repairing placement for all the operands. |
| 572 | SmallVector<RepairingPlacement, 4> RepairPts; |
| 573 | |
Quentin Colombet | 245994d | 2017-05-05 22:48:22 +0000 | [diff] [blame] | 574 | const RegisterBankInfo::InstructionMapping *BestMapping; |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 575 | if (OptMode == RegBankSelect::Mode::Fast) { |
Quentin Colombet | 245994d | 2017-05-05 22:48:22 +0000 | [diff] [blame] | 576 | BestMapping = &RBI->getInstrMapping(MI); |
| 577 | MappingCost DefaultCost = computeMapping(MI, *BestMapping, RepairPts); |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 578 | (void)DefaultCost; |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 579 | if (DefaultCost == MappingCost::ImpossibleCost()) |
| 580 | return false; |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 581 | } else { |
| 582 | RegisterBankInfo::InstructionMappings PossibleMappings = |
| 583 | RBI->getInstrPossibleMappings(MI); |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 584 | if (PossibleMappings.empty()) |
| 585 | return false; |
Quentin Colombet | 245994d | 2017-05-05 22:48:22 +0000 | [diff] [blame] | 586 | BestMapping = &findBestMapping(MI, PossibleMappings, RepairPts); |
Quentin Colombet | 79fe1be | 2016-05-20 18:37:33 +0000 | [diff] [blame] | 587 | } |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 588 | // Make sure the mapping is valid for MI. |
Quentin Colombet | 245994d | 2017-05-05 22:48:22 +0000 | [diff] [blame] | 589 | assert(BestMapping->verify(MI) && "Invalid instruction mapping"); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 590 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 591 | LLVM_DEBUG(dbgs() << "Best Mapping: " << *BestMapping << '\n'); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 592 | |
Quentin Colombet | 9400bfb | 2016-06-08 21:55:29 +0000 | [diff] [blame] | 593 | // After this call, MI may not be valid anymore. |
| 594 | // Do not use it. |
Quentin Colombet | 245994d | 2017-05-05 22:48:22 +0000 | [diff] [blame] | 595 | return applyMapping(MI, *BestMapping, RepairPts); |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 596 | } |
| 597 | |
Quentin Colombet | 8e8e85c | 2016-04-05 19:06:01 +0000 | [diff] [blame] | 598 | bool RegBankSelect::runOnMachineFunction(MachineFunction &MF) { |
Quentin Colombet | 6049524 | 2016-08-27 00:18:24 +0000 | [diff] [blame] | 599 | // If the ISel pipeline failed, do not bother running that pass. |
| 600 | if (MF.getProperties().hasProperty( |
| 601 | MachineFunctionProperties::Property::FailedISel)) |
| 602 | return false; |
| 603 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 604 | LLVM_DEBUG(dbgs() << "Assign register banks for: " << MF.getName() << '\n'); |
Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 605 | const Function &F = MF.getFunction(); |
Quentin Colombet | a553012 | 2016-05-20 17:36:54 +0000 | [diff] [blame] | 606 | Mode SaveOptMode = OptMode; |
Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 607 | if (F.hasFnAttribute(Attribute::OptimizeNone)) |
Quentin Colombet | a553012 | 2016-05-20 17:36:54 +0000 | [diff] [blame] | 608 | OptMode = Mode::Fast; |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 609 | init(MF); |
Ahmed Bougacha | 24d0d4d | 2016-08-02 15:10:32 +0000 | [diff] [blame] | 610 | |
| 611 | #ifndef NDEBUG |
| 612 | // Check that our input is fully legal: we require the function to have the |
| 613 | // Legalized property, so it should be. |
Roman Tereshin | 2b94972 | 2018-03-01 00:27:48 +0000 | [diff] [blame] | 614 | // FIXME: This should be in the MachineVerifier. |
| 615 | if (!DisableGISelLegalityCheck) |
| 616 | if (const MachineInstr *MI = machineFunctionIsIllegal(MF)) { |
| 617 | reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", |
| 618 | "instruction is not legal", *MI); |
| 619 | return false; |
Ahmed Bougacha | 24d0d4d | 2016-08-02 15:10:32 +0000 | [diff] [blame] | 620 | } |
Ahmed Bougacha | 24d0d4d | 2016-08-02 15:10:32 +0000 | [diff] [blame] | 621 | #endif |
| 622 | |
Quentin Colombet | 40ad573 | 2016-04-07 18:19:27 +0000 | [diff] [blame] | 623 | // Walk the function and assign register banks to all operands. |
Quentin Colombet | ab8c21f | 2016-04-08 17:19:10 +0000 | [diff] [blame] | 624 | // Use a RPOT to make sure all registers are assigned before we choose |
| 625 | // the best mapping of the current instruction. |
| 626 | ReversePostOrderTraversal<MachineFunction*> RPOT(&MF); |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 627 | for (MachineBasicBlock *MBB : RPOT) { |
| 628 | // Set a sensible insertion point so that subsequent calls to |
| 629 | // MIRBuilder. |
| 630 | MIRBuilder.setMBB(*MBB); |
Quentin Colombet | ec5c93d | 2016-06-08 16:45:04 +0000 | [diff] [blame] | 631 | for (MachineBasicBlock::iterator MII = MBB->begin(), End = MBB->end(); |
| 632 | MII != End;) { |
| 633 | // MI might be invalidated by the assignment, so move the |
| 634 | // iterator before hand. |
Ahmed Bougacha | 45eb3b9 | 2016-08-02 11:41:16 +0000 | [diff] [blame] | 635 | MachineInstr &MI = *MII++; |
| 636 | |
| 637 | // Ignore target-specific instructions: they should use proper regclasses. |
| 638 | if (isTargetSpecificOpcode(MI.getOpcode())) |
| 639 | continue; |
| 640 | |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 641 | if (!assignInstr(MI)) { |
Ahmed Bougacha | ae9dade | 2017-02-23 21:05:42 +0000 | [diff] [blame] | 642 | reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", |
| 643 | "unable to map instruction", MI); |
Quentin Colombet | acb857b | 2016-08-27 02:38:27 +0000 | [diff] [blame] | 644 | return false; |
| 645 | } |
Quentin Colombet | ec5c93d | 2016-06-08 16:45:04 +0000 | [diff] [blame] | 646 | } |
Quentin Colombet | d84d00b | 2016-05-20 00:55:51 +0000 | [diff] [blame] | 647 | } |
Quentin Colombet | a553012 | 2016-05-20 17:36:54 +0000 | [diff] [blame] | 648 | OptMode = SaveOptMode; |
Quentin Colombet | 8e8e85c | 2016-04-05 19:06:01 +0000 | [diff] [blame] | 649 | return false; |
| 650 | } |
Quentin Colombet | cfd97b9 | 2016-05-20 00:35:26 +0000 | [diff] [blame] | 651 | |
| 652 | //------------------------------------------------------------------------------ |
Quentin Colombet | 5565075 | 2016-05-20 00:49:10 +0000 | [diff] [blame] | 653 | // Helper Classes Implementation |
Quentin Colombet | cfd97b9 | 2016-05-20 00:35:26 +0000 | [diff] [blame] | 654 | //------------------------------------------------------------------------------ |
Quentin Colombet | 5565075 | 2016-05-20 00:49:10 +0000 | [diff] [blame] | 655 | RegBankSelect::RepairingPlacement::RepairingPlacement( |
| 656 | MachineInstr &MI, unsigned OpIdx, const TargetRegisterInfo &TRI, Pass &P, |
| 657 | RepairingPlacement::RepairingKind Kind) |
| 658 | // Default is, we are going to insert code to repair OpIdx. |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 659 | : Kind(Kind), OpIdx(OpIdx), |
| 660 | CanMaterialize(Kind != RepairingKind::Impossible), P(P) { |
Quentin Colombet | 5565075 | 2016-05-20 00:49:10 +0000 | [diff] [blame] | 661 | const MachineOperand &MO = MI.getOperand(OpIdx); |
| 662 | assert(MO.isReg() && "Trying to repair a non-reg operand"); |
| 663 | |
| 664 | if (Kind != RepairingKind::Insert) |
| 665 | return; |
| 666 | |
| 667 | // Repairings for definitions happen after MI, uses happen before. |
| 668 | bool Before = !MO.isDef(); |
| 669 | |
| 670 | // Check if we are done with MI. |
| 671 | if (!MI.isPHI() && !MI.isTerminator()) { |
| 672 | addInsertPoint(MI, Before); |
| 673 | // We are done with the initialization. |
| 674 | return; |
| 675 | } |
| 676 | |
| 677 | // Now, look for the special cases. |
| 678 | if (MI.isPHI()) { |
| 679 | // - PHI must be the first instructions: |
| 680 | // * Before, we have to split the related incoming edge. |
| 681 | // * After, move the insertion point past the last phi. |
| 682 | if (!Before) { |
| 683 | MachineBasicBlock::iterator It = MI.getParent()->getFirstNonPHI(); |
| 684 | if (It != MI.getParent()->end()) |
| 685 | addInsertPoint(*It, /*Before*/ true); |
| 686 | else |
| 687 | addInsertPoint(*(--It), /*Before*/ false); |
| 688 | return; |
| 689 | } |
| 690 | // We repair a use of a phi, we may need to split the related edge. |
| 691 | MachineBasicBlock &Pred = *MI.getOperand(OpIdx + 1).getMBB(); |
| 692 | // Check if we can move the insertion point prior to the |
| 693 | // terminators of the predecessor. |
| 694 | unsigned Reg = MO.getReg(); |
| 695 | MachineBasicBlock::iterator It = Pred.getLastNonDebugInstr(); |
| 696 | for (auto Begin = Pred.begin(); It != Begin && It->isTerminator(); --It) |
| 697 | if (It->modifiesRegister(Reg, &TRI)) { |
| 698 | // We cannot hoist the repairing code in the predecessor. |
| 699 | // Split the edge. |
| 700 | addInsertPoint(Pred, *MI.getParent()); |
| 701 | return; |
| 702 | } |
| 703 | // At this point, we can insert in Pred. |
| 704 | |
| 705 | // - If It is invalid, Pred is empty and we can insert in Pred |
| 706 | // wherever we want. |
| 707 | // - If It is valid, It is the first non-terminator, insert after It. |
| 708 | if (It == Pred.end()) |
| 709 | addInsertPoint(Pred, /*Beginning*/ false); |
| 710 | else |
| 711 | addInsertPoint(*It, /*Before*/ false); |
| 712 | } else { |
| 713 | // - Terminators must be the last instructions: |
| 714 | // * Before, move the insert point before the first terminator. |
| 715 | // * After, we have to split the outcoming edges. |
Quentin Colombet | 5565075 | 2016-05-20 00:49:10 +0000 | [diff] [blame] | 716 | if (Before) { |
| 717 | // Check whether Reg is defined by any terminator. |
Matt Arsenault | adc40ba | 2019-01-08 01:22:47 +0000 | [diff] [blame] | 718 | MachineBasicBlock::reverse_iterator It = MI; |
| 719 | auto REnd = MI.getParent()->rend(); |
| 720 | |
| 721 | for (; It != REnd && It->isTerminator(); ++It) { |
Benjamin Kramer | a480523 | 2019-01-08 12:54:26 +0000 | [diff] [blame] | 722 | assert(!It->modifiesRegister(MO.getReg(), &TRI) && |
Matt Arsenault | adc40ba | 2019-01-08 01:22:47 +0000 | [diff] [blame] | 723 | "copy insertion in middle of terminators not handled"); |
| 724 | } |
| 725 | |
| 726 | if (It == REnd) { |
| 727 | addInsertPoint(*MI.getParent()->begin(), true); |
| 728 | return; |
| 729 | } |
| 730 | |
| 731 | // We are sure to be right before the first terminator. |
| 732 | addInsertPoint(*It, /*Before*/ false); |
Quentin Colombet | 5565075 | 2016-05-20 00:49:10 +0000 | [diff] [blame] | 733 | return; |
| 734 | } |
| 735 | // Make sure Reg is not redefined by other terminators, otherwise |
| 736 | // we do not know how to split. |
| 737 | for (MachineBasicBlock::iterator It = MI, End = MI.getParent()->end(); |
| 738 | ++It != End;) |
| 739 | // The machine verifier should reject this kind of code. |
Benjamin Kramer | a480523 | 2019-01-08 12:54:26 +0000 | [diff] [blame] | 740 | assert(It->modifiesRegister(MO.getReg(), &TRI) && |
| 741 | "Do not know where to split"); |
Quentin Colombet | 5565075 | 2016-05-20 00:49:10 +0000 | [diff] [blame] | 742 | // Split each outcoming edges. |
| 743 | MachineBasicBlock &Src = *MI.getParent(); |
| 744 | for (auto &Succ : Src.successors()) |
| 745 | addInsertPoint(Src, Succ); |
| 746 | } |
| 747 | } |
| 748 | |
| 749 | void RegBankSelect::RepairingPlacement::addInsertPoint(MachineInstr &MI, |
| 750 | bool Before) { |
| 751 | addInsertPoint(*new InstrInsertPoint(MI, Before)); |
| 752 | } |
| 753 | |
| 754 | void RegBankSelect::RepairingPlacement::addInsertPoint(MachineBasicBlock &MBB, |
| 755 | bool Beginning) { |
| 756 | addInsertPoint(*new MBBInsertPoint(MBB, Beginning)); |
| 757 | } |
| 758 | |
| 759 | void RegBankSelect::RepairingPlacement::addInsertPoint(MachineBasicBlock &Src, |
| 760 | MachineBasicBlock &Dst) { |
| 761 | addInsertPoint(*new EdgeInsertPoint(Src, Dst, P)); |
| 762 | } |
| 763 | |
| 764 | void RegBankSelect::RepairingPlacement::addInsertPoint( |
| 765 | RegBankSelect::InsertPoint &Point) { |
| 766 | CanMaterialize &= Point.canMaterialize(); |
| 767 | HasSplit |= Point.isSplit(); |
| 768 | InsertPoints.emplace_back(&Point); |
| 769 | } |
| 770 | |
| 771 | RegBankSelect::InstrInsertPoint::InstrInsertPoint(MachineInstr &Instr, |
| 772 | bool Before) |
| 773 | : InsertPoint(), Instr(Instr), Before(Before) { |
| 774 | // Since we do not support splitting, we do not need to update |
| 775 | // liveness and such, so do not do anything with P. |
| 776 | assert((!Before || !Instr.isPHI()) && |
| 777 | "Splitting before phis requires more points"); |
| 778 | assert((!Before || !Instr.getNextNode() || !Instr.getNextNode()->isPHI()) && |
| 779 | "Splitting between phis does not make sense"); |
| 780 | } |
| 781 | |
| 782 | void RegBankSelect::InstrInsertPoint::materialize() { |
| 783 | if (isSplit()) { |
| 784 | // Slice and return the beginning of the new block. |
| 785 | // If we need to split between the terminators, we theoritically |
| 786 | // need to know where the first and second set of terminators end |
| 787 | // to update the successors properly. |
| 788 | // Now, in pratice, we should have a maximum of 2 branch |
| 789 | // instructions; one conditional and one unconditional. Therefore |
| 790 | // we know how to update the successor by looking at the target of |
| 791 | // the unconditional branch. |
| 792 | // If we end up splitting at some point, then, we should update |
| 793 | // the liveness information and such. I.e., we would need to |
| 794 | // access P here. |
| 795 | // The machine verifier should actually make sure such cases |
| 796 | // cannot happen. |
| 797 | llvm_unreachable("Not yet implemented"); |
| 798 | } |
| 799 | // Otherwise the insertion point is just the current or next |
| 800 | // instruction depending on Before. I.e., there is nothing to do |
| 801 | // here. |
| 802 | } |
| 803 | |
| 804 | bool RegBankSelect::InstrInsertPoint::isSplit() const { |
| 805 | // If the insertion point is after a terminator, we need to split. |
| 806 | if (!Before) |
| 807 | return Instr.isTerminator(); |
| 808 | // If we insert before an instruction that is after a terminator, |
| 809 | // we are still after a terminator. |
| 810 | return Instr.getPrevNode() && Instr.getPrevNode()->isTerminator(); |
| 811 | } |
| 812 | |
| 813 | uint64_t RegBankSelect::InstrInsertPoint::frequency(const Pass &P) const { |
| 814 | // Even if we need to split, because we insert between terminators, |
| 815 | // this split has actually the same frequency as the instruction. |
| 816 | const MachineBlockFrequencyInfo *MBFI = |
| 817 | P.getAnalysisIfAvailable<MachineBlockFrequencyInfo>(); |
| 818 | if (!MBFI) |
| 819 | return 1; |
| 820 | return MBFI->getBlockFreq(Instr.getParent()).getFrequency(); |
| 821 | } |
| 822 | |
| 823 | uint64_t RegBankSelect::MBBInsertPoint::frequency(const Pass &P) const { |
| 824 | const MachineBlockFrequencyInfo *MBFI = |
| 825 | P.getAnalysisIfAvailable<MachineBlockFrequencyInfo>(); |
| 826 | if (!MBFI) |
| 827 | return 1; |
| 828 | return MBFI->getBlockFreq(&MBB).getFrequency(); |
| 829 | } |
| 830 | |
| 831 | void RegBankSelect::EdgeInsertPoint::materialize() { |
| 832 | // If we end up repairing twice at the same place before materializing the |
| 833 | // insertion point, we may think we have to split an edge twice. |
| 834 | // We should have a factory for the insert point such that identical points |
| 835 | // are the same instance. |
| 836 | assert(Src.isSuccessor(DstOrSplit) && DstOrSplit->isPredecessor(&Src) && |
| 837 | "This point has already been split"); |
| 838 | MachineBasicBlock *NewBB = Src.SplitCriticalEdge(DstOrSplit, P); |
| 839 | assert(NewBB && "Invalid call to materialize"); |
| 840 | // We reuse the destination block to hold the information of the new block. |
| 841 | DstOrSplit = NewBB; |
| 842 | } |
| 843 | |
| 844 | uint64_t RegBankSelect::EdgeInsertPoint::frequency(const Pass &P) const { |
| 845 | const MachineBlockFrequencyInfo *MBFI = |
| 846 | P.getAnalysisIfAvailable<MachineBlockFrequencyInfo>(); |
| 847 | if (!MBFI) |
| 848 | return 1; |
| 849 | if (WasMaterialized) |
| 850 | return MBFI->getBlockFreq(DstOrSplit).getFrequency(); |
| 851 | |
| 852 | const MachineBranchProbabilityInfo *MBPI = |
| 853 | P.getAnalysisIfAvailable<MachineBranchProbabilityInfo>(); |
| 854 | if (!MBPI) |
| 855 | return 1; |
| 856 | // The basic block will be on the edge. |
| 857 | return (MBFI->getBlockFreq(&Src) * MBPI->getEdgeProbability(&Src, DstOrSplit)) |
| 858 | .getFrequency(); |
| 859 | } |
| 860 | |
| 861 | bool RegBankSelect::EdgeInsertPoint::canMaterialize() const { |
| 862 | // If this is not a critical edge, we should not have used this insert |
| 863 | // point. Indeed, either the successor or the predecessor should |
| 864 | // have do. |
| 865 | assert(Src.succ_size() > 1 && DstOrSplit->pred_size() > 1 && |
| 866 | "Edge is not critical"); |
| 867 | return Src.canSplitCriticalEdge(DstOrSplit); |
| 868 | } |
| 869 | |
Quentin Colombet | cfd97b9 | 2016-05-20 00:35:26 +0000 | [diff] [blame] | 870 | RegBankSelect::MappingCost::MappingCost(const BlockFrequency &LocalFreq) |
Eugene Zelenko | 76bf48d | 2017-06-26 22:44:03 +0000 | [diff] [blame] | 871 | : LocalFreq(LocalFreq.getFrequency()) {} |
Quentin Colombet | cfd97b9 | 2016-05-20 00:35:26 +0000 | [diff] [blame] | 872 | |
| 873 | bool RegBankSelect::MappingCost::addLocalCost(uint64_t Cost) { |
| 874 | // Check if this overflows. |
| 875 | if (LocalCost + Cost < LocalCost) { |
| 876 | saturate(); |
| 877 | return true; |
| 878 | } |
| 879 | LocalCost += Cost; |
| 880 | return isSaturated(); |
| 881 | } |
| 882 | |
| 883 | bool RegBankSelect::MappingCost::addNonLocalCost(uint64_t Cost) { |
| 884 | // Check if this overflows. |
| 885 | if (NonLocalCost + Cost < NonLocalCost) { |
| 886 | saturate(); |
| 887 | return true; |
| 888 | } |
| 889 | NonLocalCost += Cost; |
| 890 | return isSaturated(); |
| 891 | } |
| 892 | |
| 893 | bool RegBankSelect::MappingCost::isSaturated() const { |
| 894 | return LocalCost == UINT64_MAX - 1 && NonLocalCost == UINT64_MAX && |
| 895 | LocalFreq == UINT64_MAX; |
| 896 | } |
| 897 | |
| 898 | void RegBankSelect::MappingCost::saturate() { |
| 899 | *this = ImpossibleCost(); |
| 900 | --LocalCost; |
| 901 | } |
| 902 | |
| 903 | RegBankSelect::MappingCost RegBankSelect::MappingCost::ImpossibleCost() { |
| 904 | return MappingCost(UINT64_MAX, UINT64_MAX, UINT64_MAX); |
| 905 | } |
| 906 | |
| 907 | bool RegBankSelect::MappingCost::operator<(const MappingCost &Cost) const { |
| 908 | // Sort out the easy cases. |
| 909 | if (*this == Cost) |
| 910 | return false; |
| 911 | // If one is impossible to realize the other is cheaper unless it is |
| 912 | // impossible as well. |
| 913 | if ((*this == ImpossibleCost()) || (Cost == ImpossibleCost())) |
| 914 | return (*this == ImpossibleCost()) < (Cost == ImpossibleCost()); |
| 915 | // If one is saturated the other is cheaper, unless it is saturated |
| 916 | // as well. |
| 917 | if (isSaturated() || Cost.isSaturated()) |
| 918 | return isSaturated() < Cost.isSaturated(); |
| 919 | // At this point we know both costs hold sensible values. |
| 920 | |
| 921 | // If both values have a different base frequency, there is no much |
| 922 | // we can do but to scale everything. |
| 923 | // However, if they have the same base frequency we can avoid making |
| 924 | // complicated computation. |
| 925 | uint64_t ThisLocalAdjust; |
| 926 | uint64_t OtherLocalAdjust; |
| 927 | if (LLVM_LIKELY(LocalFreq == Cost.LocalFreq)) { |
| 928 | |
| 929 | // At this point, we know the local costs are comparable. |
| 930 | // Do the case that do not involve potential overflow first. |
| 931 | if (NonLocalCost == Cost.NonLocalCost) |
| 932 | // Since the non-local costs do not discriminate on the result, |
| 933 | // just compare the local costs. |
| 934 | return LocalCost < Cost.LocalCost; |
| 935 | |
| 936 | // The base costs are comparable so we may only keep the relative |
| 937 | // value to increase our chances of avoiding overflows. |
| 938 | ThisLocalAdjust = 0; |
| 939 | OtherLocalAdjust = 0; |
| 940 | if (LocalCost < Cost.LocalCost) |
| 941 | OtherLocalAdjust = Cost.LocalCost - LocalCost; |
| 942 | else |
| 943 | ThisLocalAdjust = LocalCost - Cost.LocalCost; |
Quentin Colombet | cfd97b9 | 2016-05-20 00:35:26 +0000 | [diff] [blame] | 944 | } else { |
| 945 | ThisLocalAdjust = LocalCost; |
| 946 | OtherLocalAdjust = Cost.LocalCost; |
| 947 | } |
| 948 | |
| 949 | // The non-local costs are comparable, just keep the relative value. |
| 950 | uint64_t ThisNonLocalAdjust = 0; |
| 951 | uint64_t OtherNonLocalAdjust = 0; |
| 952 | if (NonLocalCost < Cost.NonLocalCost) |
| 953 | OtherNonLocalAdjust = Cost.NonLocalCost - NonLocalCost; |
| 954 | else |
| 955 | ThisNonLocalAdjust = NonLocalCost - Cost.NonLocalCost; |
| 956 | // Scale everything to make them comparable. |
| 957 | uint64_t ThisScaledCost = ThisLocalAdjust * LocalFreq; |
| 958 | // Check for overflow on that operation. |
| 959 | bool ThisOverflows = ThisLocalAdjust && (ThisScaledCost < ThisLocalAdjust || |
| 960 | ThisScaledCost < LocalFreq); |
| 961 | uint64_t OtherScaledCost = OtherLocalAdjust * Cost.LocalFreq; |
| 962 | // Check for overflow on the last operation. |
| 963 | bool OtherOverflows = |
| 964 | OtherLocalAdjust && |
| 965 | (OtherScaledCost < OtherLocalAdjust || OtherScaledCost < Cost.LocalFreq); |
| 966 | // Add the non-local costs. |
| 967 | ThisOverflows |= ThisNonLocalAdjust && |
| 968 | ThisScaledCost + ThisNonLocalAdjust < ThisNonLocalAdjust; |
| 969 | ThisScaledCost += ThisNonLocalAdjust; |
| 970 | OtherOverflows |= OtherNonLocalAdjust && |
| 971 | OtherScaledCost + OtherNonLocalAdjust < OtherNonLocalAdjust; |
| 972 | OtherScaledCost += OtherNonLocalAdjust; |
| 973 | // If both overflows, we cannot compare without additional |
| 974 | // precision, e.g., APInt. Just give up on that case. |
| 975 | if (ThisOverflows && OtherOverflows) |
| 976 | return false; |
| 977 | // If one overflows but not the other, we can still compare. |
| 978 | if (ThisOverflows || OtherOverflows) |
| 979 | return ThisOverflows < OtherOverflows; |
| 980 | // Otherwise, just compare the values. |
| 981 | return ThisScaledCost < OtherScaledCost; |
| 982 | } |
| 983 | |
| 984 | bool RegBankSelect::MappingCost::operator==(const MappingCost &Cost) const { |
| 985 | return LocalCost == Cost.LocalCost && NonLocalCost == Cost.NonLocalCost && |
| 986 | LocalFreq == Cost.LocalFreq; |
| 987 | } |
Quentin Colombet | 0b63b31 | 2017-01-11 00:48:41 +0000 | [diff] [blame] | 988 | |
Aaron Ballman | 615eb47 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 989 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Matthias Braun | 8c209aa | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 990 | LLVM_DUMP_METHOD void RegBankSelect::MappingCost::dump() const { |
Quentin Colombet | 0b63b31 | 2017-01-11 00:48:41 +0000 | [diff] [blame] | 991 | print(dbgs()); |
| 992 | dbgs() << '\n'; |
| 993 | } |
Matthias Braun | 8c209aa | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 994 | #endif |
Quentin Colombet | 0b63b31 | 2017-01-11 00:48:41 +0000 | [diff] [blame] | 995 | |
| 996 | void RegBankSelect::MappingCost::print(raw_ostream &OS) const { |
| 997 | if (*this == ImpossibleCost()) { |
| 998 | OS << "impossible"; |
| 999 | return; |
| 1000 | } |
| 1001 | if (isSaturated()) { |
| 1002 | OS << "saturated"; |
| 1003 | return; |
| 1004 | } |
| 1005 | OS << LocalFreq << " * " << LocalCost << " + " << NonLocalCost; |
| 1006 | } |