Searched refs:m_ZExt (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 376 if (match(Count, m_ZExt(m_Value(V))) || in foldSelectCttzCtlz() 466 if (match(TrueVal, m_ZExt(m_Specific(CmpLHS))) && in visitSelectInstWithICmp() 470 } else if (match(FalseVal, m_ZExt(m_Specific(CmpLHS))) && in visitSelectInstWithICmp()
|
D | InstCombineCompares.cpp | 3663 if (match(Op0, m_Mul(m_ZExt(m_Value(A)), m_ZExt(m_Value(B))))) { in visitICmpInst() 3667 if (match(Op1, m_Mul(m_ZExt(m_Value(A)), m_ZExt(m_Value(B))))) { in visitICmpInst() 3737 match(Op0, m_ZExt(m_Value(A))) && in visitICmpInst() 3741 match(Op1, m_ZExt(m_Value(A))))) { in visitICmpInst()
|
D | InstCombineAddSub.cpp | 1550 if (C->isNullValue() && match(Op1, m_ZExt(m_Value(X)))) in visitSub()
|
D | InstCombineMulDivRem.cpp | 1022 match(Op1, m_ZExt(m_Shl(m_Power2(), m_Value())))) { in visitUDivOperand()
|
D | InstCombineAndOrXor.cpp | 1233 if (match(Op0, m_OneUse(m_Xor(m_ZExt(m_Value(A)), m_ConstantInt(C1)))) && in matchDeMorgansLaws() 1234 match(Op1, m_OneUse(m_Xor(m_ZExt(m_Value(B)), m_Specific(C1))))) { in matchDeMorgansLaws()
|
D | InstCombineCasts.cpp | 525 match(Src, m_LShr(m_ZExt(m_Value(A)), m_ConstantInt(Cst)))) { in visitTrunc()
|
/external/llvm/include/llvm/IR/ |
D | PatternMatch.h | 813 inline CastClass_match<OpTy, Instruction::ZExt> m_ZExt(const OpTy &Op) { in m_ZExt() function
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 2688 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) { in SimplifyICmpInst()
|