Lines Matching refs:FortyTwo
539 auto FortyTwo = B.buildConstant(LLT::scalar(64), 42); in TEST_F() local
540 EXPECT_TRUE(mi_match(FortyTwo.getReg(0), *MRI, m_SpecificICst(42))); in TEST_F()
541 EXPECT_FALSE(mi_match(FortyTwo.getReg(0), *MRI, m_SpecificICst(123))); in TEST_F()
545 auto MIBAdd = B.buildAdd(s64, Copies[0], FortyTwo); in TEST_F()
565 MachineInstrBuilder FortyTwo = B.buildConstant(s64, 42); in TEST_F() local
570 EXPECT_FALSE(mi_match(FortyTwo.getReg(0), *MRI, m_SpecificICstSplat(42))); in TEST_F()
581 MachineInstrBuilder Add = B.buildAdd(s64, Copies[0], FortyTwo); in TEST_F()
595 MachineInstrBuilder FortyTwo = B.buildConstant(s64, 42); in TEST_F() local
601 EXPECT_TRUE(mi_match(FortyTwo.getReg(0), *MRI, m_SpecificICstOrSplat(42))); in TEST_F()
612 MachineInstrBuilder Add = B.buildAdd(s64, Copies[0], FortyTwo); in TEST_F()
623 auto FortyTwo = B.buildConstant(LLT::scalar(64), 42); in TEST_F() local
624 EXPECT_FALSE(mi_match(FortyTwo.getReg(0), *MRI, m_ZeroInt())); in TEST_F()
634 auto FortyTwo = B.buildConstant(LLT::scalar(64), 42); in TEST_F() local
635 EXPECT_FALSE(mi_match(FortyTwo.getReg(0), *MRI, m_AllOnesInt())); in TEST_F()
727 auto FortyTwo = B.buildConstant(LLT::scalar(64), 42); in TEST_F() local
728 auto NotNegInst2 = B.buildSub(s64, FortyTwo, Copies[0]); in TEST_F()
760 auto FortyTwo = B.buildConstant(LLT::scalar(64), 42); in TEST_F() local
761 auto WrongCst = B.buildXor(s64, Copies[0], FortyTwo); in TEST_F()