llvm/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp

//===-- DWARFDebugAranges.cpp ---------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "DWARFDebugAranges.h"
#include "DWARFDebugArangeSet.h"
#include "DWARFUnit.h"
#include "LogChannelDWARF.h"
#include "lldb/Utility/Log.h"
#include "lldb/Utility/Timer.h"

usingnamespacelldb;
usingnamespacelldb_private;
usingnamespacelldb_private::plugin::dwarf;

// Constructor
DWARFDebugAranges::DWARFDebugAranges() :{}

// CountArangeDescriptors
class CountArangeDescriptors {};

// Extract
void DWARFDebugAranges::extract(const DWARFDataExtractor &debug_aranges_data) {}

void DWARFDebugAranges::Dump(Log *log) const {}

void DWARFDebugAranges::AppendRange(dw_offset_t offset, dw_addr_t low_pc,
                                    dw_addr_t high_pc) {}

void DWARFDebugAranges::Sort(bool minimize) {}

// FindAddress
dw_offset_t DWARFDebugAranges::FindAddress(dw_addr_t address) const {}