Lines Matching defs:TrueBlock
554 // - TrueBlock is set to the destination if condition evaluates true (it is the
562 MachineBasicBlock *&TrueBlock,
591 TrueBlock = Instruction->getOperand(0).getMBB();
603 TrueBlock = nullptr;
609 // TrueBlock is used to indicate the unconditional destination.
610 TrueBlock = Instruction->getOperand(0).getMBB();
625 // TrueBlock is the target of the previously seen unconditional branch.
626 FalseBlock = TrueBlock;
627 TrueBlock = Instruction->getOperand(0).getMBB();
655 // (TrueBlock and FalseBlock). This function returns the number of machine
658 MachineBasicBlock *TrueBlock,
664 assert(TrueBlock && "insertBranch must not be told to insert a fallthrough");
670 BuildMI(&MBB, DL, get(Lanai::BT)).addMBB(TrueBlock);
678 BuildMI(&MBB, DL, get(Lanai::BRCC)).addMBB(TrueBlock).addImm(ConditionalCode);