blob: c9a6ef1bd1eae7771a9e73a4ceec94a371528169 [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
Zachary Turner4479ac12017-04-06 18:12:24 +000013#include "llvm/ADT/ArrayRef.h" // for ArrayRef
14
15#include <stdarg.h> // for va_end, va_list, va_start
16
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017using namespace lldb_private;
18
Pavel Labatha2fc1e02017-02-22 11:51:12 +000019static constexpr Log::Category g_categories[] = {
20 {{"api"}, {"log API calls and return values"}, LIBLLDB_LOG_API},
21 {{"break"}, {"log breakpoints"}, LIBLLDB_LOG_BREAKPOINTS},
22 {{"commands"}, {"log command argument parsing"}, LIBLLDB_LOG_COMMANDS},
23 {{"comm"}, {"log communication activities"}, LIBLLDB_LOG_COMMUNICATION},
24 {{"conn"}, {"log connection details"}, LIBLLDB_LOG_CONNECTION},
25 {{"demangle"}, {"log mangled names to catch demangler crashes"}, LIBLLDB_LOG_DEMANGLE},
26 {{"dyld"}, {"log shared library related activities"}, LIBLLDB_LOG_DYNAMIC_LOADER},
27 {{"event"}, {"log broadcaster, listener and event queue activities"}, LIBLLDB_LOG_EVENTS},
28 {{"expr"}, {"log expressions"}, LIBLLDB_LOG_EXPRESSIONS},
29 {{"formatters"}, {"log data formatters related activities"}, LIBLLDB_LOG_DATAFORMATTERS},
30 {{"host"}, {"log host activities"}, LIBLLDB_LOG_HOST},
31 {{"jit"}, {"log JIT events in the target"}, LIBLLDB_LOG_JIT_LOADER},
32 {{"language"}, {"log language runtime events"}, LIBLLDB_LOG_LANGUAGE},
33 {{"mmap"}, {"log mmap related activities"}, LIBLLDB_LOG_MMAP},
34 {{"module"}, {"log module activities such as when modules are created, destroyed, replaced, and more"}, LIBLLDB_LOG_MODULES},
35 {{"object"}, {"log object construction/destruction for important objects"}, LIBLLDB_LOG_OBJECT},
36 {{"os"}, {"log OperatingSystem plugin related activities"}, LIBLLDB_LOG_OS},
37 {{"platform"}, {"log platform events and activities"}, LIBLLDB_LOG_PLATFORM},
38 {{"process"}, {"log process events and activities"}, LIBLLDB_LOG_PROCESS},
39 {{"script"}, {"log events about the script interpreter"}, LIBLLDB_LOG_SCRIPT},
40 {{"state"}, {"log private and public process state changes"}, LIBLLDB_LOG_STATE},
41 {{"step"}, {"log step related activities"}, LIBLLDB_LOG_STEP},
42 {{"symbol"}, {"log symbol related issues and warnings"}, LIBLLDB_LOG_SYMBOLS},
43 {{"system-runtime"}, {"log system runtime events"}, LIBLLDB_LOG_SYSTEM_RUNTIME},
44 {{"target"}, {"log target events and activities"}, LIBLLDB_LOG_TARGET},
Jason Molendaa4039a02017-04-03 22:23:01 +000045 {{"temp"}, {"log internal temporary debug messages"}, LIBLLDB_LOG_TEMPORARY},
Pavel Labatha2fc1e02017-02-22 11:51:12 +000046 {{"thread"}, {"log thread events and activities"}, LIBLLDB_LOG_THREAD},
47 {{"types"}, {"log type system related activities"}, LIBLLDB_LOG_TYPES},
48 {{"unwind"}, {"log stack unwind activities"}, LIBLLDB_LOG_UNWIND},
49 {{"watch"}, {"log watchpoint related activities"}, LIBLLDB_LOG_WATCHPOINTS},
50};
Greg Clayton5160ce52013-03-27 23:08:40 +000051
Pavel Labatha2fc1e02017-02-22 11:51:12 +000052static Log::Channel g_log_channel(g_categories, LIBLLDB_LOG_DEFAULT);
Eugene Zelenko89183722016-03-11 21:55:47 +000053
Pavel Labathd8133092017-10-23 19:41:17 +000054void lldb_private::InitializeLldbChannel() {
Pavel Labatha2fc1e02017-02-22 11:51:12 +000055 Log::Register("lldb", g_log_channel);
Kate Stoneb9c1b512016-09-06 20:57:50 +000056}
Chris Lattner30fdc8d2010-06-08 16:52:24 +000057
Kate Stoneb9c1b512016-09-06 20:57:50 +000058Log *lldb_private::GetLogIfAllCategoriesSet(uint32_t mask) {
Pavel Labatha2fc1e02017-02-22 11:51:12 +000059 return g_log_channel.GetLogIfAll(mask);
Kate Stoneb9c1b512016-09-06 20:57:50 +000060}
61
62Log *lldb_private::GetLogIfAnyCategoriesSet(uint32_t mask) {
Pavel Labatha2fc1e02017-02-22 11:51:12 +000063 return g_log_channel.GetLogIfAny(mask);
Kate Stoneb9c1b512016-09-06 20:57:50 +000064}
65
Kate Stoneb9c1b512016-09-06 20:57:50 +000066
Pavel Labatha2fc1e02017-02-22 11:51:12 +000067void lldb_private::LogIfAnyCategoriesSet(uint32_t mask, const char *format, ...) {
68 if (Log *log = GetLogIfAnyCategoriesSet(mask)) {
69 va_list args;
70 va_start(args, format);
71 log->VAPrintf(format, args);
72 va_end(args);
Kate Stoneb9c1b512016-09-06 20:57:50 +000073 }
Caroline Tice20ad3c42010-10-29 21:48:37 +000074}