| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | LLDBLog.h | 18 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 …]
|
| H A D | Log.h | 115 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/ |
| H A D | ProcessKDPLog.h | 17 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 …]
|
| H A D | ProcessKDPLog.cpp | 13 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/ |
| H A D | ProcessGDBRemoteLog.h | 18 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 …]
|
| H A D | ProcessGDBRemoteLog.cpp | 17 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/ |
| H A D | Log.cpp | 43 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 …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessWindowsLog.h | 17 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>();
|
| H A D | ProcessWindowsLog.cpp | 13 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()
|
| H A D | DebuggerThread.cpp | 52 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 …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/POSIX/ |
| H A D | ProcessPOSIXLog.h | 18 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>();
|
| H A D | ProcessPOSIXLog.cpp | 15 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/llvm/lib/CodeGen/ |
| H A D | MLRegallocPriorityAdvisor.cpp | 162 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/ |
| H A D | LogChannelDWARF.h | 17 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>();
|
| H A D | LogChannelDWARF.cpp | 13 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/ |
| H A D | descrip_mms.template | 304 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/NoConfir [all...] |
| /openbsd-src/gnu/llvm/clang/tools/libclang/ |
| H A D | CIndexHigh.cpp | 411 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/tools/llvm-diff/lib/ |
| H A D | DiffConsumer.cpp | 164 void DiffConsumer::logf(const LogBuilder &Log) { in logf() argument 170 StringRef format = Log.getFormat(); in logf() 183 case 'l': printValue(Log.getArgument(arg++), true); break; in logf() 184 case 'r': printValue(Log.getArgument(arg++), false); break; in logf() 194 void DiffConsumer::logd(const DiffLogBuilder &Log) { in logd() argument 197 for (unsigned I = 0, E = Log.getNumLines(); I != E; ++I) { in logd() 199 switch (Log.getLineKind(I)) { in logd() 202 Log.getLeft(I)->print(dbgs()); dbgs() << '\n'; in logd() 207 Log.getLeft(I)->print(dbgs()); dbgs() << '\n'; in logd() 212 Log.getRight(I)->print(dbgs()); dbgs() << '\n'; in logd()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/GSYM/ |
| H A D | DwarfTransformer.cpp | 250 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/ |
| H A D | NativeRegisterContextDBReg_arm64.cpp | 33 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/ |
| H A D | ThreadPlanPython.cpp | 74 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()
|
| H A D | ThreadPlan.cpp | 80 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/llvm/tools/llvm-debuginfod/ |
| H A D | llvm-debuginfod.cpp | 78 DebuginfodLog Log; in main() local 79 DebuginfodCollection Collection(Paths, Log, Pool, MinInterval); in main() 80 DebuginfodServer Server(Log, Collection); in main() 87 Log.push("Listening on port " + Twine(Port).str()); in main() 92 DebuginfodLogEntry Entry = Log.pop(); in main()
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | SymbolFileOnDemand.cpp | 49 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/ |
| H A D | overload9.C | 8 } Log; 16 Log(1,"Test");// ERROR - call of.* in main() 17 Log(1,"Test %d",3); in main()
|