1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
|
//===- RDFRegisters.cpp ---------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "llvm/ADT/BitVector.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/CodeGen/MachineOperand.h"
#include "llvm/CodeGen/RDFRegisters.h"
#include "llvm/CodeGen/TargetRegisterInfo.h"
#include "llvm/MC/LaneBitmask.h"
#include "llvm/MC/MCRegisterInfo.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/MathExtras.h"
#include "llvm/Support/raw_ostream.h"
#include <cassert>
#include <cstdint>
#include <set>
#include <utility>
namespace llvm::rdf {
PhysicalRegisterInfo::PhysicalRegisterInfo(const TargetRegisterInfo &tri,
const MachineFunction &mf)
: TRI(tri) {
RegInfos.resize(TRI.getNumRegs());
BitVector BadRC(TRI.getNumRegs());
for (const TargetRegisterClass *RC : TRI.regclasses()) {
for (MCPhysReg R : *RC) {
RegInfo &RI = RegInfos[R];
if (RI.RegClass != nullptr && !BadRC[R]) {
if (RC->LaneMask != RI.RegClass->LaneMask) {
BadRC.set(R);
RI.RegClass = nullptr;
}
} else
RI.RegClass = RC;
}
}
UnitInfos.resize(TRI.getNumRegUnits());
for (uint32_t U = 0, NU = TRI.getNumRegUnits(); U != NU; ++U) {
if (UnitInfos[U].Reg != 0)
continue;
MCRegUnitRootIterator R(U, &TRI);
assert(R.isValid());
RegisterId F = *R;
++R;
if (R.isValid()) {
UnitInfos[U].Mask = LaneBitmask::getAll();
UnitInfos[U].Reg = F;
} else {
for (MCRegUnitMaskIterator I(F, &TRI); I.isValid(); ++I) {
std::pair<uint32_t, LaneBitmask> P = *I;
UnitInfo &UI = UnitInfos[P.first];
UI.Reg = F;
UI.Mask = P.second;
}
}
}
for (const uint32_t *RM : TRI.getRegMasks())
RegMasks.insert(RM);
for (const MachineBasicBlock &B : mf)
for (const MachineInstr &In : B)
for (const MachineOperand &Op : In.operands())
if (Op.isRegMask())
RegMasks.insert(Op.getRegMask());
MaskInfos.resize(RegMasks.size() + 1);
for (uint32_t M = 1, NM = RegMasks.size(); M <= NM; ++M) {
BitVector PU(TRI.getNumRegUnits());
const uint32_t *MB = RegMasks.get(M);
for (unsigned I = 1, E = TRI.getNumRegs(); I != E; ++I) {
if (!(MB[I / 32] & (1u << (I % 32))))
continue;
for (MCRegUnit Unit : TRI.regunits(MCRegister::from(I)))
PU.set(Unit);
}
MaskInfos[M].Units = PU.flip();
}
AliasInfos.resize(TRI.getNumRegUnits());
for (uint32_t U = 0, NU = TRI.getNumRegUnits(); U != NU; ++U) {
BitVector AS(TRI.getNumRegs());
for (MCRegUnitRootIterator R(U, &TRI); R.isValid(); ++R)
for (MCPhysReg S : TRI.superregs_inclusive(*R))
AS.set(S);
AliasInfos[U].Regs = AS;
}
}
bool PhysicalRegisterInfo::alias(RegisterRef RA, RegisterRef RB) const {
return !disjoint(getUnits(RA), getUnits(RB));
}
std::set<RegisterId> PhysicalRegisterInfo::getAliasSet(RegisterId Reg) const {
// Do not include Reg in the alias set.
std::set<RegisterId> AS;
assert(!RegisterRef::isUnitId(Reg) && "No units allowed");
if (RegisterRef::isMaskId(Reg)) {
// XXX SLOW
const uint32_t *MB = getRegMaskBits(Reg);
for (unsigned i = 1, e = TRI.getNumRegs(); i != e; ++i) {
if (MB[i / 32] & (1u << (i % 32)))
continue;
AS.insert(i);
}
return AS;
}
assert(RegisterRef::isRegId(Reg));
for (MCRegAliasIterator AI(Reg, &TRI, false); AI.isValid(); ++AI)
AS.insert(*AI);
return AS;
}
std::set<RegisterId> PhysicalRegisterInfo::getUnits(RegisterRef RR) const {
std::set<RegisterId> Units;
if (RR.Reg == 0)
return Units; // Empty
if (RR.isReg()) {
if (RR.Mask.none())
return Units; // Empty
for (MCRegUnitMaskIterator UM(RR.idx(), &TRI); UM.isValid(); ++UM) {
auto [U, M] = *UM;
if ((M & RR.Mask).any())
Units.insert(U);
}
return Units;
}
assert(RR.isMask());
unsigned NumRegs = TRI.getNumRegs();
const uint32_t *MB = getRegMaskBits(RR.idx());
for (unsigned I = 0, E = (NumRegs + 31) / 32; I != E; ++I) {
uint32_t C = ~MB[I]; // Clobbered regs
if (I == 0) // Reg 0 should be ignored
C &= maskLeadingOnes<unsigned>(31);
if (I + 1 == E && NumRegs % 32 != 0) // Last word may be partial
C &= maskTrailingOnes<unsigned>(NumRegs % 32);
if (C == 0)
continue;
while (C != 0) {
unsigned T = llvm::countr_zero(C);
unsigned CR = 32 * I + T; // Clobbered reg
for (MCRegUnit U : TRI.regunits(CR))
Units.insert(U);
C &= ~(1u << T);
}
}
return Units;
}
RegisterRef PhysicalRegisterInfo::mapTo(RegisterRef RR, unsigned R) const {
if (RR.Reg == R)
return RR;
if (unsigned Idx = TRI.getSubRegIndex(R, RR.Reg))
return RegisterRef(R, TRI.composeSubRegIndexLaneMask(Idx, RR.Mask));
if (unsigned Idx = TRI.getSubRegIndex(RR.Reg, R)) {
const RegInfo &RI = RegInfos[R];
LaneBitmask RCM =
RI.RegClass ? RI.RegClass->LaneMask : LaneBitmask::getAll();
LaneBitmask M = TRI.reverseComposeSubRegIndexLaneMask(Idx, RR.Mask);
return RegisterRef(R, M & RCM);
}
llvm_unreachable("Invalid arguments: unrelated registers?");
}
bool PhysicalRegisterInfo::equal_to(RegisterRef A, RegisterRef B) const {
if (!A.isReg() || !B.isReg()) {
// For non-regs, or comparing reg and non-reg, use only the Reg member.
return A.Reg == B.Reg;
}
if (A.Reg == B.Reg)
return A.Mask == B.Mask;
// Compare reg units lexicographically.
MCRegUnitMaskIterator AI(A.Reg, &getTRI());
MCRegUnitMaskIterator BI(B.Reg, &getTRI());
while (AI.isValid() && BI.isValid()) {
auto [AReg, AMask] = *AI;
auto [BReg, BMask] = *BI;
// If both iterators point to a unit contained in both A and B, then
// compare the units.
if ((AMask & A.Mask).any() && (BMask & B.Mask).any()) {
if (AReg != BReg)
return false;
// Units are equal, move on to the next ones.
++AI;
++BI;
continue;
}
if ((AMask & A.Mask).none())
++AI;
if ((BMask & B.Mask).none())
++BI;
}
// One or both have reached the end.
return static_cast<int>(AI.isValid()) == static_cast<int>(BI.isValid());
}
bool PhysicalRegisterInfo::less(RegisterRef A, RegisterRef B) const {
if (!A.isReg() || !B.isReg()) {
// For non-regs, or comparing reg and non-reg, use only the Reg member.
return A.Reg < B.Reg;
}
if (A.Reg == B.Reg)
return A.Mask < B.Mask;
if (A.Mask == B.Mask)
return A.Reg < B.Reg;
// Compare reg units lexicographically.
llvm::MCRegUnitMaskIterator AI(A.Reg, &getTRI());
llvm::MCRegUnitMaskIterator BI(B.Reg, &getTRI());
while (AI.isValid() && BI.isValid()) {
auto [AReg, AMask] = *AI;
auto [BReg, BMask] = *BI;
// If both iterators point to a unit contained in both A and B, then
// compare the units.
if ((AMask & A.Mask).any() && (BMask & B.Mask).any()) {
if (AReg != BReg)
return AReg < BReg;
// Units are equal, move on to the next ones.
++AI;
++BI;
continue;
}
if ((AMask & A.Mask).none())
++AI;
if ((BMask & B.Mask).none())
++BI;
}
// One or both have reached the end: assume invalid < valid.
return static_cast<int>(AI.isValid()) < static_cast<int>(BI.isValid());
}
void PhysicalRegisterInfo::print(raw_ostream &OS, RegisterRef A) const {
if (A.Reg == 0 || A.isReg()) {
if (0 < A.idx() && A.idx() < TRI.getNumRegs())
OS << TRI.getName(A.idx());
else
OS << printReg(A.idx(), &TRI);
OS << PrintLaneMaskShort(A.Mask);
} else if (A.isUnit()) {
OS << printRegUnit(A.idx(), &TRI);
} else {
assert(A.isMask());
// RegMask SS flag is preserved by idx().
unsigned Idx = Register::stackSlot2Index(A.idx());
const char *Fmt = Idx < 0x10000 ? "%04x" : "%08x";
OS << "M#" << format(Fmt, Idx);
}
}
void PhysicalRegisterInfo::print(raw_ostream &OS, const RegisterAggr &A) const {
OS << '{';
for (unsigned U : A.units())
OS << ' ' << printRegUnit(U, &TRI);
OS << " }";
}
bool RegisterAggr::hasAliasOf(RegisterRef RR) const {
if (RR.isMask())
return Units.anyCommon(PRI.getMaskUnits(RR.Reg));
for (MCRegUnitMaskIterator U(RR.Reg, &PRI.getTRI()); U.isValid(); ++U) {
std::pair<uint32_t, LaneBitmask> P = *U;
if ((P.second & RR.Mask).any())
if (Units.test(P.first))
return true;
}
return false;
}
bool RegisterAggr::hasCoverOf(RegisterRef RR) const {
if (RR.isMask()) {
BitVector T(PRI.getMaskUnits(RR.Reg));
return T.reset(Units).none();
}
for (MCRegUnitMaskIterator U(RR.Reg, &PRI.getTRI()); U.isValid(); ++U) {
std::pair<uint32_t, LaneBitmask> P = *U;
if ((P.second & RR.Mask).any())
if (!Units.test(P.first))
return false;
}
return true;
}
RegisterAggr &RegisterAggr::insert(RegisterRef RR) {
if (RR.isMask()) {
Units |= PRI.getMaskUnits(RR.Reg);
return *this;
}
for (MCRegUnitMaskIterator U(RR.Reg, &PRI.getTRI()); U.isValid(); ++U) {
std::pair<uint32_t, LaneBitmask> P = *U;
if ((P.second & RR.Mask).any())
Units.set(P.first);
}
return *this;
}
RegisterAggr &RegisterAggr::insert(const RegisterAggr &RG) {
Units |= RG.Units;
return *this;
}
RegisterAggr &RegisterAggr::intersect(RegisterRef RR) {
return intersect(RegisterAggr(PRI).insert(RR));
}
RegisterAggr &RegisterAggr::intersect(const RegisterAggr &RG) {
Units &= RG.Units;
return *this;
}
RegisterAggr &RegisterAggr::clear(RegisterRef RR) {
return clear(RegisterAggr(PRI).insert(RR));
}
RegisterAggr &RegisterAggr::clear(const RegisterAggr &RG) {
Units.reset(RG.Units);
return *this;
}
RegisterRef RegisterAggr::intersectWith(RegisterRef RR) const {
RegisterAggr T(PRI);
T.insert(RR).intersect(*this);
if (T.empty())
return RegisterRef();
RegisterRef NR = T.makeRegRef();
assert(NR);
return NR;
}
RegisterRef RegisterAggr::clearIn(RegisterRef RR) const {
return RegisterAggr(PRI).insert(RR).clear(*this).makeRegRef();
}
RegisterRef RegisterAggr::makeRegRef() const {
int U = Units.find_first();
if (U < 0)
return RegisterRef();
// Find the set of all registers that are aliased to all the units
// in this aggregate.
// Get all the registers aliased to the first unit in the bit vector.
BitVector Regs = PRI.getUnitAliases(U);
U = Units.find_next(U);
// For each other unit, intersect it with the set of all registers
// aliased that unit.
while (U >= 0) {
Regs &= PRI.getUnitAliases(U);
U = Units.find_next(U);
}
// If there is at least one register remaining, pick the first one,
// and consolidate the masks of all of its units contained in this
// aggregate.
int F = Regs.find_first();
if (F <= 0)
return RegisterRef();
LaneBitmask M;
for (MCRegUnitMaskIterator I(F, &PRI.getTRI()); I.isValid(); ++I) {
std::pair<uint32_t, LaneBitmask> P = *I;
if (Units.test(P.first))
M |= P.second;
}
return RegisterRef(F, M);
}
RegisterAggr::ref_iterator::ref_iterator(const RegisterAggr &RG, bool End)
: Owner(&RG) {
for (int U = RG.Units.find_first(); U >= 0; U = RG.Units.find_next(U)) {
RegisterRef R = RG.PRI.getRefForUnit(U);
Masks[R.Reg] |= R.Mask;
}
Pos = End ? Masks.end() : Masks.begin();
Index = End ? Masks.size() : 0;
}
raw_ostream &operator<<(raw_ostream &OS, const RegisterAggr &A) {
A.getPRI().print(OS, A);
return OS;
}
raw_ostream &operator<<(raw_ostream &OS, const PrintLaneMaskShort &P) {
if (P.Mask.all())
return OS;
if (P.Mask.none())
return OS << ":*none*";
LaneBitmask::Type Val = P.Mask.getAsInteger();
if ((Val & 0xffff) == Val)
return OS << ':' << format("%04llX", Val);
if ((Val & 0xffffffff) == Val)
return OS << ':' << format("%08llX", Val);
return OS << ':' << PrintLaneMask(P.Mask);
}
} // namespace llvm::rdf
|