Lines Matching refs:DestReg
613 Register DestReg = MI->getOperand(0).getReg(); in scanInstruction() local
616 << printReg(DestReg, TRI) << " at " << *MI); in scanInstruction()
618 auto G = std::make_unique<Chain>(MI, Idx, getColor(DestReg)); in scanInstruction()
619 ActiveChains[DestReg] = G.get(); in scanInstruction()
626 Register DestReg = MI->getOperand(0).getReg(); in scanInstruction() local
631 if (DestReg != AccumReg) in scanInstruction()
646 ActiveChains[AccumReg]->add(MI, Idx, getColor(DestReg)); in scanInstruction()
648 if (DestReg != AccumReg) { in scanInstruction()
649 ActiveChains[DestReg] = ActiveChains[AccumReg]; in scanInstruction()
662 << printReg(DestReg, TRI) << "\n"); in scanInstruction()
663 auto G = std::make_unique<Chain>(MI, Idx, getColor(DestReg)); in scanInstruction()
664 ActiveChains[DestReg] = G.get(); in scanInstruction()