Home | History | Annotate | Download | only in Scalar

Lines Matching refs:Uses

71 /// \brief Keeps track of a constant candidate and its uses.
73 ConstantUseListType Uses;
83 Uses.push_back(ConstantUser(Inst, Idx));
90 ConstantUseListType Uses;
93 RebasedConstantInfo(ConstantUseListType &&Uses, Constant *Offset)
94 : Uses(Uses), Offset(Offset) { }
235 /// \brief Find an insertion point that dominates all uses.
242 for (auto const &U : RCI.Uses)
269 /// could also be a cast instruction or a constant expression that uses the
377 NumUses += ConstCand->Uses.size();
396 RebasedConstantInfo(std::move(ConstCand->Uses), Offset));
552 for (auto const &U : RCI.Uses)
559 "All uses should be instructions.");