LLVM 19.0.0git
Public Types | Public Member Functions | Public Attributes | List of all members
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.
 
std::optional< DWARFAddressRangeinsert (const DWARFAddressRange &R)
 Inserts the address range.
 
die_range_info_iterator insert (const DieRangeInfo &RI)
 Inserts the address range info.
 
bool contains (const DieRangeInfo &RHS) const
 Return true if ranges in this object contains all ranges within RHS.
 
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 51 of file DWARFVerifier.h.

Member Typedef Documentation

◆ die_range_info_iterator

Definition at line 67 of file DWARFVerifier.h.

Constructor & Destructor Documentation

◆ DieRangeInfo() [1/3]

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

◆ DieRangeInfo() [2/3]

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

Definition at line 61 of file DWARFVerifier.h.

◆ DieRangeInfo() [3/3]

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

Used for unit testing.

Definition at line 64 of file DWARFVerifier.h.

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 87 of file DWARFVerifier.cpp.

References RHS.

◆ 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.

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

Definition at line 72 of file DWARFVerifier.cpp.

References End, 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".

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 50 of file DWARFVerifier.cpp.

References End, 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.

Definition at line 111 of file DWARFVerifier.cpp.

References RHS.

Member Data Documentation

◆ Children

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

Sorted DWARFAddressRangeInfo.

Definition at line 58 of file DWARFVerifier.h.

◆ Die

DWARFDie llvm::DWARFVerifier::DieRangeInfo::Die

Definition at line 52 of file DWARFVerifier.h.

◆ Ranges

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

Sorted DWARFAddressRanges.

Definition at line 55 of file DWARFVerifier.h.

Referenced by insert().


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