Lines Matching defs:TBB
73 /// just return false, leaving TBB/FBB null.
74 /// 2. If this block ends with only an unconditional branch, it sets TBB to be
77 /// an successor block, it sets TBB to be the branch destination block and a
82 /// block, it returns the 'true' destination in TBB, the 'false' destination
91 MachineBasicBlock *&TBB,
106 TBB = LastInst.getOperand(0).getMBB();
110 TBB = LastInst.getOperand(1).getMBB();
128 TBB = SecondLastInst.getOperand(1).getMBB();
138 TBB = SecondLastInst.getOperand(0).getMBB();
176 MachineBasicBlock *TBB,
184 assert(TBB && "insertBranch must not be told to insert a fallthrough");
191 BuildMI(&MBB, DL, get(NVPTX::GOTO)).addMBB(TBB);
193 BuildMI(&MBB, DL, get(NVPTX::CBranch)).add(Cond[0]).addMBB(TBB);
198 BuildMI(&MBB, DL, get(NVPTX::CBranch)).add(Cond[0]).addMBB(TBB);