Lines Matching refs:TIB
1937 MachineBasicBlock::iterator TIB = TBB->begin(); in HoistCommonCodeInSuccs() local
1941 while (TIB != TIE && FIB != FIE) { in HoistCommonCodeInSuccs()
1943 TIB = skipDebugInstructionsForward(TIB, TIE, false); in HoistCommonCodeInSuccs()
1945 if (TIB == TIE || FIB == FIE) in HoistCommonCodeInSuccs()
1948 if (!TIB->isIdenticalTo(*FIB, MachineInstr::CheckKillDead)) in HoistCommonCodeInSuccs()
1951 if (TII->isPredicated(*TIB)) in HoistCommonCodeInSuccs()
1956 for (MachineOperand &MO : TIB->operands()) { in HoistCommonCodeInSuccs()
2007 if (!TIB->isSafeToMove(nullptr, DontMoveAcrossStore)) in HoistCommonCodeInSuccs()
2011 for (const MachineOperand &MO : TIB->all_uses()) { in HoistCommonCodeInSuccs()
2029 for (const MachineOperand &MO : TIB->all_defs()) { in HoistCommonCodeInSuccs()
2040 ++TIB; in HoistCommonCodeInSuccs()
2047 MBB->splice(Loc, TBB, TBB->begin(), TIB); in HoistCommonCodeInSuccs()