LLVM  8.0.1
Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
llvm::MemoryLocation Class Reference

Representation for a specific memory location. More...

#include "llvm/Analysis/MemoryLocation.h"

Collaboration diagram for llvm::MemoryLocation:
Collaboration graph
[legend]

Public Types

enum  : uint64_t { UnknownSize = ~UINT64_C(0) }
 UnknownSize - This is a special value which can be used with the size arguments in alias queries to indicate that the caller does not know the sizes of the potential memory references. More...
 

Public Member Functions

 MemoryLocation (const Value *Ptr=nullptr, LocationSize Size=LocationSize::unknown(), const AAMDNodes &AATags=AAMDNodes())
 
MemoryLocation getWithNewPtr (const Value *NewPtr) const
 
MemoryLocation getWithNewSize (LocationSize NewSize) const
 
MemoryLocation getWithoutAATags () const
 
bool operator== (const MemoryLocation &Other) const
 

Static Public Member Functions

static MemoryLocation get (const LoadInst *LI)
 Return a location with information about the memory reference by the given instruction. More...
 
static MemoryLocation get (const StoreInst *SI)
 
static MemoryLocation get (const VAArgInst *VI)
 
static MemoryLocation get (const AtomicCmpXchgInst *CXI)
 
static MemoryLocation get (const AtomicRMWInst *RMWI)
 
static MemoryLocation get (const Instruction *Inst)
 
static Optional< MemoryLocationgetOrNone (const Instruction *Inst)
 
static MemoryLocation getForSource (const MemTransferInst *MTI)
 Return a location representing the source of a memory transfer. More...
 
static MemoryLocation getForSource (const AtomicMemTransferInst *MTI)
 
static MemoryLocation getForSource (const AnyMemTransferInst *MTI)
 
static MemoryLocation getForDest (const MemIntrinsic *MI)
 Return a location representing the destination of a memory set or transfer. More...
 
static MemoryLocation getForDest (const AtomicMemIntrinsic *MI)
 
static MemoryLocation getForDest (const AnyMemIntrinsic *MI)
 
static MemoryLocation getForArgument (const CallBase *Call, unsigned ArgIdx, const TargetLibraryInfo *TLI)
 Return a location representing a particular argument of a call. More...
 
static MemoryLocation getForArgument (const CallBase *Call, unsigned ArgIdx, const TargetLibraryInfo &TLI)
 

Public Attributes

const ValuePtr
 The address of the start of the location. More...
 
LocationSize Size
 The maximum size of the location, in address-units, or UnknownSize if the size is not known. More...
 
AAMDNodes AATags
 The metadata nodes which describes the aliasing of the location (each member is null if that kind of information is unavailable). More...
 

Detailed Description

Representation for a specific memory location.

This abstraction can be used to represent a specific location in memory. The goal of the location is to represent enough information to describe abstract aliasing, modification, and reference behaviors of whatever value(s) are stored in memory at the particular location.

The primary user of this interface is LLVM's Alias Analysis, but other memory analyses such as MemoryDependence can use it as well.

Definition at line 175 of file MemoryLocation.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum : uint64_t

UnknownSize - This is a special value which can be used with the size arguments in alias queries to indicate that the caller does not know the sizes of the potential memory references.

Enumerator
UnknownSize 

Definition at line 180 of file MemoryLocation.h.

Constructor & Destructor Documentation

◆ MemoryLocation()

llvm::MemoryLocation::MemoryLocation ( const Value Ptr = nullptr,
LocationSize  Size = LocationSize::unknown(),
const AAMDNodes AATags = AAMDNodes() 
)
inlineexplicit

Definition at line 244 of file MemoryLocation.h.

Member Function Documentation

◆ get() [1/6]

MemoryLocation MemoryLocation::get ( const LoadInst LI)
static

◆ get() [2/6]

MemoryLocation MemoryLocation::get ( const StoreInst SI)
static

◆ get() [3/6]

MemoryLocation MemoryLocation::get ( const VAArgInst VI)
static

◆ get() [4/6]

MemoryLocation MemoryLocation::get ( const AtomicCmpXchgInst CXI)
static

◆ get() [5/6]

MemoryLocation MemoryLocation::get ( const AtomicRMWInst RMWI)
static

◆ get() [6/6]

static MemoryLocation llvm::MemoryLocation::get ( const Instruction Inst)
inlinestatic

