LLDB mainline
lldb_private::LineTable Class Reference

A line table class. More...

#include "lldb/Symbol/LineTable.h"

Classes

struct  Entry
struct  EntrySearchInfo
class  LessThanBinaryPredicate
class  Sequence

Public Types

typedef lldb_private::RangeVector< lldb::addr_t, lldb::addr_t, 32 > FileAddressRanges
typedef RangeDataVector< lldb::addr_t, lldb::addr_t, lldb::addr_tFileRangeMap

Public Member Functions

 LineTable (CompileUnit *comp_unit)
 Construct with compile unit.
 LineTable (CompileUnit *comp_unit, std::vector< Sequence > &&sequences)
 Construct with entries found in sequences.
 ~LineTable ()
 Destructor.
void InsertLineEntry (lldb::addr_t file_addr, uint32_t line, uint16_t column, uint16_t file_idx, bool is_start_of_statement, bool is_start_of_basic_block, bool is_prologue_end, bool is_epilogue_begin, bool is_terminal_entry)
 Adds a new line entry to this line table.
void InsertSequence (Sequence sequence)
void Dump (Stream *s, Target *target, Address::DumpStyle style, Address::DumpStyle fallback_style, bool show_line_ranges)
 Dump all line entries in this line table to the stream s.
void GetDescription (Stream *s, Target *target, lldb::DescriptionLevel level)
uint32_t lower_bound (const Address &so_addr) const
 Returns the index of the first line entry which ends after the given address (i.e., the first entry which contains the given address or it comes after it).
std::pair< uint32_t, uint32_t > GetLineEntryIndexRange (const AddressRange &range) const
 Returns the (half-open) range of line entry indexes which overlap the given address range.
bool FindLineEntryByAddress (const Address &so_addr, LineEntry &line_entry, uint32_t *index_ptr=nullptr)
 Find a line entry that contains the section offset address so_addr.
uint32_t FindLineEntryIndexByFileIndex (uint32_t start_idx, uint32_t file_idx, const SourceLocationSpec &src_location_spec, LineEntry *line_entry_ptr)
 Find a line entry index that has a matching file index and source line number.
uint32_t FindLineEntryIndexByFileIndex (uint32_t start_idx, const std::vector< uint32_t > &file_idx, const SourceLocationSpec &src_location_spec, LineEntry *line_entry_ptr)
size_t FindLineEntriesForFileIndex (uint32_t file_idx, bool append, SymbolContextList &sc_list)
bool GetLineEntryAtIndex (uint32_t idx, LineEntry &line_entry)
 Get the line entry from the line table at index idx.
uint32_t GetSize () const
 Gets the size of the line table in number of line table entries.
size_t GetContiguousFileAddressRanges (FileAddressRanges &file_ranges, bool append)
 Gets all contiguous file address ranges for the entire line table.
LineTableLinkLineTable (const FileRangeMap &file_range_map)

Static Public Member Functions

static void AppendLineEntryToSequence (Sequence &sequence, lldb::addr_t file_addr, uint32_t line, uint16_t column, uint16_t file_idx, bool is_start_of_statement, bool is_start_of_basic_block, bool is_prologue_end, bool is_epilogue_begin, bool is_terminal_entry)

Protected Types

typedef std::vector< lldb_private::Section * > section_collection
 The collection type for the sections.
typedef std::vector< Entryentry_collection
 The collection type for the line entries.

Protected Member Functions

bool ConvertEntryAtIndexToLineEntry (uint32_t idx, LineEntry &line_entry)

Protected Attributes

CompileUnitm_comp_unit
 The compile unit that this line table belongs to.
entry_collection m_entries
 The collection of line entries in this line table.

Private Member Functions

 LineTable (const LineTable &)=delete
const LineTableoperator= (const LineTable &)=delete
template<typename T>
uint32_t FindLineEntryIndexByFileIndexImpl (uint32_t start_idx, T file_idx, const SourceLocationSpec &src_location_spec, LineEntry *line_entry_ptr, std::function< bool(T, uint16_t)> file_idx_matcher)

Detailed Description

A line table class.

Definition at line 25 of file LineTable.h.

Member Typedef Documentation

◆ entry_collection

typedef std::vector<Entry> lldb_private::LineTable::entry_collection
protected

The collection type for the line entries.

Definition at line 330 of file LineTable.h.

◆ FileAddressRanges

◆ FileRangeMap

◆ section_collection

The collection type for the sections.

Definition at line 328 of file LineTable.h.

Constructor & Destructor Documentation

◆ LineTable() [1/3]

LineTable::LineTable ( CompileUnit * comp_unit)

Construct with compile unit.

Parameters
[in]comp_unitThe compile unit to which this line table belongs.

Definition at line 21 of file LineTable.cpp.

References m_comp_unit, and m_entries.

Referenced by lldb_private::LineTable::LessThanBinaryPredicate::LessThanBinaryPredicate(), LineTable(), LinkLineTable(), and operator=().

◆ LineTable() [2/3]

