Skip to content

Commit

Permalink
[CodeGen] Make more use of MachineOperand::getOperandNo. NFC.
Browse files Browse the repository at this point in the history
Differential Revision: https://reviews.llvm.org/D143252
  • Loading branch information
jayfoad committed Feb 7, 2023
1 parent d170a25 commit a07584d
Show file tree
Hide file tree
Showing 13 changed files with 20 additions and 24 deletions.
2 changes: 1 addition & 1 deletion llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
Expand Up @@ -212,7 +212,7 @@ static bool isCandidateStore(const MachineInstr &MI, const MachineOperand &MO) {
// In case we have str xA, [xA, #imm], this is two different uses
// of xA and we cannot fold, otherwise the xA stored may be wrong,
// even if #imm == 0.
return MI.getOperandNo(&MO) == 1 &&
return MO.getOperandNo() == 1 &&
MI.getOperand(0).getReg() != MI.getOperand(1).getReg();
}
}
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Target/AMDGPU/AMDGPUInsertDelayAlu.cpp
Expand Up @@ -380,7 +380,7 @@ class AMDGPUInsertDelayAlu : public MachineFunctionPass {
// TODO: Scan implicit defs too?
for (const auto &Op : MI.defs()) {
unsigned Latency = SchedModel.computeOperandLatency(
&MI, MI.getOperandNo(&Op), nullptr, 0);
&MI, Op.getOperandNo(), nullptr, 0);
for (MCRegUnitIterator UI(Op.getReg(), TRI); UI.isValid(); ++UI)
State[*UI] = DelayInfo(Type, Latency);
}
Expand Down
4 changes: 2 additions & 2 deletions llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
Expand Up @@ -2026,7 +2026,7 @@ int GCNHazardRecognizer::checkMAIHazards908(MachineInstr *MI) {
MaxWaitStates);
int NeedWaitStates = MFMAWritesAGPROverlappedSrcABWaitStates;
int SrcCIdx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src2);
int OpNo = MI->getOperandNo(&Op);
int OpNo = Op.getOperandNo();
if (OpNo == SrcCIdx) {
NeedWaitStates = MFMAWritesAGPROverlappedSrcCWaitStates;
} else if (Opc == AMDGPU::V_ACCVGPR_READ_B32_e64) {
Expand Down Expand Up @@ -2205,7 +2205,7 @@ int GCNHazardRecognizer::checkMAIHazards90A(MachineInstr *MI) {
if (NumWaitStates == std::numeric_limits<int>::max())
continue;

int OpNo = MI->getOperandNo(&Use);
int OpNo = Use.getOperandNo();
unsigned Opc1 = MI1->getOpcode();
int NeedWaitStates = 0;
if (OpNo == SrcCIdx) {
Expand Down
4 changes: 2 additions & 2 deletions llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
Expand Up @@ -231,7 +231,7 @@ static bool tryChangeVGPRtoSGPRinCopy(MachineInstr &MI,
UseMI->getOpcode() <= TargetOpcode::GENERIC_OP_END)
return false;

unsigned OpIdx = UseMI->getOperandNo(&MO);
unsigned OpIdx = MO.getOperandNo();
if (OpIdx >= UseMI->getDesc().getNumOperands() ||
!TII->isOperandLegal(*UseMI, OpIdx, &Src))
return false;
Expand Down Expand Up @@ -658,7 +658,7 @@ bool SIFixSGPRCopies::runOnMachineFunction(MachineFunction &MF) {
TRI->getEquivalentSGPRClass(SrcRC);
Register NewDst = MRI->createVirtualRegister(DestRC);
MachineBasicBlock *BlockToInsertCopy =
MI.isPHI() ? MI.getOperand(MI.getOperandNo(&MO) + 1).getMBB()
MI.isPHI() ? MI.getOperand(MO.getOperandNo() + 1).getMBB()
: MBB;
MachineBasicBlock::iterator PointToInsertCopy =
MI.isPHI() ? BlockToInsertCopy->getFirstInstrTerminator() : I;
Expand Down
5 changes: 2 additions & 3 deletions llvm/lib/Target/AMDGPU/SIInstrInfo.h
Expand Up @@ -841,7 +841,7 @@ class SIInstrInfo final : public AMDGPUGenInstrInfo {
const MachineOperand &UseMO,
const MachineOperand &DefMO) const {
assert(UseMO.getParent() == &MI);
int OpIdx = MI.getOperandNo(&UseMO);
int OpIdx = UseMO.getOperandNo();
if (OpIdx >= MI.getDesc().NumOperands)
return false;

Expand Down Expand Up @@ -873,8 +873,7 @@ class SIInstrInfo final : public AMDGPUGenInstrInfo {
}

bool isInlineConstant(const MachineOperand &MO) const {
const MachineInstr *Parent = MO.getParent();
return isInlineConstant(*Parent, Parent->getOperandNo(&MO));
return isInlineConstant(*MO.getParent(), MO.getOperandNo());
}

bool isImmOperandLegal(const MachineInstr &MI, unsigned OpNo,
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
Expand Up @@ -1158,7 +1158,7 @@ void SIPeepholeSDWA::legalizeScalarOperands(MachineInstr &MI,
if (!Op.isImm() && !(Op.isReg() && !TRI->isVGPR(*MRI, Op.getReg())))
continue;

unsigned I = MI.getOperandNo(&Op);
unsigned I = Op.getOperandNo();
if (Desc.operands()[I].RegClass == -1 ||
!TRI->isVSSuperClass(TRI->getRegClass(Desc.operands()[I].RegClass)))
continue;
Expand Down
6 changes: 2 additions & 4 deletions llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
Expand Up @@ -161,14 +161,12 @@ bool SIShrinkInstructions::shouldShrinkTrue16(MachineInstr &MI) const {

bool SIShrinkInstructions::isKImmOperand(const MachineOperand &Src) const {
return isInt<16>(Src.getImm()) &&
!TII->isInlineConstant(*Src.getParent(),
Src.getParent()->getOperandNo(&Src));
!TII->isInlineConstant(*Src.getParent(), Src.getOperandNo());
}

bool SIShrinkInstructions::isKUImmOperand(const MachineOperand &Src) const {
return isUInt<16>(Src.getImm()) &&
!TII->isInlineConstant(*Src.getParent(),
Src.getParent()->getOperandNo(&Src));
!TII->isInlineConstant(*Src.getParent(), Src.getOperandNo());
}

bool SIShrinkInstructions::isKImmOrKUImmOperand(const MachineOperand &Src,
Expand Down
7 changes: 3 additions & 4 deletions llvm/lib/Target/ARC/ARCOptAddrMode.cpp
Expand Up @@ -153,11 +153,10 @@ static bool dominatesAllUsesOf(const MachineInstr *MI, unsigned VReg,

assert(Register::isVirtualRegister(VReg) && "Expected virtual register!");

for (auto it = MRI->use_nodbg_begin(VReg), end = MRI->use_nodbg_end();
it != end; ++it) {
MachineInstr *User = it->getParent();
for (const MachineOperand &Use : MRI->use_nodbg_operands(VReg)) {
const MachineInstr *User = Use.getParent();
if (User->isPHI()) {
unsigned BBOperandIdx = User->getOperandNo(&*it) + 1;
unsigned BBOperandIdx = Use.getOperandNo() + 1;
MachineBasicBlock *MBB = User->getOperand(BBOperandIdx).getMBB();
if (MBB->empty()) {
const MachineBasicBlock *InstBB = MI->getParent();
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
Expand Up @@ -907,7 +907,7 @@ static bool producesFalseLanesZero(MachineInstr &MI,
continue;
// Skip the lr predicate reg
int PIdx = llvm::findFirstVPTPredOperandIdx(MI);
if (PIdx != -1 && (int)MI.getOperandNo(&MO) == PIdx + 2)
if (PIdx != -1 && (int)MO.getOperandNo() == PIdx + 2)
continue;

// Check that this instruction will produce zeros in its false lanes:
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Target/M68k/M68kInstrInfo.cpp
Expand Up @@ -609,7 +609,7 @@ bool M68kInstrInfo::isPCRelRegisterOperandLegal(
const MachineInstr *MI = MO.getParent();
const unsigned NameIndices = M68kInstrNameIndices[MI->getOpcode()];
StringRef InstrName(&M68kInstrNameData[NameIndices]);
const unsigned OperandNo = MI->getOperandNo(&MO);
const unsigned OperandNo = MO.getOperandNo();

// If this machine operand is the 2nd operand, then check
// whether the instruction has destination addressing mode 'k'.
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
Expand Up @@ -2563,7 +2563,7 @@ bool RISCVInstrInfo::hasAllNBitUsers(const MachineInstr &OrigMI,

for (auto &UserOp : MRI.use_operands(MI->getOperand(0).getReg())) {
const MachineInstr *UserMI = UserOp.getParent();
unsigned OpIdx = UserMI->getOperandNo(&UserOp);
unsigned OpIdx = UserOp.getOperandNo();

switch (UserMI->getOpcode()) {
default:
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp
Expand Up @@ -759,7 +759,7 @@ bool RISCVRegisterInfo::getRegAllocationHints(

for (auto &MO : MRI->reg_nodbg_operands(VirtReg)) {
const MachineInstr &MI = *MO.getParent();
unsigned OpIdx = MI.getOperandNo(&MO);
unsigned OpIdx = MO.getOperandNo();
bool NeedGPRC;
if (isCompressible(MI, NeedGPRC)) {
if (OpIdx == 0 && MI.getOperand(1).isReg()) {
Expand Down
4 changes: 2 additions & 2 deletions llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
Expand Up @@ -352,7 +352,7 @@ bool WebAssemblyExplicitLocals::runOnMachineFunction(MachineFunction &MF) {
unsigned LocalId = getLocalId(Reg2Local, MFI, CurLocal, OldReg);
// If this register operand is tied to another operand, we can't
// change it to an immediate. Untie it first.
MI.untieRegOperand(MI.getOperandNo(&MO));
MI.untieRegOperand(MO.getOperandNo());
MO.ChangeToImmediate(LocalId);
continue;
}
Expand All @@ -369,7 +369,7 @@ bool WebAssemblyExplicitLocals::runOnMachineFunction(MachineFunction &MF) {
if (MI.isInlineAsm()) {
unsigned LocalId = getLocalId(Reg2Local, MFI, CurLocal, OldReg);
// Untie it first if this reg operand is tied to another operand.
MI.untieRegOperand(MI.getOperandNo(&MO));
MI.untieRegOperand(MO.getOperandNo());
MO.ChangeToImmediate(LocalId);
continue;
}
Expand Down

0 comments on commit a07584d

Please sign in to comment.