reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Scalar/LoopDistribute.cpp
  133     Set.insert(I);
  140   void add(Instruction *I) { Set.insert(I); }
  143   InstructionSet::iterator begin() { return Set.begin(); }
  144   InstructionSet::iterator end() { return Set.end(); }
  145   InstructionSet::const_iterator begin() const { return Set.begin(); }
  146   InstructionSet::const_iterator end() const { return Set.end(); }
  147   bool empty() const { return Set.empty(); }
  152     Other.Set.insert(Set.begin(), Set.end());
  152     Other.Set.insert(Set.begin(), Set.end());
  152     Other.Set.insert(Set.begin(), Set.end());
  153     Set.clear();
  164       Set.insert(B->getTerminator());
  168     SmallVector<Instruction *, 8> Worklist(Set.begin(), Set.end());
  168     SmallVector<Instruction *, 8> Worklist(Set.begin(), Set.end());
  174         if (I && OrigLoop->contains(I->getParent()) && Set.insert(I).second)
  220         if (!Set.count(&Inst)) {
  242     for (auto *I : Set)