Changeset View
Changeset View
Standalone View
Standalone View
lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
//===-- DWARFDefines.h ------------------------------------------*- C++ -*-===// | //===-- DWARFDefines.h ------------------------------------------*- C++ -*-===// | ||||
// | // | ||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||||
// See https://llvm.org/LICENSE.txt for license information. | // See https://llvm.org/LICENSE.txt for license information. | ||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||||
// | // | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
#ifndef SymbolFileDWARF_DWARFDefines_h_ | #ifndef SymbolFileDWARF_DWARFDefines_h_ | ||||
#define SymbolFileDWARF_DWARFDefines_h_ | #define SymbolFileDWARF_DWARFDefines_h_ | ||||
#include "lldb/Core/dwarf.h" | #include "lldb/Core/dwarf.h" | ||||
#include <stdint.h> | #include <stdint.h> | ||||
namespace lldb_private { | namespace lldb_private { | ||||
enum class DWARFEnumState { MoreItems, Complete }; | |||||
typedef uint32_t DRC_class; // Holds DRC_* class bitfields | typedef uint32_t DRC_class; // Holds DRC_* class bitfields | ||||
enum DW_TAG_Category { | enum DW_TAG_Category { | ||||
TagCategoryVariable, | TagCategoryVariable, | ||||
TagCategoryType, | TagCategoryType, | ||||
TagCategoryProgram, | TagCategoryProgram, | ||||
kNumTagCategories | kNumTagCategories | ||||
}; | }; | ||||
▲ Show 20 Lines • Show All 86 Lines • Show Last 20 Lines |