enum AliasSet::AccessLattice

Description

The kinds of access this alias set models. We keep track of whether this alias set merely refers to the locations of memory (and not any particular access), whether it modifies or references the memory, or whether it does both. The lattice goes from "NoAccess" to either RefAccess or ModAccess, then to ModRefAccess as necessary.

Declared at: llvm/include/llvm/Analysis/AliasSetTracker.h:169

Enumerators

NameValueComment
NoAccess0
RefAccess1
ModAccess2
ModRefAccess3