Searched defs:api_pred_ty (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/IR/
H A DPatternMatch.h218 template <typename Predicate> struct api_pred_ty : public Predicate { struct in namespace:llvm::PatternMatch
220 api_pred_ty(const APInt *&R) : Res(R) {} function in struct:llvm::PatternMatch::api_pred_ty
245 inline api_pred_ty<is_one> m_One(const APInt *&V) { return V; }
255 inline api_pred_ty<is_all_ones> m_AllOnes(const APInt *&V) { return V; }
265 inline api_pred_ty<is_sign_bit> m_SignBit(const APInt *&V) { return V; }
273 inline api_pred_ty<is_power2> m_Power2(const APInt *&V) { return V; }
280 inline api_pred_ty<is_maxsignedvalue> m_MaxSignedValue(const APInt *&V) { return V; }

Completed in 71 milliseconds