Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DPatternMatch.cpp480 EXPECT_TRUE(match(VI1, m_InsertElement(m_Value(), m_Value(), m_Value()))); in TEST_F()
482 match(VI1, m_InsertElement(m_Undef(), m_ConstantInt(), m_ConstantInt()))); in TEST_F()
484 match(VI1, m_InsertElement(m_Undef(), m_ConstantInt(), m_Zero()))); in TEST_F()
486 match(VI1, m_InsertElement(m_Undef(), m_SpecificInt(1), m_Zero()))); in TEST_F()
487 EXPECT_TRUE(match(VI2, m_InsertElement(m_Value(), m_Value(), m_Value()))); in TEST_F()
489 match(VI2, m_InsertElement(m_Value(), m_Value(), m_ConstantInt()))); in TEST_F()
491 match(VI2, m_InsertElement(m_Value(), m_ConstantInt(), m_Value()))); in TEST_F()
492 EXPECT_FALSE(match(VI2, m_InsertElement(m_Constant(), m_Value(), m_Value()))); in TEST_F()
493 EXPECT_TRUE(match(VI3, m_InsertElement(m_Value(A), m_Value(B), m_Value(C)))); in TEST_F()
519 m_ShuffleVector(m_InsertElement(m_Undef(), m_SpecificInt(1), m_Zero()), in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DPatternMatch.h1051 m_InsertElement(const Val_t &Val, const Elt_t &Elt, const Idx_t &Idx) { in m_InsertElement() function