Home
last modified time | relevance | path

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

/external/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
DMIPatternMatch.h57 struct SpecificConstantMatch { struct
59 SpecificConstantMatch(int64_t RequestedVal) : RequestedVal(RequestedVal) {} in SpecificConstantMatch() argument
67 inline SpecificConstantMatch m_SpecificICst(int64_t RequestedValue) { in m_SpecificICst() argument
68 return SpecificConstantMatch(RequestedValue); in m_SpecificICst()
73 inline SpecificConstantMatch m_ZeroInt() { return SpecificConstantMatch(0); } in m_ZeroInt()
74 inline SpecificConstantMatch m_AllOnesInt() { in m_AllOnesInt()
75 return SpecificConstantMatch(-1); in m_AllOnesInt()
454 inline BinaryOp_match<SpecificConstantMatch, SrcTy, TargetOpcode::G_SUB>
462 inline BinaryOp_match<SrcTy, SpecificConstantMatch, TargetOpcode::G_XOR, true>