LLVM 22.0.0git
|
#include "llvm/Analysis/LoopAccessAnalysis.h"
Public Member Functions | |
PointerInfo (Value *PointerValue, const SCEV *Start, const SCEV *End, bool IsWritePtr, unsigned DependencySetId, unsigned AliasSetId, const SCEV *Expr, bool NeedsFreeze) |
Public Attributes | |
TrackingVH< Value > | PointerValue |
Holds the pointer value that we need to check. | |
const SCEV * | Start |
Holds the smallest byte address accessed by the pointer throughout all iterations of the loop. | |
const SCEV * | End |
Holds the largest byte address accessed by the pointer throughout all iterations of the loop, plus 1. | |
bool | IsWritePtr |
Holds the information if this pointer is used for writing to memory. | |
unsigned | DependencySetId |
Holds the id of the set of pointers that could be dependent because of a shared underlying object. | |
unsigned | AliasSetId |
Holds the id of the disjoint alias set to which this pointer belongs. | |
const SCEV * | Expr |
SCEV for the access. | |
bool | NeedsFreeze |
True if the pointer expressions needs to be frozen after expansion. |
Definition at line 507 of file LoopAccessAnalysis.h.
|
inline |
Definition at line 528 of file LoopAccessAnalysis.h.
References AliasSetId, DependencySetId, End, Expr, IsWritePtr, NeedsFreeze, PointerValue, and Start.
unsigned llvm::RuntimePointerChecking::PointerInfo::AliasSetId |
Holds the id of the disjoint alias set to which this pointer belongs.
Definition at line 522 of file LoopAccessAnalysis.h.
Referenced by llvm::RuntimePointerChecking::needsChecking(), and PointerInfo().
unsigned llvm::RuntimePointerChecking::PointerInfo::DependencySetId |
Holds the id of the set of pointers that could be dependent because of a shared underlying object.
Definition at line 520 of file LoopAccessAnalysis.h.
Referenced by llvm::RuntimePointerChecking::needsChecking(), and PointerInfo().
Holds the largest byte address accessed by the pointer throughout all iterations of the loop, plus 1.
Definition at line 515 of file LoopAccessAnalysis.h.
Referenced by PointerInfo().
SCEV for the access.
Definition at line 524 of file LoopAccessAnalysis.h.
Referenced by PointerInfo().
bool llvm::RuntimePointerChecking::PointerInfo::IsWritePtr |
Holds the information if this pointer is used for writing to memory.
Definition at line 517 of file LoopAccessAnalysis.h.
Referenced by llvm::RuntimePointerChecking::needsChecking(), and PointerInfo().
bool llvm::RuntimePointerChecking::PointerInfo::NeedsFreeze |
True if the pointer expressions needs to be frozen after expansion.
Definition at line 526 of file LoopAccessAnalysis.h.
Referenced by PointerInfo().
TrackingVH<Value> llvm::RuntimePointerChecking::PointerInfo::PointerValue |
Holds the pointer value that we need to check.
Definition at line 509 of file LoopAccessAnalysis.h.
Referenced by PointerInfo(), and llvm::LoopVersioning::prepareNoAliasMetadata().
Holds the smallest byte address accessed by the pointer throughout all iterations of the loop.
Definition at line 512 of file LoopAccessAnalysis.h.
Referenced by PointerInfo().