Home | History | Annotate | Download | only in X86

Lines Matching refs:thisMBB

10907   //   thisMBB:
10922 MachineBasicBlock *thisMBB = MBB;
10928 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10929 nextMBB->splice(nextMBB->begin(), thisMBB,
10931 thisMBB->end());
10932 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10934 // Update thisMBB to fall through to newMBB
10935 thisMBB->addSuccessor(newMBB);
11009 // thisMBB (instructions are in pairs, except cmpxchg8b)
11012 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
11033 MachineBasicBlock *thisMBB = MBB;
11039 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11040 nextMBB->splice(nextMBB->begin(), thisMBB,
11042 thisMBB->end());
11043 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11045 // Update thisMBB to fall through to newMBB
11046 thisMBB->addSuccessor(newMBB);
11073 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
11077 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
11093 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
11095 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
11170 // thisMBB:
11188 MachineBasicBlock *thisMBB = MBB;
11194 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11195 nextMBB->splice(nextMBB->begin(), thisMBB,
11197 thisMBB->end());
11198 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11200 // Update thisMBB to fall through to newMBB
11201 thisMBB->addSuccessor(newMBB);
11411 MachineBasicBlock *thisMBB = MBB;
11427 overflowMBB = thisMBB;
11428 endMBB = thisMBB;
11434 // thisMBB
11461 endMBB->splice(endMBB->begin(), thisMBB,
11463 thisMBB->end());
11464 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11466 // Make offsetMBB and overflowMBB successors of thisMBB
11467 thisMBB->addSuccessor(offsetMBB);
11468 thisMBB->addSuccessor(overflowMBB);
11476 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
11485 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
11491 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
11695 // thisMBB:
11701 MachineBasicBlock *thisMBB = BB;
11736 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11741 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);