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

References

include/llvm/Analysis/AliasSetTracker.h
  223   iterator begin() const { return iterator(PtrList); }
  225   bool empty() const { return PtrList == nullptr; }
  274       : PtrListEnd(&PtrList), RefCount(0),  AliasAny(false), Access(NoAccess),
  278     return PtrList;
lib/Analysis/AliasSetTracker.cpp
   98   if (AS.PtrList) {
  101     *PtrListEnd = AS.PtrList;
  102     AS.PtrList->setPrevInList(PtrListEnd);
  105     AS.PtrList = nullptr;
  106     AS.PtrListEnd = &AS.PtrList;