LLVM 22.0.0git
llvm::DWARFVerifier::DieRangeInfo Struct Reference

A class that keeps the address range information for a single DIE. More...

#include "llvm/DebugInfo/DWARF/DWARFVerifier.h"

Public Types

typedef std::set< DieRangeInfo >::const_iterator die_range_info_iterator

Public Member Functions

 DieRangeInfo ()=default
 DieRangeInfo (DWARFDie Die)
 DieRangeInfo (std::vector< DWARFAddressRange > Ranges)
 Used for unit testing.
LLVM_ABI std::optional< DWARFAddressRangeinsert (const DWARFAddressRange &R)
 Inserts the address range.
LLVM_ABI die_range_info_iterator insert (const DieRangeInfo &RI)
 Inserts the address range info.
LLVM_ABI bool contains (const DieRangeInfo &RHS) const
 Return true if ranges in this object contains all ranges within RHS.
LLVM_ABI bool intersects (const DieRangeInfo &RHS) const
 Return true if any range in this object intersects with any range in RHS.

Public Attributes

DWARFDie Die
std::vector< DWARFAddressRangeRanges
 Sorted DWARFAddressRanges.
std::set< DieRangeInfoChildren
 Sorted DWARFAddressRangeInfo.

Detailed Description

A class that keeps the address range information for a single DIE.

Definition at line 71 of file DWARFVerifier.h.

Member Typedef Documentation

◆ die_range_info_iterator

Constructor & Destructor Documentation

◆ DieRangeInfo() [1/3]

llvm::DWARFVerifier::DieRangeInfo::DieRangeInfo ( )
default

Referenced by contains(), insert(), and intersects().

◆ DieRangeInfo() [2/3]

llvm::DWARFVerifier::DieRangeInfo::DieRangeInfo ( DWARFDie Die)
inline

Definition at line 81 of file DWARFVerifier.h.

References Die.

◆ DieRangeInfo() [3/3]

llvm::DWARFVerifier::DieRangeInfo::DieRangeInfo ( std::vector< DWARFAddressRange > Ranges)
inline

Used for unit testing.

Definition at line 84 of file DWARFVerifier.h.

References llvm::move(), and Ranges.

Member Function Documentation

◆ contains()

bool DWARFVerifier::DieRangeInfo::contains ( const DieRangeInfo & RHS) const

Return true if ranges in this object contains all ranges within RHS.

Definition at line 94 of file DWARFVerifier.cpp.

References DieRangeInfo(), and Ranges.

◆ insert() [1/2]

DWARFVerifier::DieRangeInfo::die_range_info_iterator DWARFVerifier::DieRangeInfo::insert ( const DieRangeInfo & RI)

Inserts the address range info.

If any of its ranges overlaps with a range in an existing range info, the range info is not added and an iterator to the overlapping range info. If a duplicate entry is attempted to be added, the duplicate range will not actually be added and the returned iterator will point to end().

This is used for finding overlapping children of the same DIE.

Definition at line 79 of file DWARFVerifier.cpp.

References Children, DieRangeInfo(), and Ranges.

◆ insert() [2/2]

std::optional< DWARFAddressRange > DWARFVerifier::DieRangeInfo::insert ( const DWARFAddressRange & R)

Inserts the address range.

If the range overlaps with an existing range, the range that it overlaps with will be returned and the two address ranges will be unioned together in "Ranges". If a duplicate entry is attempted to be added, the duplicate range will not actually be added and the returned iterator will point to end().

This is used for finding overlapping ranges in the DW_AT_ranges attribute of a DIE. It is also used as a set of address ranges that children address ranges must all be contained in.

Definition at line 52 of file DWARFVerifier.cpp.

References Range, and Ranges.

◆ intersects()

bool DWARFVerifier::DieRangeInfo::intersects ( const DieRangeInfo & RHS) const

Return true if any range in this object intersects with any range in RHS.

Identical ranges are not considered to be intersecting.

Definition at line 118 of file DWARFVerifier.cpp.

References DieRangeInfo(), and Ranges.

Member Data Documentation

◆ Children

std::set<DieRangeInfo> llvm::DWARFVerifier::DieRangeInfo::Children

Sorted DWARFAddressRangeInfo.

Definition at line 78 of file DWARFVerifier.h.

Referenced by insert().

◆ Die

DWARFDie llvm::DWARFVerifier::DieRangeInfo::Die

Definition at line 72 of file DWARFVerifier.h.

Referenced by DieRangeInfo().

◆ Ranges

std::vector<DWARFAddressRange> llvm::DWARFVerifier::DieRangeInfo::Ranges

Sorted DWARFAddressRanges.

Definition at line 75 of file DWARFVerifier.h.

Referenced by contains(), DieRangeInfo(), insert(), insert(), and intersects().


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