Searched refs:CastInst_match (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 1902 template <typename Op_t, typename Class> struct CastInst_match { struct 1905 CastInst_match(const Op_t &OpMatch) : Op(OpMatch) {} in CastInst_match() argument 2013 inline CastInst_match<OpTy, TruncInst> m_Trunc(const OpTy &Op) { in m_Trunc() 2014 return CastInst_match<OpTy, TruncInst>(Op); in m_Trunc() 2032 inline match_combine_or<CastInst_match<OpTy, TruncInst>, OpTy> 2039 inline CastInst_match<OpTy, SExtInst> m_SExt(const OpTy &Op) { in m_SExt() 2040 return CastInst_match<OpTy, SExtInst>(Op); in m_SExt() 2045 inline CastInst_match<OpTy, ZExtInst> m_ZExt(const OpTy &Op) { in m_ZExt() 2046 return CastInst_match<OpTy, ZExtInst>(Op); in m_ZExt() 2055 inline match_combine_or<CastInst_match<OpTy, ZExtInst>, OpTy> [all …]
|