Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp586 return (match(L1, m_Load(m_Specific(LHS))) && in isMinMaxWithLoads()
587 match(L2, m_Load(m_Specific(RHS)))) || in isMinMaxWithLoads()
588 (match(L1, m_Load(m_Specific(RHS))) && in isMinMaxWithLoads()
589 match(L2, m_Load(m_Specific(LHS)))); in isMinMaxWithLoads()
1358 if (!match(SI.getValueOperand(), m_Load(m_BitCast(m_Value(LoadAddr))))) in removeBitcastsFromLoadStoreOnMinMax()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DPatternMatch.cpp406 EXPECT_TRUE(m_Load(m_Value(MatchLoad)).match(LoadInst)); in TEST_F()
409 EXPECT_TRUE(m_Load(m_Specific(Alloca)).match(LoadInst)); in TEST_F()
411 EXPECT_FALSE(m_Load(m_Value(MatchLoad)).match(Alloca)); in TEST_F()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMParallelDSP.cpp237 if (match(Val, m_Load(m_Value()))) { in IsNarrowSequence()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DPatternMatch.h1200 template <typename OpTy> inline LoadClass_match<OpTy> m_Load(const OpTy &Op) { in m_Load() function