Lines Matching refs:BalTgtMBB
268 MachineBasicBlock *BalTgtMBB = MF->CreateMachineBasicBlock(BB); in expandToLongBranch() local
269 MF->insert(FallThroughMBB, BalTgtMBB); in expandToLongBranch()
270 LongBrMBB->addSuccessor(BalTgtMBB); in expandToLongBranch()
271 BalTgtMBB->addSuccessor(TgtMBB); in expandToLongBranch()
317 .addMBB(TgtMBB).addMBB(BalTgtMBB); in expandToLongBranch()
319 .append(BuildMI(*MF, DL, TII->get(BalOp)).addMBB(BalTgtMBB)) in expandToLongBranch()
323 .addMBB(BalTgtMBB)); in expandToLongBranch()
325 Pos = BalTgtMBB->begin(); in expandToLongBranch()
327 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDu), Mips::AT) in expandToLongBranch()
329 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::LW), Mips::RA) in expandToLongBranch()
333 MIBundleBuilder(*BalTgtMBB, Pos) in expandToLongBranch()
339 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDiu), Mips::SP) in expandToLongBranch()
342 MIBundleBuilder(*BalTgtMBB, Pos) in expandToLongBranch()
388 .addMBB(TgtMBB, MipsII::MO_ABS_HI).addMBB(BalTgtMBB); in expandToLongBranch()
393 .append(BuildMI(*MF, DL, TII->get(BalOp)).addMBB(BalTgtMBB)) in expandToLongBranch()
398 .addMBB(BalTgtMBB)); in expandToLongBranch()
400 Pos = BalTgtMBB->begin(); in expandToLongBranch()
402 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::DADDu), Mips::AT_64) in expandToLongBranch()
404 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::LD), Mips::RA_64) in expandToLongBranch()
407 MIBundleBuilder(*BalTgtMBB, Pos) in expandToLongBranch()
413 assert(LongBrMBB->size() + BalTgtMBB->size() == LongBranchSeqSize); in expandToLongBranch()