blob: 5965ff523128101759f255f0d295cca1060b310f [file] [log] [blame]
Alexander Shaposhnikov696bd632016-11-26 05:23:44 +00001//===-- Logging.cpp ---------------------------------------------*- C++ -*-===//
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Zachary Turner6f9e6902017-03-03 20:56:28 +000010#include "lldb/Utility/Logging.h"
Zachary Turner6f9e6902017-03-03 20:56:28 +000011#include "lldb/Utility/Log.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012
Chris Lattner30fdc8d2010-06-08 16:52:24 +000013using namespace lldb_private;
14
Pavel Labatha2fc1e02017-02-22 11:51:12 +000015static constexpr Log::Category g_categories[] = {
16 {{"api"}, {"log API calls and return values"}, LIBLLDB_LOG_API},
17 {{"break"}, {"log breakpoints"}, LIBLLDB_LOG_BREAKPOINTS},
18 {{"commands"}, {"log command argument parsing"}, LIBLLDB_LOG_COMMANDS},
19 {{"comm"}, {"log communication activities"}, LIBLLDB_LOG_COMMUNICATION},
20 {{"conn"}, {"log connection details"}, LIBLLDB_LOG_CONNECTION},
21 {{"demangle"}, {"log mangled names to catch demangler crashes"}, LIBLLDB_LOG_DEMANGLE},
22 {{"dyld"}, {"log shared library related activities"}, LIBLLDB_LOG_DYNAMIC_LOADER},
23 {{"event"}, {"log broadcaster, listener and event queue activities"}, LIBLLDB_LOG_EVENTS},
24 {{"expr"}, {"log expressions"}, LIBLLDB_LOG_EXPRESSIONS},
25 {{"formatters"}, {"log data formatters related activities"}, LIBLLDB_LOG_DATAFORMATTERS},
26 {{"host"}, {"log host activities"}, LIBLLDB_LOG_HOST},
27 {{"jit"}, {"log JIT events in the target"}, LIBLLDB_LOG_JIT_LOADER},
28 {{"language"}, {"log language runtime events"}, LIBLLDB_LOG_LANGUAGE},
29 {{"mmap"}, {"log mmap related activities"}, LIBLLDB_LOG_MMAP},
30 {{"module"}, {"log module activities such as when modules are created, destroyed, replaced, and more"}, LIBLLDB_LOG_MODULES},
31 {{"object"}, {"log object construction/destruction for important objects"}, LIBLLDB_LOG_OBJECT},
32 {{"os"}, {"log OperatingSystem plugin related activities"}, LIBLLDB_LOG_OS},
33 {{"platform"}, {"log platform events and activities"}, LIBLLDB_LOG_PLATFORM},
34 {{"process"}, {"log process events and activities"}, LIBLLDB_LOG_PROCESS},
35 {{"script"}, {"log events about the script interpreter"}, LIBLLDB_LOG_SCRIPT},
36 {{"state"}, {"log private and public process state changes"}, LIBLLDB_LOG_STATE},
37 {{"step"}, {"log step related activities"}, LIBLLDB_LOG_STEP},
38 {{"symbol"}, {"log symbol related issues and warnings"}, LIBLLDB_LOG_SYMBOLS},
39 {{"system-runtime"}, {"log system runtime events"}, LIBLLDB_LOG_SYSTEM_RUNTIME},
40 {{"target"}, {"log target events and activities"}, LIBLLDB_LOG_TARGET},
Jason Molendaa4039a02017-04-03 22:23:01 +000041 {{"temp"}, {"log internal temporary debug messages"}, LIBLLDB_LOG_TEMPORARY},
Pavel Labatha2fc1e02017-02-22 11:51:12 +000042 {{"thread"}, {"log thread events and activities"}, LIBLLDB_LOG_THREAD},
43 {{"types"}, {"log type system related activities"}, LIBLLDB_LOG_TYPES},
44 {{"unwind"}, {"log stack unwind activities"}, LIBLLDB_LOG_UNWIND},
45 {{"watch"}, {"log watchpoint related activities"}, LIBLLDB_LOG_WATCHPOINTS},
46};
Greg Clayton5160ce52013-03-27 23:08:40 +000047
Pavel Labatha2fc1e02017-02-22 11:51:12 +000048static Log::Channel g_log_channel(g_categories, LIBLLDB_LOG_DEFAULT);
Eugene Zelenko89183722016-03-11 21:55:47 +000049
Pavel Labatha2fc1e02017-02-22 11:51:12 +000050void lldb_private::InitializeLog() {
51 Log::Register("lldb", g_log_channel);
Kate Stoneb9c1b512016-09-06 20:57:50 +000052}
Chris Lattner30fdc8d2010-06-08 16:52:24 +000053
Kate Stoneb9c1b512016-09-06 20:57:50 +000054Log *lldb_private::GetLogIfAllCategoriesSet(uint32_t mask) {
Pavel Labatha2fc1e02017-02-22 11:51:12 +000055 return g_log_channel.GetLogIfAll(mask);
Kate Stoneb9c1b512016-09-06 20:57:50 +000056}
57
58Log *lldb_private::GetLogIfAnyCategoriesSet(uint32_t mask) {
Pavel Labatha2fc1e02017-02-22 11:51:12 +000059 return g_log_channel.GetLogIfAny(mask);
Kate Stoneb9c1b512016-09-06 20:57:50 +000060}
61
Kate Stoneb9c1b512016-09-06 20:57:50 +000062
Pavel Labatha2fc1e02017-02-22 11:51:12 +000063void lldb_private::LogIfAnyCategoriesSet(uint32_t mask, const char *format, ...) {
64 if (Log *log = GetLogIfAnyCategoriesSet(mask)) {
65 va_list args;
66 va_start(args, format);
67 log->VAPrintf(format, args);
68 va_end(args);
Kate Stoneb9c1b512016-09-06 20:57:50 +000069 }
Caroline Tice20ad3c42010-10-29 21:48:37 +000070}