LineTable::LineTable ( CompileUnit * comp_unit,
std::vector< Sequence > && sequences )

Construct with entries found in sequences.

Parameters
[in]sequencesUnsorted list of line sequences.

Definition at line 24 of file LineTable.cpp.

References m_comp_unit, and m_entries.

◆ ~LineTable()

LineTable::~LineTable ( )
default

Destructor.

◆ LineTable() [3/3]

lldb_private::LineTable::LineTable ( const LineTable & )
privatedelete

References LineTable().

Member Function Documentation

◆ AppendLineEntryToSequence()

void LineTable::AppendLineEntryToSequence ( Sequence & sequence,
lldb::addr_t file_addr,
uint32_t line,
uint16_t column,
uint16_t file_idx,
bool is_start_of_statement,
bool is_start_of_basic_block,
bool is_prologue_end,
bool is_epilogue_begin,
bool is_terminal_entry )
static

◆ ConvertEntryAtIndexToLineEntry()

◆ Dump()

void LineTable::Dump ( Stream * s,
Target * target,
Address::DumpStyle style,
Address::DumpStyle fallback_style,
bool show_line_ranges )

Dump all line entries in this line table to the stream s.

Parameters
[in]sThe stream to which to dump the object description.
[in]styleThe display style for the address.
See also
Address::DumpStyle

Definition at line 326 of file LineTable.cpp.

References ConvertEntryAtIndexToLineEntry(), lldb_private::LineEntry::Dump(), lldb_private::Stream::EOL(), m_entries, and lldb_private::LineEntry::original_file_sp.

◆ FindLineEntriesForFileIndex()

◆ FindLineEntryByAddress()

bool LineTable::FindLineEntryByAddress ( const Address & so_addr,
LineEntry & line_entry,
uint32_t * index_ptr = nullptr )

Find a line entry that contains the section offset address so_addr.

Parameters
[in]so_addrA section offset address object containing the address we are searching for.
[out]line_entryA copy of the line entry that was found if true is returned, otherwise entry is left unmodified.
[out]index_ptrA pointer to a 32 bit integer that will get the actual line entry index if it is not nullptr.
Returns
Returns true if so_addr is contained in a line entry in this line table, false otherwise.

Definition at line 210 of file LineTable.cpp.

References ConvertEntryAtIndexToLineEntry(), lldb_private::Address::GetFileAddress(), GetSize(), lower_bound(), m_entries, and UINT32_MAX.

Referenced by lldb_private::Function::GetPrologueByteSize(), lldb_private::Function::GetStartLineSourceInfo(), and lldb_private::ThreadPlanStepOverRange::ShouldStop().

◆ FindLineEntryIndexByFileIndex() [1/2]

uint32_t LineTable::FindLineEntryIndexByFileIndex ( uint32_t start_idx,
const std::vector< uint32_t > & file_idx,
const SourceLocationSpec & src_location_spec,
LineEntry * line_entry_ptr )

Definition at line 286 of file LineTable.cpp.

References FindLineEntryIndexByFileIndexImpl().

◆ FindLineEntryIndexByFileIndex() [2/2]

uint32_t LineTable::FindLineEntryIndexByFileIndex ( uint32_t start_idx,
uint32_t file_idx,
const SourceLocationSpec & src_location_spec,
LineEntry * line_entry_ptr )

Find a line entry index that has a matching file index and source line number.

Finds the next line entry that has a matching file_idx and source line number line starting at the start_idx entries into the line entry collection.

Parameters
[in]start_idxThe number of entries to skip when starting the search.
[out]file_idxThe file index to search for that should be found prior to calling this function using the following functions: CompileUnit::GetSupportFiles() FileSpecList::FindFileIndex (uint32_t, const FileSpec &) const
[in]src_location_specThe source location specifier to match.
[out]line_entry_ptrA pointer to a line entry object that will get a copy of the line entry if true is returned, otherwise line_entry is left untouched.
Returns
Returns true if a matching line entry is found in this line table, false otherwise.
See also
CompileUnit::GetSupportFiles()
FileSpecList::FindFileIndex (uint32_t, const FileSpec &) const

Definition at line 275 of file LineTable.cpp.

References FindLineEntryIndexByFileIndexImpl().

Referenced by lldb_private::CompileUnit::FindLineEntry(), and lldb_private::CompileUnit::ResolveSymbolContext().

◆ FindLineEntryIndexByFileIndexImpl()

template<typename T>
uint32_t lldb_private::LineTable::FindLineEntryIndexByFileIndexImpl ( uint32_t start_idx,
T file_idx,
const SourceLocationSpec & src_location_spec,
LineEntry * line_entry_ptr,
std::function< bool(T, uint16_t)> file_idx_matcher )
inlineprivate

◆ GetContiguousFileAddressRanges()

size_t LineTable::GetContiguousFileAddressRanges ( FileAddressRanges & file_ranges,
bool append )

Gets all contiguous file address ranges for the entire line table.

