45 lines · cpp
1//===-- ProcessWindowsLog.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-exception6//7//===----------------------------------------------------------------------===//8 9#include "ProcessWindowsLog.h"10 11using namespace lldb_private;12 13static constexpr Log::Category g_categories[] = {14 {{"break"}, {"log breakpoints"}, WindowsLog::Breakpoints},15 {{"event"}, {"log low level debugger events"}, WindowsLog::Event},16 {{"exception"}, {"log exception information"}, WindowsLog::Exception},17 {{"memory"}, {"log memory reads and writes"}, WindowsLog::Memory},18 {{"process"}, {"log process events and activities"}, WindowsLog::Process},19 {{"registers"}, {"log register read/writes"}, WindowsLog::Registers},20 {{"step"}, {"log step related activities"}, WindowsLog::Step},21 {{"thread"}, {"log thread events and activities"}, WindowsLog::Thread},22};23 24static Log::Channel g_channel(g_categories, WindowsLog::Process);25 26template <> Log::Channel &lldb_private::LogChannelFor<WindowsLog>() {27 return g_channel;28}29 30void ProcessWindowsLog::Initialize() {31 static llvm::once_flag g_once_flag;32 llvm::call_once(g_once_flag, []() { Log::Register("windows", g_channel); });33}34 35void ProcessWindowsLog::Terminate() {}36 37 38 39 40 41 42 43 44 45