1 //===-- ProcessGDBRemoteLog.cpp -------------------------------------------===//
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 #include "ProcessGDBRemoteLog.h"
10 #include "ProcessGDBRemote.h"
11 #include "llvm/Support/Threading.h"
12
13 using namespace lldb;
14 using namespace lldb_private;
15 using namespace lldb_private::process_gdb_remote;
16
17 static constexpr Log::Category g_categories[] = {
18 {{"async"}, {"log asynchronous activity"}, GDBR_LOG_ASYNC},
19 {{"break"}, {"log breakpoints"}, GDBR_LOG_BREAKPOINTS},
20 {{"comm"}, {"log communication activity"}, GDBR_LOG_COMM},
21 {{"packets"}, {"log gdb remote packets"}, GDBR_LOG_PACKETS},
22 {{"memory"}, {"log memory reads and writes"}, GDBR_LOG_MEMORY},
23 {{"data-short"},
24 {"log memory bytes for memory reads and writes for short transactions "
25 "only"},
26 GDBR_LOG_MEMORY_DATA_SHORT},
27 {{"data-long"},
28 {"log memory bytes for memory reads and writes for all transactions"},
29 GDBR_LOG_MEMORY_DATA_LONG},
30 {{"process"}, {"log process events and activities"}, GDBR_LOG_PROCESS},
31 {{"step"}, {"log step related activities"}, GDBR_LOG_STEP},
32 {{"thread"}, {"log thread events and activities"}, GDBR_LOG_THREAD},
33 {{"watch"}, {"log watchpoint related activities"}, GDBR_LOG_WATCHPOINTS},
34 };
35
36 Log::Channel ProcessGDBRemoteLog::g_channel(g_categories, GDBR_LOG_DEFAULT);
37
Initialize()38 void ProcessGDBRemoteLog::Initialize() {
39 static llvm::once_flag g_once_flag;
40 llvm::call_once(g_once_flag, []() {
41 Log::Register("gdb-remote", g_channel);
42 });
43 }
44