Home
last modified time | relevance | path

Searched refs:BOpc (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineVectorOps.cpp1289 BinaryOperator::BinaryOps BOpc = Opc0; in foldSelectShuffle() local
1300 (Instruction::isIntDivRem(BOpc) || Instruction::isShift(BOpc)); in foldSelectShuffle()
1302 NewC = getSafeVectorConstantForBinop(BOpc, NewC, ConstantsAreOp1); in foldSelectShuffle()
1336 Instruction *NewBO = ConstantsAreOp1 ? BinaryOperator::Create(BOpc, V, NewC) : in foldSelectShuffle()
1337 BinaryOperator::Create(BOpc, NewC, V); in foldSelectShuffle()
DInstCombineCompares.cpp1762 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; in foldICmpOrConstant() local
1763 return BinaryOperator::Create(BOpc, CmpP, CmpQ); in foldICmpOrConstant()
1775 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or; in foldICmpOrConstant() local
1776 return BinaryOperator::Create(BOpc, Cmp12, Cmp34); in foldICmpOrConstant()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMBaseInstrInfo.cpp403 int BOpc = !AFI->isThumbFunction() in InsertBranch() local
417 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).addImm(ARMCC::AL).addReg(0); in InsertBranch()
419 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB); in InsertBranch()
430 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).addImm(ARMCC::AL).addReg(0); in InsertBranch()
432 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB); in InsertBranch()
/external/llvm/lib/Target/ARM/
DARMBaseInstrInfo.cpp415 int BOpc = !AFI->isThumbFunction() in InsertBranch() local
431 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).addImm(ARMCC::AL).addReg(0); in InsertBranch()
433 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB); in InsertBranch()
444 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).addImm(ARMCC::AL).addReg(0); in InsertBranch()
446 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB); in InsertBranch()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMBaseInstrInfo.cpp437 int BOpc = !AFI->isThumbFunction() in insertBranch() local
453 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).add(predOps(ARMCC::AL)); in insertBranch()
455 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB); in insertBranch()
470 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).add(predOps(ARMCC::AL)); in insertBranch()
472 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB); in insertBranch()
/external/llvm/lib/Target/Hexagon/
DHexagonInstrInfo.cpp569 unsigned BOpc = Hexagon::J2_jump; in InsertBranch() local
598 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB); in InsertBranch()
655 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB); in InsertBranch()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonInstrInfo.cpp585 unsigned BOpc = Hexagon::J2_jump; in insertBranch() local
613 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB); in insertBranch()
673 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB); in insertBranch()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp1837 unsigned BOpc = 0; in FindMergedConditions() local
1839 BOpc = BOp->getOpcode(); in FindMergedConditions()
1841 if (BOpc == Instruction::And) in FindMergedConditions()
1842 BOpc = Instruction::Or; in FindMergedConditions()
1843 else if (BOpc == Instruction::Or) in FindMergedConditions()
1844 BOpc = Instruction::And; in FindMergedConditions()
1850 BOpc != unsigned(Opc) || !BOp->hasOneUse() || in FindMergedConditions()