Home | History | Annotate | Download | only in AArch64

Lines Matching refs:TrueBB

912   //     b.ne TrueBB
914 // TrueBB:
917 // Dest = PHI [IfTrue, TrueBB], [IfFalse, OrigBB]
932 MachineBasicBlock *TrueBB = MF->CreateMachineBasicBlock(LLVM_BB);
934 MF->insert(It, TrueBB);
942 BuildMI(MBB, DL, TII->get(AArch64::Bcc)).addImm(CondCode).addMBB(TrueBB);
944 MBB->addSuccessor(TrueBB);
947 // TrueBB falls through to the end.
948 TrueBB->addSuccessor(EndBB);
951 TrueBB->addLiveIn(AArch64::NZCV);
957 .addMBB(TrueBB)