Lines Matching refs:TIB
1948 MachineBasicBlock::iterator TIB = TBB->begin(); in HoistCommonCodeInSuccs() local
1952 while (TIB != TIE && FIB != FIE) { in HoistCommonCodeInSuccs()
1954 TIB = skipDebugInstructionsForward(TIB, TIE, false); in HoistCommonCodeInSuccs()
1956 if (TIB == TIE || FIB == FIE) in HoistCommonCodeInSuccs()
1959 if (!TIB->isIdenticalTo(*FIB, MachineInstr::CheckKillDead)) in HoistCommonCodeInSuccs()
1962 if (TII->isPredicated(*TIB)) in HoistCommonCodeInSuccs()
1967 for (MachineOperand &MO : TIB->operands()) { in HoistCommonCodeInSuccs()
2018 if (!TIB->isSafeToMove(nullptr, DontMoveAcrossStore)) in HoistCommonCodeInSuccs()
2022 for (const MachineOperand &MO : TIB->all_uses()) { in HoistCommonCodeInSuccs()
2040 for (const MachineOperand &MO : TIB->all_defs()) { in HoistCommonCodeInSuccs()
2051 ++TIB; in HoistCommonCodeInSuccs()
2058 MBB->splice(Loc, TBB, TBB->begin(), TIB); in HoistCommonCodeInSuccs()