Searched refs:OtherReg (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Target/SystemZ/ |
D | SystemZShortenInst.cpp | 83 unsigned OtherReg = TRI->getSubReg(GR64BitReg, otherSubRegIdx); in shortenIIF() local 84 if (LiveRegs.contains(OtherReg)) in shortenIIF()
|
/external/llvm/lib/Target/ARM/ |
D | ARMBaseRegisterInfo.cpp | 290 unsigned OtherReg = Hint.second; in updateRegAllocHint() local 291 Hint = MRI->getRegAllocationHint(OtherReg); in updateRegAllocHint() 294 MRI->setRegAllocationHint(OtherReg, Hint.first, NewReg); in updateRegAllocHint() 298 : ARMRI::RegPairOdd, OtherReg); in updateRegAllocHint()
|
/external/llvm/lib/CodeGen/ |
D | RegAllocGreedy.cpp | 2312 unsigned OtherReg = Instr.getOperand(0).getReg(); in collectHintInfo() local 2313 if (OtherReg == Reg) { in collectHintInfo() 2314 OtherReg = Instr.getOperand(1).getReg(); in collectHintInfo() 2315 if (OtherReg == Reg) in collectHintInfo() 2319 unsigned OtherPhysReg = TargetRegisterInfo::isPhysicalRegister(OtherReg) in collectHintInfo() 2320 ? OtherReg in collectHintInfo() 2321 : VRM->getPhys(OtherReg); in collectHintInfo() 2323 Out.push_back(HintInfo(MBFI->getBlockFreq(Instr.getParent()), OtherReg, in collectHintInfo()
|
D | RegisterCoalescer.cpp | 2786 unsigned OtherReg, OtherSubReg, OtherSrcReg, OtherSrcSubReg; in applyTerminalRule() local 2787 isMoveInstr(*TRI, &Copy, OtherSrcReg, OtherReg, OtherSrcSubReg, in applyTerminalRule() 2789 if (OtherReg == SrcReg) in applyTerminalRule() 2790 OtherReg = OtherSrcReg; in applyTerminalRule() 2792 if (TargetRegisterInfo::isPhysicalRegister(OtherReg) || in applyTerminalRule() 2793 isTerminalReg(OtherReg, MI, MRI)) in applyTerminalRule() 2796 if (LIS->getInterval(OtherReg).overlaps(DstLI)) { in applyTerminalRule()
|