Home | History | Annotate | Download | only in Scalar

Lines Matching defs:Key

1269   SmallVector<const SCEV *, 4> Key = F.BaseRegs;
1270 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1272 std::sort(Key.begin(), Key.end());
1273 return Uniquifier.count(Key);
1284 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
1285 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1287 std::sort(Key.begin(), Key.end());
1289 if (!Uniquifier.insert(Key).second)
3907 SmallVector<const SCEV *, 4> Key;
3910 Key.push_back(Reg);
3914 Key.push_back(F.ScaledReg);
3917 std::sort(Key.begin(), Key.end());
3920 BestFormulae.insert(std::make_pair(Key, FIdx));