Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Users

735     for (User *U : PN->users()) {
740 // Otherwise, we can replace *all* users with the new PHI we form.
1727 isAllocSiteRemovable(Instruction *AI, SmallVectorImpl<WeakVH> &Users,
1734 for (User *U : PI->users()) {
1743 Users.push_back(I);
1752 Users.push_back(I);
1778 Users.push_back(I);
1784 Users.push_back(I);
1793 Users.push_back(I);
1807 SmallVector<WeakVH, 64> Users;
1808 if (isAllocSiteRemovable(&MI, Users, TLI)) {
1809 for (unsigned i = 0, e = Users.size(); i != e; ++i) {
1810 Instruction *I = cast_or_null<Instruction>(&*Users[i]);
2353 // correct too but reordering filters pointlessly might confuse users.
2764 // Push the new instruction and any users onto the worklist.