Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DMIPatternMatch.h185 struct SpecificConstantMatch { struct
187 SpecificConstantMatch(int64_t RequestedVal) : RequestedVal(RequestedVal) {} in SpecificConstantMatch() argument
195 inline SpecificConstantMatch m_SpecificICst(int64_t RequestedValue) { in m_SpecificICst() argument
196 return SpecificConstantMatch(RequestedValue); in m_SpecificICst()
238 inline SpecificConstantMatch m_ZeroInt() { return SpecificConstantMatch(0); } in m_ZeroInt()
239 inline SpecificConstantMatch m_AllOnesInt() { in m_AllOnesInt()
240 return SpecificConstantMatch(-1); in m_AllOnesInt()
765 inline BinaryOp_match<SpecificConstantMatch, SrcTy, TargetOpcode::G_SUB>
773 inline BinaryOp_match<SrcTy, SpecificConstantMatch, TargetOpcode::G_XOR, true>