Searched refs:BOpc (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineVectorOps.cpp | 2293 BinaryOperator::BinaryOps BOpc = Opc0; in foldSelectShuffle() local 2304 (Instruction::isIntDivRem(BOpc) || Instruction::isShift(BOpc)); in foldSelectShuffle() 2306 NewC = InstCombiner::getSafeVectorConstantForBinop(BOpc, NewC, in foldSelectShuffle() 2341 Value *NewBO = ConstantsAreOp1 ? Builder.CreateBinOp(BOpc, V, NewC) : in foldSelectShuffle() 2342 Builder.CreateBinOp(BOpc, NewC, V); in foldSelectShuffle()
|
| H A D | InstCombineCompares.cpp | 1975 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; in foldICmpOrXorSubChain() local 1981 LhsCmp = Builder.CreateBinOp(BOpc, LhsCmp, RhsCmp); in foldICmpOrXorSubChain() 2068 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; in foldICmpOrConstant() local 2069 return BinaryOperator::Create(BOpc, CmpP, CmpQ); in foldICmpOrConstant()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | IRTranslator.cpp | 444 Instruction::BinaryOps BOpc = (Instruction::BinaryOps)0; in findMergedConditions() local 446 BOpc = match(BOp, m_LogicalAnd(m_Value(BOpOp0), m_Value(BOpOp1))) in findMergedConditions() 452 if (BOpc == Instruction::And) in findMergedConditions() 453 BOpc = Instruction::Or; in findMergedConditions() 454 else if (BOpc == Instruction::Or) in findMergedConditions() 455 BOpc = Instruction::And; in findMergedConditions() 461 bool BOpIsInOrAndTree = BOpc && BOpc == Opc && BOp->hasOneUse(); in findMergedConditions()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMBaseInstrInfo.cpp | 506 int BOpc = !AFI->isThumbFunction() in insertBranch() local 522 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).add(predOps(ARMCC::AL)); in insertBranch() 524 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB); in insertBranch() 544 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).add(predOps(ARMCC::AL)); in insertBranch() 546 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB); in insertBranch()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonInstrInfo.cpp | 634 unsigned BOpc = Hexagon::J2_jump; in insertBranch() local 662 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB); in insertBranch() 722 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB); in insertBranch()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 2461 Instruction::BinaryOps BOpc = (Instruction::BinaryOps)0; in FindMergedConditions() local 2463 BOpc = match(BOp, m_LogicalAnd(m_Value(BOpOp0), m_Value(BOpOp1))) in FindMergedConditions() 2469 if (BOpc == Instruction::And) in FindMergedConditions() 2470 BOpc = Instruction::Or; in FindMergedConditions() 2471 else if (BOpc == Instruction::Or) in FindMergedConditions() 2472 BOpc = Instruction::And; in FindMergedConditions() 2478 bool BOpIsInOrAndTree = BOpc && BOpc == Opc && BOp->hasOneUse(); in FindMergedConditions()
|