Home
last modified time | relevance | path

Searched refs:Log (Results 1 – 25 of 407) sorted by relevance

12345678910>>...17

/openbsd/src/gnu/llvm/lldb/include/lldb/Utility/
DLLDBLog.h18 enum class LLDBLog : Log::MaskType {
19 API = Log::ChannelFlag<0>,
20 AST = Log::ChannelFlag<1>,
21 Breakpoints = Log::ChannelFlag<2>,
22 Commands = Log::ChannelFlag<3>,
23 Communication = Log::ChannelFlag<4>,
24 Connection = Log::ChannelFlag<5>,
25 DataFormatters = Log::ChannelFlag<6>,
26 Demangle = Log::ChannelFlag<7>,
27 DynamicLoader = Log::ChannelFlag<8>,
[all …]
DLog.h115 class Log final {
140 std::is_same<Log::MaskType, std::underlying_type_t<Cat>>::value); in Category()
147 std::atomic<Log *> log_ptr;
148 friend class Log; variable
155 constexpr Channel(llvm::ArrayRef<Log::Category> categories, in Channel()
160 std::is_same<Log::MaskType, std::underlying_type_t<Cat>>::value); in Channel()
167 Log *GetLog(MaskType mask) { in GetLog()
168 Log *log = log_ptr.load(std::memory_order_relaxed); in GetLog()
214 Log(Channel &channel) : m_channel(channel) {} in Log() function
215 ~Log() = default;
[all …]
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
DProcessKDPLog.h17 enum class KDPLog : Log::MaskType {
18 Async = Log::ChannelFlag<0>,
19 Breakpoints = Log::ChannelFlag<1>,
20 Comm = Log::ChannelFlag<2>,
21 MemoryDataLong = Log::ChannelFlag<3>, // Log all memory reads/writes bytes
22 MemoryDataShort = Log::ChannelFlag<4>, // Log short memory reads/writes bytes
23 Memory = Log::ChannelFlag<5>, // Log memory reads/writes calls
24 Packets = Log::ChannelFlag<6>,
25 Process = Log::ChannelFlag<7>,
26 Step = Log::ChannelFlag<8>,
[all …]
DProcessKDPLog.cpp13 static constexpr Log::Category g_categories[] = {
32 static Log::Channel g_channel(g_categories, KDPLog::Packets);
34 template <> Log::Channel &lldb_private::LogChannelFor<KDPLog>() { in LogChannelFor()
38 void ProcessKDPLog::Initialize() { Log::Register("kdp-remote", g_channel); } in Initialize()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemoteLog.h18 enum class GDBRLog : Log::MaskType {
19 Async = Log::ChannelFlag<0>,
20 Breakpoints = Log::ChannelFlag<1>,
21 Comm = Log::ChannelFlag<2>,
22 Memory = Log::ChannelFlag<3>, // Log memory reads/writes calls
23 MemoryDataLong = Log::ChannelFlag<4>, // Log all memory reads/writes bytes
24 MemoryDataShort = Log::ChannelFlag<5>, // Log short memory reads/writes bytes
25 Packets = Log::ChannelFlag<6>,
26 Process = Log::ChannelFlag<7>,
27 Step = Log::ChannelFlag<8>,
[all …]
DProcessGDBRemoteLog.cpp17 static constexpr Log::Category g_categories[] = {
36 static Log::Channel g_channel(g_categories, GDBRLog::Packets);
38 template <> Log::Channel &lldb_private::LogChannelFor<GDBRLog>() { in LogChannelFor()
45 Log::Register("gdb-remote", g_channel); in Initialize()
/openbsd/src/gnu/llvm/lldb/source/Utility/
DLog.cpp43 llvm::ManagedStatic<Log::ChannelMap> Log::g_channel_map;
45 void Log::ForEachCategory( in ForEachCategory()
46 const Log::ChannelMap::value_type &entry, in ForEachCategory()
54 void Log::ListCategories(llvm::raw_ostream &stream, in ListCategories()
63 Log::MaskType Log::GetFlags(llvm::raw_ostream &stream, in GetFlags()
67 Log::MaskType flags = 0; in GetFlags()
70 flags |= std::numeric_limits<Log::MaskType>::max(); in GetFlags()
78 [&](const Log::Category &c) { in GetFlags()
94 void Log::Enable(const std::shared_ptr<LogHandler> &handler_sp, in Enable()
95 uint32_t options, Log::MaskType flags) { in Enable()
[all …]
DLLDBLog.cpp16 static constexpr Log::Category g_categories[] = {
68 static Log::Channel g_log_channel(g_categories,
76 template <> Log::Channel &lldb_private::LogChannelFor<LLDBLog>() { in LogChannelFor()
81 Log::Register("lldb", g_log_channel); in InitializeLldbChannel()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/POSIX/
DProcessPOSIXLog.h18 enum class POSIXLog : Log::MaskType {
19 Breakpoints = Log::ChannelFlag<0>,
20 Memory = Log::ChannelFlag<1>,
21 Process = Log::ChannelFlag<2>,
22 Ptrace = Log::ChannelFlag<3>,
23 Registers = Log::ChannelFlag<4>,
24 Thread = Log::ChannelFlag<5>,
25 Watchpoints = Log::ChannelFlag<6>,
26 Trace = Log::ChannelFlag<7>,
36 template <> Log::Channel &LogChannelFor<POSIXLog>();
DProcessPOSIXLog.cpp15 static constexpr Log::Category g_categories[] = {
25 static Log::Channel g_channel(g_categories, POSIXLog::Process);
27 template <> Log::Channel &lldb_private::LogChannelFor<POSIXLog>() { in LogChannelFor()
33 llvm::call_once(g_once_flag, []() { Log::Register("posix", g_channel); }); in Initialize()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
DProcessWindowsLog.h17 enum class WindowsLog : Log::MaskType {
18 Breakpoints = Log::ChannelFlag<0>, // Log breakpoint operations
19 Event = Log::ChannelFlag<1>, // Low level debug events
20 Exception = Log::ChannelFlag<2>, // Log exceptions
21 Memory = Log::ChannelFlag<3>, // Log memory reads/writes calls
22 Process = Log::ChannelFlag<4>, // Log process operations
23 Registers = Log::ChannelFlag<5>, // Log register operations
24 Step = Log::ChannelFlag<6>, // Log step operations
25 Thread = Log::ChannelFlag<7>, // Log thread operations
36 template <> Log::Channel &LogChannelFor<WindowsLog>();
DProcessWindowsLog.cpp13 static constexpr Log::Category g_categories[] = {
24 static Log::Channel g_channel(g_categories, WindowsLog::Process);
26 template <> Log::Channel &lldb_private::LogChannelFor<WindowsLog>() { in LogChannelFor()
32 llvm::call_once(g_once_flag, []() { Log::Register("windows", g_channel); }); in Initialize()
DDebuggerThread.cpp52 Log *log = GetLog(WindowsLog::Process); in DebugLaunch()
69 Log *log = GetLog(WindowsLog::Process); in DebugAttach()
91 Log *log = GetLog(WindowsLog::Process); in DebuggerThreadLaunchRoutine()
118 Log *log = GetLog(WindowsLog::Process); in DebuggerThreadAttachRoutine()
141 Log *log = GetLog(WindowsLog::Process); in StopDebugging()
215 Log *log = GetLog(WindowsLog::Process | WindowsLog::Exception); in ContinueAsyncException()
233 Log *log = GetLog(WindowsLog::Event); in DebugLoop()
314 Log *log = GetLog(WindowsLog::Event | WindowsLog::Exception); in HandleExceptionEvent()
357 Log *log = GetLog(WindowsLog::Event | WindowsLog::Thread); in HandleCreateThreadEvent()
369 Log *log = GetLog(WindowsLog::Event | WindowsLog::Process); in HandleCreateProcessEvent()
[all …]
DProcessDebugger.cpp75 Log *log = GetLog(WindowsLog::Process); in DetachProcess()
111 Log *log = GetLog(WindowsLog::Process); in LaunchProcess()
174 Log *log = GetLog(WindowsLog::Process); in AttachProcess()
212 Log *log = GetLog(WindowsLog::Process); in DestroyProcess()
248 Log *log = GetLog(WindowsLog::Process); in HaltProcess()
266 Log *log = GetLog(WindowsLog::Memory); in ReadMemory()
296 Log *log = GetLog(WindowsLog::Memory); in WriteMemory()
326 Log *log = GetLog(WindowsLog::Memory); in AllocateMemory()
354 Log *log = GetLog(WindowsLog::Memory); in DeallocateMemory()
378 Log *log = GetLog(WindowsLog::Memory); in GetMemoryRegionInfo()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DMLRegallocPriorityAdvisor.cpp162 MLModelRunner *Runner, Logger *Log) in DevelopmentModePriorityAdvisor() argument
163 : MLPriorityAdvisor(MF, RA, Indexes, Runner), Log(Log) {} in DevelopmentModePriorityAdvisor()
167 Logger *const Log; member in llvm::DevelopmentModePriorityAdvisor
182 if (!Log) in logRewardIfNeeded()
188 if (Log->currentContext() != MF.getName()) { in logRewardIfNeeded()
192 if (Log->hasObservationInProgress()) in logRewardIfNeeded()
193 Log->logReward<float>(GetReward()); in logRewardIfNeeded()
236 Log = std::make_unique<Logger>(std::move(OS), LFS, Reward, in doInitialization()
245 if (Log) { in getAdvisor()
246 Log->switchContext(MF.getName()); in getAdvisor()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
DLogChannelDWARF.h17 enum class DWARFLog : Log::MaskType {
18 DebugInfo = Log::ChannelFlag<0>,
19 DebugLine = Log::ChannelFlag<1>,
20 DebugMap = Log::ChannelFlag<2>,
21 Lookups = Log::ChannelFlag<3>,
22 TypeCompletion = Log::ChannelFlag<4>,
33 template <> Log::Channel &LogChannelFor<DWARFLog>();
DLogChannelDWARF.cpp13 static constexpr Log::Category g_categories[] = {
27 static Log::Channel g_channel(g_categories, DWARFLog::DebugInfo);
29 template <> Log::Channel &lldb_private::LogChannelFor<DWARFLog>() { in LogChannelFor()
34 Log::Register("dwarf", g_channel); in Initialize()
37 void LogChannelDWARF::Terminate() { Log::Unregister("dwarf"); } in Terminate()
/openbsd/src/gnu/usr.bin/perl/vms/
Ddescrip_mms.template304 Copy/NoConfirm/Log $(MMS$SOURCE) $(PERLDELTA_CURRENT)
327 Copy/NoConfirm/Log $(MMS$SOURCE) []
404 Copy/NoConfirm/Log $(MMS$SOURCE) $(ARCHDIR)
408 Copy/NoConfirm/Log $(MMS$SOURCE) $(ARCHDIR)
480 Copy/NoConfirm/Log [.utils]perlbug.com [.lib]
490 Copy/NoConfirm/Log [.utils]splain.com [.lib]
570 Backup/Log/Verify [.lib.auto...]*.*;/Exclude=(*.al,*.ix) 'archroot'/New_Version
571 Delete/Log/NoConfirm [.lib.auto...]*.*;*/exclude=(*.al,*.ix,*.dir)
572 Delete/Log/NoConfirm [.lib]Config.pm;*
573 Delete/Log/NoConfirm [.lib]Config_heavy.pl;*
[all …]
/openbsd/src/gnu/llvm/clang/tools/libclang/
DCIndexHigh.cpp411 LogRef Log = Logger::make(__func__); in clang_findReferencesInFile() local
414 if (Log) in clang_findReferencesInFile()
415 *Log << "Null cursor"; in clang_findReferencesInFile()
419 if (Log) in clang_findReferencesInFile()
420 *Log << "Got CXCursor_NoDeclFound"; in clang_findReferencesInFile()
424 if (Log) in clang_findReferencesInFile()
425 *Log << "Null file"; in clang_findReferencesInFile()
429 if (Log) in clang_findReferencesInFile()
430 *Log << "Null visitor"; in clang_findReferencesInFile()
434 if (Log) in clang_findReferencesInFile()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/GSYM/
DDwarfTransformer.cpp250 static void convertFunctionLineTable(raw_ostream &Log, CUInfo &CUI, in convertFunctionLineTable() argument
292 Log << "error: DIE has a start address whose LowPC is between the " in convertFunctionLineTable()
295 Die.dump(Log, 0, DIDumpOptions::getForSingleDIE()); in convertFunctionLineTable()
313 Log << "warning: duplicate line table detected for DIE:\n"; in convertFunctionLineTable()
314 Die.dump(Log, 0, DIDumpOptions::getForSingleDIE()); in convertFunctionLineTable()
318 Log << "error: line table has addresses that do not " in convertFunctionLineTable()
321 CUI.LineTable->Rows[RowIndex2].dump(Log); in convertFunctionLineTable()
323 Die.dump(Log, 0, DIDumpOptions::getForSingleDIE()); in convertFunctionLineTable()
439 Log << "warning: Unable to retrieve DWO .debug_info section for " in convert()
453 handleDie(Log, CUI, Die); in convert()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Utility/
DNativeRegisterContextDBReg_arm64.cpp33 Log *log = GetLog(LLDBLog::Breakpoints); in NumSupportedHardwareBreakpoints()
47 Log *log = GetLog(LLDBLog::Breakpoints); in SetHardwareBreakpoint()
108 Log *log = GetLog(LLDBLog::Breakpoints); in ClearHardwareBreakpoint()
148 Log *log = GetLog(LLDBLog::Breakpoints); in GetHardwareBreakHitIndex()
168 Log *log = GetLog(LLDBLog::Breakpoints); in ClearAllHardwareBreakpoints()
210 Log *log = GetLog(LLDBLog::Watchpoints); in NumSupportedHardwareWatchpoints()
223 Log *log = GetLog(LLDBLog::Watchpoints); in SetHardwareWatchpoint()
316 Log *log = GetLog(LLDBLog::Watchpoints); in ClearHardwareWatchpoint()
388 Log *log = GetLog(LLDBLog::Watchpoints); in GetWatchpointSize()
406 Log *log = GetLog(LLDBLog::Watchpoints); in WatchpointIsEnabled()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Target/
DThreadPlanPython.cpp74 Log *log = GetLog(LLDBLog::Thread); in ShouldStop()
93 Log *log = GetLog(LLDBLog::Thread); in IsPlanStale()
112 Log *log = GetLog(LLDBLog::Thread); in DoPlanExplainsStop()
131 Log *log = GetLog(LLDBLog::Thread); in MischiefManaged()
146 Log *log = GetLog(LLDBLog::Thread); in GetPlanRunState()
168 Log *log = GetLog(LLDBLog::Thread); in WillStop()
DThreadPlan.cpp80 Log *log = GetLog(LLDBLog::Step); in ShouldReportStop()
120 Log *log = GetLog(LLDBLog::Step); in WillResume()
199 Log *log = GetLog(LLDBLog::Thread); in ValidatePlan()
215 Log *log = GetLog(LLDBLog::Thread); in ShouldStop()
231 Log *log = GetLog(LLDBLog::Thread); in WillStop()
247 Log *log = GetLog(LLDBLog::Thread); in DoPlanExplainsStop()
265 Log *log = GetLog(LLDBLog::Thread); in MischiefManaged()
282 Log *log = GetLog(LLDBLog::Thread); in GetPlanRunState()
/openbsd/src/gnu/llvm/lldb/source/Symbol/
DSymbolFileOnDemand.cpp49 Log *log = GetLog(); in ParseLanguage()
63 Log *log = GetLog(); in ParseXcodeSDK()
128 Log *log = GetLog(); in ParseIsOptimized()
154 Log *log = GetLog(); in ParseImportedModules()
189 Log *log = GetLog(); in ResolveTypeUID()
223 Log *log = GetLog(); in GetDeclForUID()
332 Log *log = GetLog(); in FindGlobalVariables()
361 Log *log = GetLog(); in FindFunctions()
394 Log *log = GetLog(); in FindFunctions()
425 Log *log = GetLog(); in GetMangledNamesForFunction()
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
Doverload9.C8 } Log;
16 Log(1,"Test");// ERROR - call of.* in main()
17 Log(1,"Test %d",3); in main()

12345678910>>...17