Lines Matching refs:CombinedAdd
113 auto *CombinedAdd = cast<VPInstruction>(CombinedStore->getOperand(0)); in TEST_F() local
114 EXPECT_EQ(Instruction::Add, CombinedAdd->getOpcode()); in TEST_F()
116 auto *CombinedLoadA = cast<VPInstruction>(CombinedAdd->getOperand(0)); in TEST_F()
117 auto *CombinedLoadB = cast<VPInstruction>(CombinedAdd->getOperand(1)); in TEST_F()
122 delete CombinedAdd; in TEST_F()
187 auto *CombinedAdd = cast<VPInstruction>(CombinedStore->getOperand(0)); in TEST_F() local
188 EXPECT_EQ(Instruction::Add, CombinedAdd->getOpcode()); in TEST_F()
190 auto *CombinedLoadA = cast<VPInstruction>(CombinedAdd->getOperand(0)); in TEST_F()
191 auto *CombinedLoadB = cast<VPInstruction>(CombinedAdd->getOperand(1)); in TEST_F()
201 delete CombinedAdd; in TEST_F()
257 auto *CombinedAdd = cast<VPInstruction>(CombinedStore->getOperand(0)); in TEST_F() local
258 EXPECT_EQ(Instruction::Add, CombinedAdd->getOpcode()); in TEST_F()
260 auto *CombinedLoadA = cast<VPInstruction>(CombinedAdd->getOperand(0)); in TEST_F()
261 EXPECT_EQ(CombinedLoadA, CombinedAdd->getOperand(1)); in TEST_F()
265 delete CombinedAdd; in TEST_F()
331 VPInstruction *CombinedAdd = in checkReorderExample() local
333 EXPECT_EQ(CombinedAdd->getOpcode(), Instruction::Add); in checkReorderExample()
336 cast<VPInstruction>(CombinedAdd->getOperand(0)); in checkReorderExample()
338 cast<VPInstruction>(CombinedAdd->getOperand(1)); in checkReorderExample()
376 delete CombinedAdd; in checkReorderExample()