Searched refs:regB (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | TwoAddressInstructionPass.cpp | 1320 Register regB = MI.getOperand(SrcIdx).getReg(); in tryInstructionTransform() local 1322 assert(regB.isVirtual() && "cannot make instruction into two-address form"); in tryInstructionTransform() 1323 bool regBKilled = isKilled(MI, regB, true); in tryInstructionTransform() 1346 if (!Commuted && EnableRescheduling && rescheduleMIBelowKill(mi, nmi, regB)) { in tryInstructionTransform() 1354 regB = MI.getOperand(SrcIdx).getReg(); in tryInstructionTransform() 1355 regBKilled = isKilled(MI, regB, true); in tryInstructionTransform() 1361 if (!regBKilled || isProfitableToConv3Addr(regA, regB)) { in tryInstructionTransform() 1363 if (convertInstTo3Addr(mi, nmi, regA, regB, Dist)) { in tryInstructionTransform() 1376 if (EnableRescheduling && rescheduleKillAboveMI(mi, nmi, regB)) { in tryInstructionTransform() 1432 NewMIs[1]->findRegisterUseOperandIdx(regB, /*TRI=*/nullptr); in tryInstructionTransform()
|