//===-- LVLocation.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 LVOperation and LVLocation classes, which are used // to describe variable locations. // //===----------------------------------------------------------------------===// #ifndef LLVM_DEBUGINFO_LOGICALVIEW_CORE_LVLOCATION_H #define LLVM_DEBUGINFO_LOGICALVIEW_CORE_LVLOCATION_H #include "llvm/DebugInfo/LogicalView/Core/LVObject.h" namespace llvm { namespace logicalview { LVLineRange; // The DW_AT_data_member_location attribute is a simple member offset. const LVSmall LVLocationMemberOffset = …; class LVOperation final { … }; class LVLocation : public LVObject { … }; class LVLocationSymbol final : public LVLocation { … }; } // end namespace logicalview } // end namespace llvm #endif // LLVM_DEBUGINFO_LOGICALVIEW_CORE_LVLOCATION_H