[MC] Assert that MCRegUnitIterator operates over MCRegisters

The signature of the ctor expects a MCRegister, but currently any
unsigned value can be converted to a MCRegister.

This patch checks that indeed the provided value is a physical register
only. We want to eventually stop implicitly converting unsigned or
Register to MCRegister (which is incorrect). The next step after this
patch is changing uses of MCRegUnitIterator to explicitly cast Register
or unsigned values to MCRegister. To that end, this patch also
introduces 2 APIs that make that conversion checked and explicit.

Differential Revision: https://reviews.llvm.org/D88705
This commit is contained in:
Mircea Trofin 2020-10-01 14:35:11 -07:00
parent 508ac0ec13
commit 0a3523299d
3 changed files with 16 additions and 0 deletions

View File

@ -110,6 +110,15 @@ public:
return MCRegister(Reg);
}
/// Utility to check-convert this value to a MCRegister. The caller is
/// expected to have already validated that this Register is, indeed,
/// physical.
MCRegister asMCReg() const {
assert(Reg == MCRegister::NoRegister ||
MCRegister::isPhysicalRegister(Reg));
return MCRegister(Reg);
}
bool isValid() const { return Reg != MCRegister::NoRegister; }
/// Comparisons between register objects

View File

@ -68,6 +68,12 @@ public:
return Reg;
}
/// Check the provided unsigned value is a valid MCRegister.
static MCRegister from(unsigned Val) {
assert(Val == NoRegister || isPhysicalRegister(Val));
return MCRegister(Val);
}
unsigned id() const {
return Reg;
}

View File

@ -675,6 +675,7 @@ public:
MCRegUnitIterator(MCRegister Reg, const MCRegisterInfo *MCRI) {
assert(Reg && "Null register has no regunits");
assert(MCRegister::isPhysicalRegister(Reg.id()));
// Decode the RegUnits MCRegisterDesc field.
unsigned RU = MCRI->get(Reg).RegUnits;
unsigned Scale = RU & 15;