Home | History | Annotate | Download | only in X86

Lines Matching refs:thisMBB

11346   //   thisMBB:
11362 MachineBasicBlock *thisMBB = MBB;
11368 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11369 nextMBB->splice(nextMBB->begin(), thisMBB,
11371 thisMBB->end());
11372 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11374 // Update thisMBB to fall through to newMBB
11375 thisMBB->addSuccessor(newMBB);
11449 // thisMBB (instructions are in pairs, except cmpxchg8b)
11452 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
11474 MachineBasicBlock *thisMBB = MBB;
11480 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11481 nextMBB->splice(nextMBB->begin(), thisMBB,
11483 thisMBB->end());
11484 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11486 // Update thisMBB to fall through to newMBB
11487 thisMBB->addSuccessor(newMBB);
11514 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
11518 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
11534 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
11536 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
11615 // thisMBB:
11633 MachineBasicBlock *thisMBB = MBB;
11639 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11640 nextMBB->splice(nextMBB->begin(), thisMBB,
11642 thisMBB->end());
11643 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11645 // Update thisMBB to fall through to newMBB
11646 thisMBB->addSuccessor(newMBB);
11856 MachineBasicBlock *thisMBB = MBB;
11872 overflowMBB = thisMBB;
11873 endMBB = thisMBB;
11879 // thisMBB
11906 endMBB->splice(endMBB->begin(), thisMBB,
11908 thisMBB->end());
11909 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11911 // Make offsetMBB and overflowMBB successors of thisMBB
11912 thisMBB->addSuccessor(offsetMBB);
11913 thisMBB->addSuccessor(overflowMBB);
11921 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
11930 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
11936 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
12176 // thisMBB:
12182 MachineBasicBlock *thisMBB = BB;
12219 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
12224 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);