Lines Matching defs:I4
85 VPInstruction *I4 = new VPInstruction(4, {});
88 VPBB2.appendRecipe(I4);
91 I3->moveAfter(I4);
94 CHECK_ITERATOR(VPBB2, I4, I3, I5);
95 EXPECT_EQ(I3->getParent(), I4->getParent());
112 VPInstruction *I4 = new VPInstruction(4, {});
115 VPBB2.appendRecipe(I4);
118 I3->moveBefore(VPBB2, I4->getIterator());
121 CHECK_ITERATOR(VPBB2, I3, I4, I5);
122 EXPECT_EQ(I3->getParent(), I4->getParent());
126 I4->moveBefore(VPBB3, VPBB3.end());
130 CHECK_ITERATOR(VPBB3, I4);
131 EXPECT_EQ(&VPBB3, I4->getParent());
679 VPInstruction *I4 = new VPInstruction(Instruction::Mul, {I2, I1});
680 VPInstruction *I5 = new VPInstruction(Instruction::Ret, {I4});
682 VPBB2->appendRecipe(I4);
770 OS << *I4;