Searched refs:BOpc (Results 1 – 6 of 6) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineVectorOps.cpp | 1942 BinaryOperator::BinaryOps BOpc = Opc0; in foldSelectShuffle() local 1953 (Instruction::isIntDivRem(BOpc) || Instruction::isShift(BOpc)); in foldSelectShuffle() 1955 NewC = InstCombiner::getSafeVectorConstantForBinop(BOpc, NewC, in foldSelectShuffle() 1990 Instruction *NewBO = ConstantsAreOp1 ? BinaryOperator::Create(BOpc, V, NewC) : in foldSelectShuffle() 1991 BinaryOperator::Create(BOpc, NewC, V); in foldSelectShuffle()
|
| H A D | InstCombineCompares.cpp | 1928 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; in foldICmpOrConstant() local 1929 return BinaryOperator::Create(BOpc, CmpP, CmpQ); in foldICmpOrConstant() 1941 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; in foldICmpOrConstant() local 1942 return BinaryOperator::Create(BOpc, Cmp12, Cmp34); in foldICmpOrConstant()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| H A D | IRTranslator.cpp | 425 Instruction::BinaryOps BOpc = (Instruction::BinaryOps)0; in findMergedConditions() local 427 BOpc = match(BOp, m_LogicalAnd(m_Value(BOpOp0), m_Value(BOpOp1))) in findMergedConditions() 433 if (BOpc == Instruction::And) in findMergedConditions() 434 BOpc = Instruction::Or; in findMergedConditions() 435 else if (BOpc == Instruction::Or) in findMergedConditions() 436 BOpc = Instruction::And; in findMergedConditions() 442 bool BOpIsInOrAndTree = BOpc && BOpc == Opc && BOp->hasOneUse(); in findMergedConditions()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMBaseInstrInfo.cpp | 486 int BOpc = !AFI->isThumbFunction() in insertBranch() local 502 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).add(predOps(ARMCC::AL)); in insertBranch() 504 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB); in insertBranch() 519 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).add(predOps(ARMCC::AL)); in insertBranch() 521 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB); in insertBranch()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonInstrInfo.cpp | 590 unsigned BOpc = Hexagon::J2_jump; in insertBranch() local 618 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB); in insertBranch() 678 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB); in insertBranch()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 2206 Instruction::BinaryOps BOpc = (Instruction::BinaryOps)0; in FindMergedConditions() local 2208 BOpc = match(BOp, m_LogicalAnd(m_Value(BOpOp0), m_Value(BOpOp1))) in FindMergedConditions() 2214 if (BOpc == Instruction::And) in FindMergedConditions() 2215 BOpc = Instruction::Or; in FindMergedConditions() 2216 else if (BOpc == Instruction::Or) in FindMergedConditions() 2217 BOpc = Instruction::And; in FindMergedConditions() 2223 bool BOpIsInOrAndTree = BOpc && BOpc == Opc && BOp->hasOneUse(); in FindMergedConditions()
|