Searched defs:OtherReg (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Target/SystemZ/
H A DSystemZShortenInst.cpp89 unsigned OtherReg = TRI->getSubReg(GR64BitReg, otherSubRegIdx); local
90 if (LiveRegs.contains(OtherReg))
/external/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp321 unsigned OtherReg = Hint.second; local
322 Hint = MRI->getRegAllocationHint(OtherReg);
325 MRI->setRegAllocationHint(OtherReg, Hint.first, NewReg);
329 : ARMRI::RegPairOdd, OtherReg);
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp579 unsigned OtherReg = Hint.second; local
580 Hint = MRI->getRegAllocationHint(OtherReg);
583 MRI->setRegAllocationHint(OtherReg, Hint.first, NewReg);
/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp2860 unsigned OtherReg, OtherSubReg, OtherSrcReg, OtherSrcSubReg; local
2861 isMoveInstr(*TRI, &Copy, OtherSrcReg, OtherReg, OtherSrcSubReg,
2863 if (OtherReg == SrcReg)
2864 OtherReg = OtherSrcReg;
2865 // Check if OtherReg is a non-terminal.
2866 if (TargetRegisterInfo::isPhysicalRegister(OtherReg) ||
2867 isTerminalReg(OtherReg, MI, MRI))
2869 // Check that OtherReg interfere with DstReg.
2870 if (LIS->getInterval(OtherReg).overlaps(DstLI)) {

Completed in 187 milliseconds