Searched refs:OtherReg (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZRegisterInfo.cpp169 Register OtherReg = local
171 if (MRI->getRegClass(OtherReg) == &SystemZ::GRX32BitRegClass)
172 Worklist.push_back(OtherReg);
H A DSystemZShortenInst.cpp88 Register OtherReg = TRI->getSubReg(GR64BitReg, otherSubRegIdx); local
89 if (LiveRegs.contains(OtherReg))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp366 unsigned OtherReg = Hint.second; local
367 Hint = MRI->getRegAllocationHint(OtherReg);
370 MRI->setRegAllocationHint(OtherReg, Hint.first, NewReg);
374 : ARMRI::RegPairOdd, OtherReg);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp2877 Register OtherReg = Instr.getOperand(0).getReg();
2878 if (OtherReg == Reg) {
2879 OtherReg = Instr.getOperand(1).getReg();
2880 if (OtherReg == Reg)
2884 Register OtherPhysReg = Register::isPhysicalRegister(OtherReg)
2885 ? OtherReg
2886 : VRM->getPhys(OtherReg);
2888 Out.push_back(HintInfo(MBFI->getBlockFreq(Instr.getParent()), OtherReg,
H A DRegisterCoalescer.cpp3728 unsigned OtherReg, OtherSubReg, OtherSrcReg, OtherSrcSubReg; local
3729 if (!isMoveInstr(*TRI, &Copy, OtherSrcReg, OtherReg, OtherSrcSubReg,
3732 if (OtherReg == SrcReg)
3733 OtherReg = OtherSrcReg;
3734 // Check if OtherReg is a non-terminal.
3735 if (Register::isPhysicalRegister(OtherReg) ||
3736 isTerminalReg(OtherReg, MI, MRI))
3738 // Check that OtherReg interfere with DstReg.
3739 if (LIS->getInterval(OtherReg).overlaps(DstLI)) {

Completed in 101 milliseconds