Searched refs:SelI (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonLoopIdiomRecognition.cpp | 622 bool matchLeftShift(SelectInst *SelI, Value *CIV, ParsedValues &PV); 623 bool matchRightShift(SelectInst *SelI, ParsedValues &PV); 683 bool PolynomialMultiplyRecognize::matchLeftShift(SelectInst *SelI, in matchLeftShift() argument 692 Value *CondV = SelI->getCondition(); in matchLeftShift() 693 Value *TrueV = SelI->getTrueValue(); in matchLeftShift() 694 Value *FalseV = SelI->getFalseValue(); in matchLeftShift() 766 if (!SelI->hasOneUse()) in matchLeftShift() 772 Value *U = *SelI->user_begin(); in matchLeftShift() 773 if (!match(U, m_c_Xor(m_Specific(SelI), m_Value(R)))) in matchLeftShift() 797 bool PolynomialMultiplyRecognize::matchRightShift(SelectInst *SelI, in matchRightShift() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | DFAJumpThreading.cpp | 447 } else if (SelectInst *SelI = dyn_cast<SelectInst>(Current)) { in isCandidate() local 448 if (!isValidSelectInst(SelI)) in isCandidate() 450 addToQueue(SelI->getTrueValue(), CurrentIncomingBB, Q, SeenValues); in isCandidate() 451 addToQueue(SelI->getFalseValue(), CurrentIncomingBB, Q, SeenValues); in isCandidate() 452 LLVM_DEBUG(dbgs() << "\tselect: " << *SelI << "\n"); in isCandidate() 453 if (auto *SelIUse = dyn_cast<PHINode>(SelI->user_back())) in isCandidate() 454 SelectInsts.push_back(SelectInstToUnfold(SelI, SelIUse)); in isCandidate()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SjLjEHPrepare.cpp | 184 auto *SelI = cast<Instruction>(SelVal); in substituteLPadValues() local 185 IRBuilder<> Builder(SelI->getParent(), std::next(SelI->getIterator())); in substituteLPadValues()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64InstructionSelector.cpp | 4908 bool AArch64InstructionSelector::tryOptSelectConjunction(GSelect &SelI, in tryOptSelectConjunction() argument 4911 MachineInstr *ConjMI = emitConjunction(SelI.getCondReg(), AArch64CC, MIB); in tryOptSelectConjunction() 4915 emitSelect(SelI.getReg(0), SelI.getTrueReg(), SelI.getFalseReg(), AArch64CC, MIB); in tryOptSelectConjunction() 4916 SelI.eraseFromParent(); in tryOptSelectConjunction()
|