Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp578 BranchInst *BInst = dyn_cast<BranchInst>(DomBB->getTerminator()); in isUnreachableDueToPreviousUnswitching() local
583 if (!BInst || !BInst->isConditional()) in isUnreachableDueToPreviousUnswitching()
586 Value *Cond = BInst->getCondition(); in isUnreachableDueToPreviousUnswitching()
592 ? BInst->getSuccessor(1) in isUnreachableDueToPreviousUnswitching()
593 : BInst->getSuccessor(0); in isUnreachableDueToPreviousUnswitching()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp244 auto *BInst = getDefOrUser(BDef, B.U); in localComesBefore() local
245 return valueComesBefore(AInst, BInst); in localComesBefore()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp2099 MCInst BInst; in processInstruction() local
2100 BInst.setOpcode(inMicroMipsMode() ? Mips::BEQ_MM : Mips::BEQ); in processInstruction()
2101 BInst.addOperand(MCOperand::createReg(Mips::ZERO)); in processInstruction()
2102 BInst.addOperand(MCOperand::createReg(Mips::ZERO)); in processInstruction()
2103 BInst.addOperand(Inst.getOperand(0)); in processInstruction()
2104 Inst = BInst; in processInstruction()