• Home
  • Raw
  • Download

Lines Matching refs:LongBrMBB

261   MachineBasicBlock *LongBrMBB = MF->CreateMachineBasicBlock(BB);  in expandToLongBranch()  local
267 MF->insert(FallThroughMBB, LongBrMBB); in expandToLongBranch()
268 MBB->replaceSuccessor(TgtMBB, LongBrMBB); in expandToLongBranch()
273 LongBrMBB->addSuccessor(BalTgtMBB); in expandToLongBranch()
296 Pos = LongBrMBB->begin(); in expandToLongBranch()
298 BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::ADDiu), Mips::SP) in expandToLongBranch()
300 BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::SW)).addReg(Mips::RA) in expandToLongBranch()
319 BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_LUi), Mips::AT) in expandToLongBranch()
321 MIBundleBuilder(*LongBrMBB, Pos) in expandToLongBranch()
386 Pos = LongBrMBB->begin(); in expandToLongBranch()
388 BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::DADDiu), Mips::SP_64) in expandToLongBranch()
390 BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::SD)).addReg(Mips::RA_64) in expandToLongBranch()
392 BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_DADDiu), in expandToLongBranch()
395 BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::DSLL), Mips::AT_64) in expandToLongBranch()
398 MIBundleBuilder(*LongBrMBB, Pos) in expandToLongBranch()
424 assert(LongBrMBB->size() + BalTgtMBB->size() == LongBranchSeqSize); in expandToLongBranch()
431 Pos = LongBrMBB->begin(); in expandToLongBranch()
432 LongBrMBB->addSuccessor(TgtMBB); in expandToLongBranch()
433 MIBundleBuilder(*LongBrMBB, Pos) in expandToLongBranch()
437 assert(LongBrMBB->size() == LongBranchSeqSize); in expandToLongBranch()
444 I.Br->addOperand(MachineOperand::CreateMBB(LongBrMBB)); in expandToLongBranch()