Lines Matching refs:Set
128 Set.insert(I); in InstPartition()
135 void add(Instruction *I) { Set.insert(I); } in add()
138 InstructionSet::iterator begin() { return Set.begin(); } in begin()
139 InstructionSet::iterator end() { return Set.end(); } in end()
140 InstructionSet::const_iterator begin() const { return Set.begin(); } in begin()
141 InstructionSet::const_iterator end() const { return Set.end(); } in end()
142 bool empty() const { return Set.empty(); } in empty()
147 Other.Set.insert(Set.begin(), Set.end()); in moveTo()
148 Set.clear(); in moveTo()
159 Set.insert(B->getTerminator()); in populateUsedSet()
163 SmallVector<Instruction *, 8> Worklist(Set.begin(), Set.end()); in populateUsedSet()
169 if (I && OrigLoop->contains(I->getParent()) && Set.insert(I)) in populateUsedSet()
215 if (!Set.count(&Inst)) { in removeUnusedInsts()
236 for (auto *I : Set) in print()
248 InstructionSet Set; member in __anon5f80120c0111::InstPartition