Searched defs:m_ConstantInt (Results 1 - 2 of 2) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
H A D | PatternMatch.h | 19 // if (match(Exp, m_Or(m_And(m_Value(X), m_ConstantInt(C1)), 20 // m_And(m_Value(Y), m_ConstantInt(C2))))) { 68 /// m_ConstantInt() - Match an arbitrary ConstantInt and ignore it. 69 inline class_match<ConstantInt> m_ConstantInt() { function in namespace:llvm::PatternMatch 132 /// m_ConstantInt<int64_t> - Match a ConstantInt with a specific value. 134 inline constantint_match<Val> m_ConstantInt() { function in namespace:llvm::PatternMatch 227 /// m_ConstantInt - Match a ConstantInt, capturing the value if we match. 228 inline bind_ty<ConstantInt> m_ConstantInt(ConstantInt *&CI) { return CI; } function in namespace:llvm::PatternMatch 262 /// m_ConstantInt - Match a ConstantInt and bind to its value. This does not 264 inline bind_const_intval_ty m_ConstantInt(uint64_ function in namespace:llvm::PatternMatch [all...] |
/external/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 19 // if (match(Exp, m_Or(m_And(m_Value(X), m_ConstantInt(C1)), 20 // m_And(m_Value(Y), m_ConstantInt(C2))))) { 75 inline class_match<ConstantInt> m_ConstantInt() { function in namespace:llvm::PatternMatch 198 template <int64_t Val> inline constantint_match<Val> m_ConstantInt() { function in namespace:llvm::PatternMatch 305 inline bind_ty<ConstantInt> m_ConstantInt(ConstantInt *&CI) { return CI; } function in namespace:llvm::PatternMatch 387 inline bind_const_intval_ty m_ConstantInt(uint64_t &V) { return V; } function in namespace:llvm::PatternMatch 768 return m_Select(C, m_ConstantInt<L>(), m_ConstantInt<R>());
|
Completed in 1019 milliseconds