Lines Matching defs:TBB
75 /// just return false, leaving TBB/FBB null.
76 /// 2. If this block ends with only an unconditional branch, it sets TBB to be
79 /// an successor block, it sets TBB to be the branch destination block and a
84 /// block, it returns the 'true' destination in TBB, the 'false' destination
93 MachineBasicBlock *&TBB,
108 TBB = LastInst.getOperand(0).getMBB();
112 TBB = LastInst.getOperand(1).getMBB();
130 TBB = SecondLastInst.getOperand(1).getMBB();
140 TBB = SecondLastInst.getOperand(0).getMBB();
178 MachineBasicBlock *TBB,
186 assert(TBB && "insertBranch must not be told to insert a fallthrough");
193 BuildMI(&MBB, DL, get(NVPTX::GOTO)).addMBB(TBB);
195 BuildMI(&MBB, DL, get(NVPTX::CBranch)).add(Cond[0]).addMBB(TBB);
200 BuildMI(&MBB, DL, get(NVPTX::CBranch)).add(Cond[0]).addMBB(TBB);