Lines Matching refs:DestReg
614 Register DestReg = MI->getOperand(0).getReg(); in scanInstruction() local
617 << printReg(DestReg, TRI) << " at " << *MI); in scanInstruction()
619 auto G = std::make_unique<Chain>(MI, Idx, getColor(DestReg)); in scanInstruction()
620 ActiveChains[DestReg] = G.get(); in scanInstruction()
627 Register DestReg = MI->getOperand(0).getReg(); in scanInstruction() local
632 if (DestReg != AccumReg) in scanInstruction()
647 ActiveChains[AccumReg]->add(MI, Idx, getColor(DestReg)); in scanInstruction()
649 if (DestReg != AccumReg) { in scanInstruction()
650 ActiveChains[DestReg] = ActiveChains[AccumReg]; in scanInstruction()
663 << printReg(DestReg, TRI) << "\n"); in scanInstruction()
664 auto G = std::make_unique<Chain>(MI, Idx, getColor(DestReg)); in scanInstruction()
665 ActiveChains[DestReg] = G.get(); in scanInstruction()