Searched refs:BOpc (Results 1 – 6 of 6) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineVectorOps.cpp | 2267 BinaryOperator::BinaryOps BOpc = Opc0; in foldSelectShuffle() local 2278 (Instruction::isIntDivRem(BOpc) || Instruction::isShift(BOpc)); in foldSelectShuffle() 2280 NewC = InstCombiner::getSafeVectorConstantForBinop(BOpc, NewC, in foldSelectShuffle() 2315 Value *NewBO = ConstantsAreOp1 ? Builder.CreateBinOp(BOpc, V, NewC) : in foldSelectShuffle() 2316 Builder.CreateBinOp(BOpc, NewC, V); in foldSelectShuffle()
|
| H A D | InstCombineCompares.cpp | 1923 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; in foldICmpOrConstant() local 1924 return BinaryOperator::Create(BOpc, CmpP, CmpQ); in foldICmpOrConstant() 1936 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; in foldICmpOrConstant() local 1937 return BinaryOperator::Create(BOpc, Cmp12, Cmp34); in foldICmpOrConstant()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/ |
| H A D | IRTranslator.cpp | 440 Instruction::BinaryOps BOpc = (Instruction::BinaryOps)0; in findMergedConditions() local 442 BOpc = match(BOp, m_LogicalAnd(m_Value(BOpOp0), m_Value(BOpOp1))) in findMergedConditions() 448 if (BOpc == Instruction::And) in findMergedConditions() 449 BOpc = Instruction::Or; in findMergedConditions() 450 else if (BOpc == Instruction::Or) in findMergedConditions() 451 BOpc = Instruction::And; in findMergedConditions() 457 bool BOpIsInOrAndTree = BOpc && BOpc == Opc && BOp->hasOneUse(); in findMergedConditions()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonInstrInfo.cpp | 633 unsigned BOpc = Hexagon::J2_jump; in insertBranch() local 661 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB); in insertBranch() 721 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB); in insertBranch()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 2283 Instruction::BinaryOps BOpc = (Instruction::BinaryOps)0; in FindMergedConditions() local 2285 BOpc = match(BOp, m_LogicalAnd(m_Value(BOpOp0), m_Value(BOpOp1))) in FindMergedConditions() 2291 if (BOpc == Instruction::And) in FindMergedConditions() 2292 BOpc = Instruction::Or; in FindMergedConditions() 2293 else if (BOpc == Instruction::Or) in FindMergedConditions() 2294 BOpc = Instruction::And; in FindMergedConditions() 2300 bool BOpIsInOrAndTree = BOpc && BOpc == Opc && BOp->hasOneUse(); in FindMergedConditions()
|