//===-- DWARFDebugRanges.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 "DWARFDebugRanges.h" #include "DWARFUnit.h" #include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h" usingnamespacelldb_private; usingnamespacelldb_private::plugin::dwarf; DWARFDebugRanges::DWARFDebugRanges() : … { … } void DWARFDebugRanges::Extract(DWARFContext &context) { … } DWARFRangeList DWARFDebugRanges::FindRanges(const DWARFUnit *cu, dw_offset_t debug_ranges_offset) const { … }