Searched refs:BInst (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp562 BranchInst *BInst = dyn_cast<BranchInst>(DomBB->getTerminator()); local
567 if (!BInst || !BInst->isConditional())
570 Value *Cond = BInst->getCondition();
576 ? BInst->getSuccessor(1)
577 : BInst->getSuccessor(0);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp244 auto *BInst = getDefOrUser(BDef, B.U); local
245 return valueComesBefore(AInst, BInst);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp2099 MCInst BInst; local
2100 BInst.setOpcode(inMicroMipsMode() ? Mips::BEQ_MM : Mips::BEQ);
2101 BInst.addOperand(MCOperand::createReg(Mips::ZERO));
2102 BInst.addOperand(MCOperand::createReg(Mips::ZERO));
2103 BInst.addOperand(Inst.getOperand(0));
2104 Inst = BInst;

Completed in 185 milliseconds