Home
last modified time | relevance | path

Searched refs:specific_intval (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanPatternMatch.h129 using specific_intval = int_pred_ty<is_specific_int, Bitwidth>; variable
131 inline specific_intval<0> m_SpecificInt(uint64_t V) { in m_SpecificInt()
132 return specific_intval<0>(is_specific_int(APInt(64, V))); in m_SpecificInt()
135 inline specific_intval<1> m_False() { in m_False()
136 return specific_intval<1>(is_specific_int(APInt(64, 0))); in m_False()
139 inline specific_intval<1> m_True() { in m_True()
140 return specific_intval<1>(is_specific_int(APInt(64, 1))); in m_True()
500 AllTernaryRecipe_match<Op0_t, Op1_t, specific_intval<1>,
509 inline AllTernaryRecipe_match<Op0_t, specific_intval<1>, Op1_t,
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h987 template <bool AllowPoison> struct specific_intval { struct
990 specific_intval(const APInt &V) : Val(V) {} in specific_intval() argument
1019 inline specific_intval<false> m_SpecificInt(const APInt &V) { in m_SpecificInt()
1020 return specific_intval<false>(V); in m_SpecificInt()
1027 inline specific_intval<true> m_SpecificIntAllowPoison(const APInt &V) { in m_SpecificIntAllowPoison()
1028 return specific_intval<true>(V); in m_SpecificIntAllowPoison()