LLVM: llvm::AddressRange Class Reference (original) (raw)

A class that represents an address range. More...

#include "[llvm/ADT/AddressRanges.h](AddressRanges%5F8h%5Fsource.html)"

Public Member Functions
AddressRange ()=default
AddressRange (uint64_t S, uint64_t E)
uint64_t start () const
uint64_t end () const
uint64_t size () const
uint64_t empty () const
bool contains (uint64_t Addr) const
bool contains (const AddressRange &R) const
bool intersects (const AddressRange &R) const
bool operator== (const AddressRange &R) const
bool operator!= (const AddressRange &R) const
bool operator< (const AddressRange &R) const

Detailed Description

A class that represents an address range.

The range is specified using a start and an end address: [Start, End).

Definition at line 22 of file AddressRanges.h.

Constructor & Destructor Documentation

llvm::AddressRange::AddressRange ( ) default

AddressRange() [2/2]

Member Function Documentation

contains() [1/2]

contains() [2/2]

bool llvm::AddressRange::contains ( uint64_t Addr) const inline

empty()

uint64_t llvm::AddressRange::empty ( ) const inline

end()

uint64_t llvm::AddressRange::end ( ) const inline

intersects()

operator!=()

operator<()

operator==()

size()

uint64_t llvm::AddressRange::size ( ) const inline

start()

uint64_t llvm::AddressRange::start ( ) const inline

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