Lines Matching refs:BalTgtMBB
269 MachineBasicBlock *BalTgtMBB = MF->CreateMachineBasicBlock(BB); in expandToLongBranch() local
270 MF->insert(FallThroughMBB, BalTgtMBB); in expandToLongBranch()
271 LongBrMBB->addSuccessor(BalTgtMBB); in expandToLongBranch()
272 BalTgtMBB->addSuccessor(TgtMBB); in expandToLongBranch()
318 .addMBB(TgtMBB).addMBB(BalTgtMBB); in expandToLongBranch()
320 .append(BuildMI(*MF, DL, TII->get(BalOp)).addMBB(BalTgtMBB)) in expandToLongBranch()
324 .addMBB(BalTgtMBB)); in expandToLongBranch()
326 Pos = BalTgtMBB->begin(); in expandToLongBranch()
328 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDu), Mips::AT) in expandToLongBranch()
330 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::LW), Mips::RA) in expandToLongBranch()
334 MIBundleBuilder(*BalTgtMBB, Pos) in expandToLongBranch()
340 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDiu), Mips::SP) in expandToLongBranch()
343 MIBundleBuilder(*BalTgtMBB, Pos) in expandToLongBranch()
389 .addMBB(TgtMBB, MipsII::MO_ABS_HI).addMBB(BalTgtMBB); in expandToLongBranch()
394 .append(BuildMI(*MF, DL, TII->get(BalOp)).addMBB(BalTgtMBB)) in expandToLongBranch()
399 .addMBB(BalTgtMBB)); in expandToLongBranch()
401 Pos = BalTgtMBB->begin(); in expandToLongBranch()
403 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::DADDu), Mips::AT_64) in expandToLongBranch()
405 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::LD), Mips::RA_64) in expandToLongBranch()
408 MIBundleBuilder(*BalTgtMBB, Pos) in expandToLongBranch()
414 assert(LongBrMBB->size() + BalTgtMBB->size() == LongBranchSeqSize); in expandToLongBranch()