LLVM 20.0.0git
|
State for dereferenceable attribute. More...
#include "llvm/Transforms/IPO/Attributor.h"
Static Public Member Functions | |
static DerefState | getBestState () |
static DerefState | getBestState (const DerefState &) |
static DerefState | getWorstState () |
Return the worst possible representable state. | |
static DerefState | getWorstState (const DerefState &) |
Public Attributes | |
IncIntegerState | DerefBytesState |
State representing for dereferenceable bytes. | |
std::map< int64_t, uint64_t > | AccessedBytesMap |
Map representing for accessed memory offsets and sizes. | |
Additional Inherited Members | |
Public Member Functions inherited from llvm::AbstractState | |
virtual | ~AbstractState ()=default |
virtual bool | isValidState () const =0 |
Return if this abstract state is in a valid state. | |
virtual bool | isAtFixpoint () const =0 |
Return if this abstract state is fixed, thus does not need to be updated if information changes as it cannot change itself. | |
virtual ChangeStatus | indicateOptimisticFixpoint ()=0 |
Indicate that the abstract state should converge to the optimistic state. | |
virtual ChangeStatus | indicatePessimisticFixpoint ()=0 |
Indicate that the abstract state should converge to the pessimistic state. | |
State for dereferenceable attribute.
Definition at line 4064 of file Attributor.h.
|
inlinestatic |
Definition at line 4066 of file Attributor.h.
|
inlinestatic |
Definition at line 4067 of file Attributor.h.
References getBestState().
Referenced by getBestState().
|
inlinestatic |
Return the worst possible representable state.
Definition at line 4070 of file Attributor.h.
Referenced by getWorstState().
|
inlinestatic |
Definition at line 4075 of file Attributor.h.
References getWorstState().
std::map<int64_t, uint64_t> llvm::DerefState::AccessedBytesMap |
Map representing for accessed memory offsets and sizes.
A key is Offset and a value is size. If there is a load/store instruction something like, p[offset] = v; (offset, sizeof(v)) will be inserted to this map. std::map is used because we want to iterate keys in ascending order.
Definition at line 4088 of file Attributor.h.
IncIntegerState llvm::DerefState::DerefBytesState |
State representing for dereferenceable bytes.
Definition at line 4080 of file Attributor.h.
Referenced by llvm::clampStateAndIndicateChange< DerefState >(), llvm::AADereferenceable::getAssumedDereferenceableBytes(), and llvm::AADereferenceable::getKnownDereferenceableBytes().