Lines Matching refs:Set
133 Set.insert(I); in InstPartition()
140 void add(Instruction *I) { Set.insert(I); } in add()
143 InstructionSet::iterator begin() { return Set.begin(); } in begin()
144 InstructionSet::iterator end() { return Set.end(); } in end()
145 InstructionSet::const_iterator begin() const { return Set.begin(); } in begin()
146 InstructionSet::const_iterator end() const { return Set.end(); } in end()
147 bool empty() const { return Set.empty(); } in empty()
152 Other.Set.insert(Set.begin(), Set.end()); in moveTo()
153 Set.clear(); in moveTo()
164 Set.insert(B->getTerminator()); in populateUsedSet()
168 SmallVector<Instruction *, 8> Worklist(Set.begin(), Set.end()); in populateUsedSet()
174 if (I && OrigLoop->contains(I->getParent()) && Set.insert(I).second) in populateUsedSet()
220 if (!Set.count(&Inst)) { in removeUnusedInsts()
242 for (auto *I : Set) in print()
254 InstructionSet Set; member in __anonc25583c00111::InstPartition