Definition at line 205 of file MemoryLocation.h.

References getOrNone().

◆ getForArgument() [1/2]

MemoryLocation MemoryLocation::getForArgument ( const CallBase Call,
unsigned  ArgIdx,
const TargetLibraryInfo TLI 
)
static

◆ getForArgument() [2/2]

static MemoryLocation llvm::MemoryLocation::getForArgument ( const CallBase Call,
unsigned  ArgIdx,
const TargetLibraryInfo TLI 
)
inlinestatic

Definition at line 239 of file MemoryLocation.h.

◆ getForDest() [1/3]

MemoryLocation MemoryLocation::getForDest ( const MemIntrinsic MI)
static

Return a location representing the destination of a memory set or transfer.

Definition at line 107 of file MemoryLocation.cpp.

Referenced by llvm::AliasSetTracker::add(), getLocForWrite(), llvm::BasicAAResult::getModRefInfo(), hasUndefContents(), and moveUp().

◆ getForDest() [2/3]

MemoryLocation MemoryLocation::getForDest ( const AtomicMemIntrinsic MI)
static

Definition at line 111 of file MemoryLocation.cpp.

◆ getForDest() [3/3]

MemoryLocation MemoryLocation::getForDest ( const AnyMemIntrinsic MI)
static

◆ getForSource() [1/3]

MemoryLocation MemoryLocation::getForSource ( const MemTransferInst MTI)
static

Return a location representing the source of a memory transfer.

Definition at line 86 of file MemoryLocation.cpp.

Referenced by llvm::AliasSetTracker::add(), getLocForRead(), llvm::BasicAAResult::getModRefInfo(), hasUndefContents(), and moveUp().

◆ getForSource() [2/3]

MemoryLocation MemoryLocation::getForSource ( const AtomicMemTransferInst MTI)
static

Definition at line 90 of file MemoryLocation.cpp.

◆ getForSource() [3/3]

MemoryLocation MemoryLocation::getForSource ( const AnyMemTransferInst MTI)
static

◆ getOrNone()

static Optional<MemoryLocation> llvm::MemoryLocation::getOrNone ( const Instruction Inst)
inlinestatic

◆ getWithNewPtr()

MemoryLocation llvm::MemoryLocation::getWithNewPtr ( const Value NewPtr) const
inline

Definition at line 249 of file MemoryLocation.h.

References Ptr.

Referenced by SortNonLocalDepInfoCache().

◆ getWithNewSize()

MemoryLocation llvm::MemoryLocation::getWithNewSize ( LocationSize  NewSize) const
inline

Definition at line 255 of file MemoryLocation.h.

References Size.

Referenced by SortNonLocalDepInfoCache().

◆ getWithoutAATags()

MemoryLocation llvm::MemoryLocation::getWithoutAATags ( ) const
inline

Definition at line 261 of file MemoryLocation.h.

References AATags.

Referenced by SortNonLocalDepInfoCache().

◆ operator==()

bool llvm::MemoryLocation::operator== ( const MemoryLocation Other) const
inline

Definition at line 267 of file MemoryLocation.h.

References AATags, Ptr, and Size.

Member Data Documentation

◆ AATags

AAMDNodes llvm::MemoryLocation::AATags

◆ Ptr

const Value* llvm::MemoryLocation::Ptr

◆ Size

LocationSize llvm::MemoryLocation::Size

The maximum size of the location, in address-units, or UnknownSize if the size is not known.

Note that an unknown size does not mean the pointer aliases the entire virtual address space, because there are restrictions on stepping out of one object and into another. See http://llvm.org/docs/LangRef.html#pointeraliasing

Definition at line 192 of file MemoryLocation.h.

Referenced by llvm::SCEVAAResult::alias(), llvm::objcarc::ObjCARCAAResult::alias(), llvm::BasicAAResult::alias(), eliminateDeadStores(), llvm::AliasSetTracker::getAliasSetFor(), llvm::DenseMapInfo< MemoryLocation >::getHashValue(), getWithNewSize(), isOverwrite(), operator==(), llvm::objcarc::ObjCARCAAResult::pointsToConstantMemory(), llvm::CFLAndersAAResult::query(), removePartiallyOverlappedStores(), and SortNonLocalDepInfoCache().


The documentation for this class was generated from the following files: