Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:Users

802     for (User *U : PN->users()) {
807 // Otherwise, we can replace *all* users with the new PHI we form.
1861 isAllocSiteRemovable(Instruction *AI, SmallVectorImpl<WeakVH> &Users,
1868 for (User *U : PI->users()) {
1877 Users.emplace_back(I);
1886 Users.emplace_back(I);
1912 Users.emplace_back(I);
1918 Users.emplace_back(I);
1927 Users.emplace_back(I);
1941 SmallVector<WeakVH, 64> Users;
1942 if (isAllocSiteRemovable(&MI, Users, TLI)) {
1943 for (unsigned i = 0, e = Users.size(); i != e; ++i) {
1944 Instruction *I = cast_or_null<Instruction>(&*Users[i]);
2550 // correct too but reordering filters pointlessly might confuse users.
2840 // Push the new instruction and any users onto the worklist.