Lines Matching refs:Set
134 Set.insert(I); in InstPartition()
141 void add(Instruction *I) { Set.insert(I); } in add()
144 InstructionSet::iterator begin() { return Set.begin(); } in begin()
145 InstructionSet::iterator end() { return Set.end(); } in end()
146 InstructionSet::const_iterator begin() const { return Set.begin(); } in begin()
147 InstructionSet::const_iterator end() const { return Set.end(); } in end()
148 bool empty() const { return Set.empty(); } in empty()
153 Other.Set.insert(Set.begin(), Set.end()); in moveTo()
154 Set.clear(); in moveTo()
165 Set.insert(B->getTerminator()); in populateUsedSet()
169 SmallVector<Instruction *, 8> Worklist(Set.begin(), Set.end()); in populateUsedSet()
175 if (I && OrigLoop->contains(I->getParent()) && Set.insert(I).second) in populateUsedSet()
221 if (!Set.count(&Inst)) { in removeUnusedInsts()
243 for (auto *I : Set) in print()
255 InstructionSet Set; member in __anonfcfe86310111::InstPartition