Lines Matching defs:TBB
93 MachineBasicBlock *&TBB,
117 TBB = LastInst->getOperand(0).getMBB();
122 parseCondBranch(LastInst, TBB, Cond);
141 TBB = LastInst->getOperand(0).getMBB();
156 parseCondBranch(SecondLastInst, TBB, Cond);
164 TBB = SecondLastInst->getOperand(0).getMBB();
256 MachineBasicBlock &MBB, DebugLoc DL, MachineBasicBlock *TBB,
260 BuildMI(&MBB, DL, get(AArch64::Bcc)).addImm(Cond[0].getImm()).addMBB(TBB);
267 MIB.addMBB(TBB);
272 MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB,
275 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
279 BuildMI(&MBB, DL, get(AArch64::B)).addMBB(TBB);
281 instantiateCondBranch(MBB, DL, TBB, Cond);
286 instantiateCondBranch(MBB, DL, TBB, Cond);