//===-- DWARFCallFrameInfo.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 // //===----------------------------------------------------------------------===// #ifndef LLDB_SYMBOL_DWARFCALLFRAMEINFO_H #define LLDB_SYMBOL_DWARFCALLFRAMEINFO_H #include <map> #include <mutex> #include <optional> #include "lldb/Core/AddressRange.h" #include "lldb/Core/dwarf.h" #include "lldb/Symbol/ObjectFile.h" #include "lldb/Symbol/UnwindPlan.h" #include "lldb/Utility/Flags.h" #include "lldb/Utility/RangeMap.h" #include "lldb/Utility/VMRange.h" #include "lldb/lldb-private.h" namespace lldb_private { // DWARFCallFrameInfo is a class which can read eh_frame and DWARF Call Frame // Information FDEs. It stores little information internally. Only two APIs // are exported - one to find the high/low pc values of a function given a text // address via the information in the eh_frame / debug_frame, and one to // generate an UnwindPlan based on the FDE in the eh_frame / debug_frame // section. class DWARFCallFrameInfo { … }; } // namespace lldb_private #endif // LLDB_SYMBOL_DWARFCALLFRAMEINFO_H