Parameters
[out]file_rangesA collection of file address ranges that will be filled in by this function.
[out]appendIf true, then append to file_ranges, otherwise clear file_ranges prior to adding any ranges.
Returns
The number of address ranges added to file_ranges

Definition at line 351 of file LineTable.cpp.

References lldb_private::RangeVector< B, S, N >::Append(), lldb_private::Range< B, S >::Clear(), lldb_private::RangeVector< B, S, N >::Clear(), lldb_private::LineTable::Entry::file_addr, lldb_private::Range< B, S >::GetRangeBase(), lldb_private::RangeVector< B, S, N >::GetSize(), lldb_private::LineTable::Entry::is_terminal_entry, LLDB_INVALID_ADDRESS, m_entries, lldb_private::Range< B, S >::SetRangeBase(), and lldb_private::Range< B, S >::SetRangeEnd().

◆ GetDescription()

void LineTable::GetDescription ( Stream * s,
Target * target,
lldb::DescriptionLevel level )

◆ GetLineEntryAtIndex()

bool LineTable::GetLineEntryAtIndex ( uint32_t idx,
LineEntry & line_entry )

Get the line entry from the line table at index idx.

Parameters
[in]idxAn index into the line table entry collection.
Returns
A valid line entry if idx is a valid index, or an invalid line entry if idx is not valid.
See also
LineTable::GetSize()
LineEntry::IsValid() const

Definition at line 157 of file LineTable.cpp.

References lldb_private::LineEntry::Clear(), ConvertEntryAtIndexToLineEntry(), and m_entries.

Referenced by lldb::SBCompileUnit::GetLineEntryAtIndex(), lldb_private::Function::GetPrologueByteSize(), lldb_private::Function::GetSourceInfo(), and lldb_private::ThreadPlanStepOverRange::ShouldStop().

◆ GetLineEntryIndexRange()

std::pair< uint32_t, uint32_t > LineTable::GetLineEntryIndexRange ( const AddressRange & range) const

Returns the (half-open) range of line entry indexes which overlap the given address range.

Line entries partially overlapping the range (on either side) are included as well. Returns an empty range (first==second) pointing to the "right" place in the list if there are no such line entries. Empty input ranges always result in an empty output range.

Definition at line 188 of file LineTable.cpp.

References lldb_private::LineTable::Entry::file_addr, lldb_private::AddressRange::GetBaseAddress(), lldb_private::AddressRange::GetByteSize(), lldb_private::Address::GetFileAddress(), GetSize(), lower_bound(), and m_entries.

Referenced by CommandObjectThreadUntil::DoExecute(), and lldb_private::Function::GetSourceInfo().

◆ GetSize()

uint32_t LineTable::GetSize ( ) const

Gets the size of the line table in number of line table entries.

Returns
The number of line table entries in this line table.

Definition at line 155 of file LineTable.cpp.

References m_entries.

Referenced by FindLineEntryByAddress(), GetLineEntryIndexRange(), lldb::SBCompileUnit::GetNumLineEntries(), and lower_bound().

◆ InsertLineEntry()

void LineTable::InsertLineEntry ( lldb::addr_t file_addr,
uint32_t line,
uint16_t column,
uint16_t file_idx,
bool is_start_of_statement,
bool is_start_of_basic_block,
bool is_prologue_end,
bool is_epilogue_begin,
bool is_terminal_entry )

Adds a new line entry to this line table.

All line entries are maintained in file address order.

Parameters
[in]line_entryA const reference to a new line_entry to add to this line table.
See also
Address::DumpStyle

Definition at line 37 of file LineTable.cpp.

References m_entries.

◆ InsertSequence()

void LineTable::InsertSequence ( Sequence sequence)

Definition at line 92 of file LineTable.cpp.

References m_entries, and lldb_private::LineTable::Sequence::m_entries.

◆ LinkLineTable()

◆ lower_bound()

uint32_t LineTable::lower_bound ( const Address & so_addr) const

Returns the index of the first line entry which ends after the given address (i.e., the first entry which contains the given address or it comes after it).

Returns GetSize() if there is no such entry.

Definition at line 166 of file LineTable.cpp.

References lldb_private::LineTable::Entry::file_addr, lldb_private::Address::GetFileAddress(), lldb_private::Address::GetModule(), GetSize(), LLDB_INVALID_ADDRESS, m_comp_unit, and m_entries.

Referenced by FindLineEntryByAddress(), and GetLineEntryIndexRange().

◆ operator=()

const LineTable & lldb_private::LineTable::operator= ( const LineTable & )
privatedelete

References LineTable().

Member Data Documentation

◆ m_comp_unit

CompileUnit* lldb_private::LineTable::m_comp_unit
protected

The compile unit that this line table belongs to.

Definition at line 333 of file LineTable.h.

Referenced by ConvertEntryAtIndexToLineEntry(), FindLineEntriesForFileIndex(), GetDescription(), LineTable(), LineTable(), LinkLineTable(), and lower_bound().

◆ m_entries


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