Home
last modified time | relevance | path

Searched refs:CIV (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp622 bool matchLeftShift(SelectInst *SelI, Value *CIV, ParsedValues &PV);
625 Value *CIV, ParsedValues &PV, bool PreScan);
684 Value *CIV, ParsedValues &PV) { in matchLeftShift() argument
711 if (match(A, m_Shl(m_One(), m_Specific(CIV)))) { in matchLeftShift()
714 } else if (match(B, m_Shl(m_One(), m_Specific(CIV)))) { in matchLeftShift()
784 if (!match(T, m_Shl(m_Value(Q), m_Specific(CIV))) && in matchLeftShift()
785 !match(T, m_Shl(m_ZExt(m_Value(Q)), m_ZExt(m_Specific(CIV))))) in matchLeftShift()
868 BasicBlock *LoopB, BasicBlock *PrehB, Value *CIV, ParsedValues &PV, in scanSelect() argument
909 if (matchLeftShift(SelI, CIV, PV)) { in scanSelect()
1305 Value *CIV = getCountIV(LoopB); in convertShiftsToLeft() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp3038 auto *CIV = Builder.CreatePHI(Ty, 2, CurLoop->getName() + ".iv"); in recognizeShiftUntilZero() local
3043 Builder.CreateAdd(CIV, ConstantInt::get(Ty, 1), CIV->getName() + ".next", in recognizeShiftUntilZero()
3056 auto *IVDePHId = Builder.CreateAdd(CIV, Start, "", /*HasNUW=*/false, in recognizeShiftUntilZero()
3066 CIV->addIncoming(ConstantInt::get(Ty, 0), LoopPreheaderBB); in recognizeShiftUntilZero()
3067 CIV->addIncoming(CIVNext, LoopHeaderBB); in recognizeShiftUntilZero()
/freebsd/share/misc/
H A Diso316675 CI CIV 384 Côte d'Ivoire
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h334 const APInt &CIV = CI->getValue(); in match() local
336 return CIV == static_cast<uint64_t>(Val); in match()
340 return -CIV == -Val; in match()