LLDB mainline
LogChannelDWARF.h
Go to the documentation of this file.
1//===-- LogChannelDWARF.h ---------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_LOGCHANNELDWARF_H
10#define LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_LOGCHANNELDWARF_H
11
12#include "lldb/Utility/Log.h"
13#include "llvm/ADT/BitmaskEnum.h"
14
15namespace lldb_private {
16
17enum class DWARFLog : Log::MaskType {
18 DebugInfo = Log::ChannelFlag<0>,
19 DebugLine = Log::ChannelFlag<1>,
20 DebugMap = Log::ChannelFlag<2>,
21 Lookups = Log::ChannelFlag<3>,
22 TypeCompletion = Log::ChannelFlag<4>,
23 SplitDwarf = Log::ChannelFlag<5>,
25};
27
29public:
30 static void Initialize();
31 static void Terminate();
32};
33
35} // namespace lldb_private
36
37#endif // LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_LOGCHANNELDWARF_H
uint64_t MaskType
The underlying type of all log channel enums.
Definition: Log.h:124
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE()
Log::Channel & LogChannelFor< DWARFLog >()