Home | History | Annotate | Download | only in NVPTX

Lines Matching refs:TBB

131 ///    just return false, leaving TBB/FBB null.
132 /// 2. If this block ends with only an unconditional branch, it sets TBB to be
135 /// an successor block, it sets TBB to be the branch destination block and a
140 /// block, it returns the 'true' destination in TBB, the 'false' destination
149 MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB,
162 TBB = LastInst->getOperand(0).getMBB();
166 TBB = LastInst->getOperand(1).getMBB();
184 TBB = SecondLastInst->getOperand(1).getMBB();
194 TBB = SecondLastInst->getOperand(0).getMBB();
230 MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB,
233 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
240 BuildMI(&MBB, DL, get(NVPTX::GOTO)).addMBB(TBB);
243 .addMBB(TBB);
248 BuildMI(&MBB, DL, get(NVPTX::CBranch)).addReg(Cond[0].getReg()).addMBB(TBB);