Lines Matching refs:Set
68 Set.insert(I); in InstPartition()
75 void add(Instruction *I) { Set.insert(I); } in add()
78 InstructionSet::iterator begin() { return Set.begin(); } in begin()
79 InstructionSet::iterator end() { return Set.end(); } in end()
80 InstructionSet::const_iterator begin() const { return Set.begin(); } in begin()
81 InstructionSet::const_iterator end() const { return Set.end(); } in end()
82 bool empty() const { return Set.empty(); } in empty()
87 Other.Set.insert(Set.begin(), Set.end()); in moveTo()
88 Set.clear(); in moveTo()
99 Set.insert(B->getTerminator()); in populateUsedSet()
103 SmallVector<Instruction *, 8> Worklist(Set.begin(), Set.end()); in populateUsedSet()
109 if (I && OrigLoop->contains(I->getParent()) && Set.insert(I).second) in populateUsedSet()
155 if (!Set.count(&Inst)) { in removeUnusedInsts()
179 for (auto *I : Set) in print()
191 InstructionSet Set; member in __anone6d84c5b0111::InstPartition