//===-- LVRange.h -----------------------------------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// // // This file defines the LVRange class, which is used to describe a debug // information range. // //===----------------------------------------------------------------------===// #ifndef LLVM_DEBUGINFO_LOGICALVIEW_CORE_LVRANGE_H #define LLVM_DEBUGINFO_LOGICALVIEW_CORE_LVRANGE_H #include "llvm/ADT/IntervalTree.h" #include "llvm/DebugInfo/LogicalView/Core/LVObject.h" namespace llvm { namespace logicalview { LVAddressRange; class LVRangeEntry final { … }; // Class to represent a list of range addresses associated with a // scope; the addresses are stored in ascending order and can overlap. LVRangeEntries; class LVRange final : public LVObject { … }; } // end namespace logicalview } // end namespace llvm #endif // LLVM_DEBUGINFO_LOGICALVIEW_CORE_LVRANGE_H