enum FunctionModRefLocation

Description

The locations at which a function might access memory. These are primarily used in conjunction with the \c AccessKind bits to describe both the nature of access and the locations of access for a function call.

Declared at: llvm/include/llvm/Analysis/AliasAnalysis.h:246

Enumerators

NameValueComment
FMRL_Nowhere0Base case is no access to memory.
FMRL_ArgumentPointees8Access to memory via argument pointers.
FMRL_InaccessibleMem16Memory that is inaccessible via LLVM IR.
FMRL_Anywhere56Access to any memory.