Home | History | Annotate | Download | only in IR

Lines Matching refs:ArgVec

1730   Constant *ArgVec[] = { C1, C2 };
1731 ExprMapKeyType Key(Opcode, ArgVec, 0, Flags);
1807 Constant *ArgVec[] = { C, V1, V2 };
1808 ExprMapKeyType Key(Instruction::Select, ArgVec);
1831 std::vector<Constant*> ArgVec;
1832 ArgVec.reserve(1 + Idxs.size());
1833 ArgVec.push_back(C);
1841 ArgVec.push_back(cast<Constant>(Idxs[i]));
1843 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
1860 Constant *ArgVec[] = { LHS, RHS };
1862 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
1881 Constant *ArgVec[] = { LHS, RHS };
1883 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
1903 Constant *ArgVec[] = { Val, Idx };
1904 const ExprMapKeyType Key(Instruction::ExtractElement, ArgVec);
1923 Constant *ArgVec[] = { Val, Elt, Idx };
1924 const ExprMapKeyType Key(Instruction::InsertElement, ArgVec);
1943 Constant *ArgVec[] = { V1, V2, Mask };
1944 const ExprMapKeyType Key(Instruction::ShuffleVector, ArgVec);