Most of our code was including Log.h even though that is not where the "lldb" log channel is defined (Log.h defines the generic logging infrastructure). This worked because Log.h included Logging.h, even though it should. After the recent refactor, it became impossible the two files include each other in this direction (the opposite inclusion is needed), so this patch removes the workaround that was put in place and cleans up all files to include the right thing. It also renames the file to LLDBLog to better reflect its purpose.
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
//===-- LogChannelDWARF.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_SOURCE_PLUGINS_SYMBOLFILE_DWARF_LOGCHANNELDWARF_H
|
|
#define LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_LOGCHANNELDWARF_H
|
|
|
|
#include "lldb/Utility/Log.h"
|
|
#include "llvm/ADT/BitmaskEnum.h"
|
|
|
|
namespace lldb_private {
|
|
|
|
enum class DWARFLog : Log::MaskType {
|
|
DebugInfo = Log::ChannelFlag<0>,
|
|
DebugLine = Log::ChannelFlag<1>,
|
|
DebugMap = Log::ChannelFlag<2>,
|
|
Lookups = Log::ChannelFlag<3>,
|
|
TypeCompletion = Log::ChannelFlag<4>,
|
|
LLVM_MARK_AS_BITMASK_ENUM(TypeCompletion)
|
|
};
|
|
LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE();
|
|
|
|
class LogChannelDWARF {
|
|
public:
|
|
static void Initialize();
|
|
static void Terminate();
|
|
};
|
|
|
|
template <> Log::Channel &LogChannelFor<DWARFLog>();
|
|
} // namespace lldb_private
|
|
|
|
#endif // LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_LOGCHANNELDWARF_H
|