Home
last modified time | relevance | path

Searched refs:debugger (Results 1 – 25 of 140) sorted by relevance

123456

/freebsd-13.1/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp27 Debugger &debugger = m_target.GetDebugger(); in REPL() local
68 Debugger &debugger = m_target.GetDebugger(); in GetIOHandler() local
70 debugger, IOHandler::Type::REPL, in GetIOHandler()
261 if (debugger.CheckTopIOHandlerTypes( in IOHandlerInputComplete()
274 if (debugger.CheckTopIOHandlerTypes( in IOHandlerInputComplete()
358 if (debugger.GetPrintDecls()) { in IOHandlerInputComplete()
560 Debugger &debugger = m_target.GetDebugger(); in RunLoop() local
573 debugger.RunIOHandlerAsync(io_handler_sp); in RunLoop()
578 if (!debugger.HasIOHandlerThread()) { in RunLoop()
582 debugger.StartIOHandlerThread(); in RunLoop()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/tools/driver/
H A DOptions.td15 HelpText<"Tells the debugger to attach to a process with the given name.">,
32 HelpText<"Tells the debugger to attach to a process with the given pid.">,
105 HelpText<"Tells the debugger to run the commands from -s, -S, -o & -O, and then quit.">,
177 HelpText<"Prints out the current version number of the LLDB debugger.">;
183 HelpText<"Prints out the usage information for the LLDB debugger.">;
190 HelpText<"Tells the debugger to use the full path to <filename> as the core file.">;
209 HelpText<"Tells the debugger to use the file <filename> as the program to be debugged.">;
222 HelpText<"Tells the debugger to print out extra information for debugging itself.">;
228 HelpText<"Tells the debugger to capture a reproducer.">;
231 HelpText<"Tells the debugger to use the given filename for the reproducer.">;
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp39 IOHandlerLuaInterpreter(Debugger &debugger, in IOHandlerLuaInterpreter() argument
48 debugger.GetOutputFile().GetStream(), in IOHandlerLuaInterpreter()
49 debugger.GetErrorFile().GetStream())); in IOHandlerLuaInterpreter()
145 ScriptInterpreterLua::ScriptInterpreterLua(Debugger &debugger) in ScriptInterpreterLua() argument
146 : ScriptInterpreter(debugger, eScriptLanguageLua), in ScriptInterpreterLua()
276 Debugger &debugger = target->GetDebugger(); in BreakpointCallbackFunction() local
285 debugger.GetErrorStream() << toString(std::move(E)); in BreakpointCallbackFunction()
304 Debugger &debugger = target->GetDebugger(); in WatchpointCallbackFunction() local
312 debugger.GetErrorStream() << toString(std::move(E)); in WatchpointCallbackFunction()
386 ScriptInterpreterLua::CreateInstance(Debugger &debugger) { in CreateInstance() argument
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DPluginManager.h262 Debugger &debugger);
458 static void DebuggerInitialize(Debugger &debugger);
461 GetSettingForDynamicLoaderPlugin(Debugger &debugger,
465 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
469 GetSettingForPlatformPlugin(Debugger &debugger, ConstString setting_name);
472 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
476 GetSettingForProcessPlugin(Debugger &debugger, ConstString setting_name);
479 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
486 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
497 GetSettingForOperatingSystemPlugin(Debugger &debugger,
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DPluginManager.cpp257 void PerformDebuggerCallback(Debugger &debugger) { in PerformDebuggerCallback() argument
260 instance.debugger_init_callback(debugger); in PerformDebuggerCallback()
893 return instance.create_callback(debugger); in GetScriptInterpreterForLanguage()
898 return none_instance(debugger); in GetScriptInterpreterForLanguage()
1355 debugger.GetValueProperties()); in GetDebuggerPropertyForPlugins()
1392 debugger.GetValueProperties()); in GetDebuggerPropertyForPluginsOldStyle()
1432 debugger, plugin_type_name, in GetSettingForPlugin()
1474 return GetSettingForPlugin(debugger, setting_name, in GetSettingForDynamicLoaderPlugin()
1490 return GetSettingForPlugin(debugger, setting_name, in GetSettingForPlatformPlugin()
1507 return GetSettingForPlugin(debugger, setting_name, in GetSettingForProcessPlugin()
[all …]
H A DIOHandler.cpp56 IOHandler::IOHandler(Debugger &debugger, IOHandler::Type type) in IOHandler() argument
57 : IOHandler(debugger, type, in IOHandler()
65 IOHandler::IOHandler(Debugger &debugger, IOHandler::Type type, in IOHandler() argument
70 : m_debugger(debugger), m_input_sp(input_sp), m_output_sp(output_sp), in IOHandler()
76 debugger.AdoptTopIOHandlerFilesIfInvalid(m_input_sp, m_output_sp, in IOHandler()
137 debugger, IOHandler::Type::Confirm, in IOHandlerConfirm()
224 Debugger &debugger, IOHandler::Type type, in IOHandlerEditline() argument
229 : IOHandlerEditline(debugger, type, in IOHandlerEditline()
239 Debugger &debugger, IOHandler::Type type, const lldb::FileSP &input_sp, in IOHandlerEditline() argument
246 : IOHandler(debugger, type, input_sp, output_sp, error_sp, flags, in IOHandlerEditline()
[all …]
H A DProgress.cpp20 lldb_private::Debugger *debugger) in Progress() argument
23 if (debugger) in Progress()
24 m_debugger_id = debugger->GetID(); in Progress()
H A DStreamAsynchronousIO.cpp17 StreamAsynchronousIO::StreamAsynchronousIO(Debugger &debugger, bool for_stdout) in StreamAsynchronousIO() argument
18 : Stream(0, 4, eByteOrderBig), m_debugger(debugger), m_data(), in StreamAsynchronousIO()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectGUI.cpp30 Debugger &debugger = GetDebugger(); in DoExecute() local
32 File &input = debugger.GetInputFile(); in DoExecute()
33 File &output = debugger.GetOutputFile(); in DoExecute()
36 IOHandlerSP io_handler_sp(new IOHandlerCursesGUI(debugger)); in DoExecute()
38 debugger.RunIOHandlerAsync(io_handler_sp); in DoExecute()
H A DCommandObjectExpression.cpp522 Debugger &debugger = GetCommandInterpreter().GetDebugger(); in GetMultilineExpression() local
523 bool color_prompt = debugger.GetUseColor(); in GetMultilineExpression()
526 new IOHandlerEditline(debugger, IOHandler::Type::Expression, in GetMultilineExpression()
540 debugger.RunIOHandlerAsync(io_handler_sp); in GetMultilineExpression()
590 Debugger &debugger = target.GetDebugger(); in DoExecute() local
594 if (debugger.CheckTopIOHandlerTypes(IOHandler::Type::CommandInterpreter, in DoExecute()
628 debugger.RunIOHandlerAsync(io_handler_sp); in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/docs/man/
H A Dlldb.rst16 :program:`lldb` is a next generation, high-performance debugger. It is built as
20 :program:`lldb` is the default debugger in Xcode on macOS and supports
31 Tells the debugger to attach to a process with the given name.
35 Tells the debugger to attach to a process with the given pid.
145 Tells the debugger to use the given filename for the reproducer.
149 Tells the debugger to capture a reproducer.
153 Tells the debugger to use the full path to <filename> as the core file.
185 Prints out the usage information for the LLDB debugger.
197 Tells the debugger to replay a reproducer from <filename>.
201 Prints out the current version number of the LLDB debugger.
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp30 Debugger &debugger, lldb::ScriptLanguage script_lang, in ScriptInterpreter() argument
32 : m_debugger(debugger), m_script_lang(script_lang), in ScriptInterpreter()
137 ScriptInterpreterIORedirect::Create(bool enable_io, Debugger &debugger, in Create() argument
141 new ScriptInterpreterIORedirect(debugger, result)); in Create()
166 Debugger &debugger, CommandReturnObject *result) in ScriptInterpreterIORedirect() argument
171 m_input_file_sp = debugger.GetInputFileSP(); in ScriptInterpreterIORedirect()
199 result->SetImmediateOutputFile(debugger.GetOutputStream().GetFileSP()); in ScriptInterpreterIORedirect()
200 result->SetImmediateErrorFile(debugger.GetErrorStream().GetFileSP()); in ScriptInterpreterIORedirect()
205 debugger.AdoptTopIOHandlerFilesIfInvalid(m_input_file_sp, m_output_file_sp, in ScriptInterpreterIORedirect()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp38 TargetList::TargetList(Debugger &debugger) in TargetList() argument
39 : Broadcaster(debugger.GetBroadcasterManager(), in TargetList()
45 Status TargetList::CreateTarget(Debugger &debugger, in CreateTarget() argument
53 debugger, user_exe_path, triple_str, load_dependent_files, in CreateTarget()
61 Status TargetList::CreateTarget(Debugger &debugger, in CreateTarget() argument
68 debugger, user_exe_path, specified_arch, load_dependent_files, in CreateTarget()
77 Debugger &debugger, llvm::StringRef user_exe_path, in CreateTargetInternal() argument
280 return TargetList::CreateTargetInternal(debugger, user_exe_path, in CreateTargetInternal()
285 Status TargetList::CreateTargetInternal(Debugger &debugger, in CreateTargetInternal() argument
306 platform_sp = debugger.GetPlatformList().GetSelectedPlatform(); in CreateTargetInternal()
[all …]
H A DStructuredDataPlugin.cpp45 void StructuredDataPlugin::InitializeBasePluginForDebugger(Debugger &debugger) { in InitializeBasePluginForDebugger() argument
47 auto &interpreter = debugger.GetCommandInterpreter(); in InitializeBasePluginForDebugger()
51 debugger.GetCommandInterpreter().GetCommandObject("plugin"); in InitializeBasePluginForDebugger()
H A DStopInfo.cpp454 StreamSP error_sp = debugger.GetAsyncErrorStream(); in PerformAction()
526 bool old_async = debugger.GetAsyncExecution(); in PerformAction()
527 debugger.SetAsyncExecution(true); in PerformAction()
531 debugger.SetAsyncExecution(old_async); in PerformAction()
825 Debugger &debugger = exe_ctx.GetTargetRef().GetDebugger(); in PerformAction() local
864 StreamSP error_sp = debugger.GetAsyncErrorStream(); in PerformAction()
890 bool old_async = debugger.GetAsyncExecution(); in PerformAction()
891 debugger.SetAsyncExecution(true); in PerformAction()
896 debugger.SetAsyncExecution(old_async); in PerformAction()
912 Debugger &debugger = exe_ctx.GetTargetRef().GetDebugger(); in PerformAction() local
[all …]
H A DRemoteAwarePlatform.cpp409 Debugger &debugger, in ConnectProcess() argument
414 debugger, target, error); in ConnectProcess()
415 return Platform::ConnectProcess(connect_url, plugin_name, debugger, target, in ConnectProcess()
441 size_t RemoteAwarePlatform::ConnectToWaitingProcesses(Debugger &debugger, in ConnectToWaitingProcesses() argument
444 return m_remote_platform_sp->ConnectToWaitingProcesses(debugger, error); in ConnectToWaitingProcesses()
445 return Platform::ConnectToWaitingProcesses(debugger, error); in ConnectToWaitingProcesses()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/
H A DScriptInterpreterNone.cpp25 ScriptInterpreterNone::ScriptInterpreterNone(Debugger &debugger) in LLDB_PLUGIN_DEFINE()
26 : ScriptInterpreter(debugger, eScriptLanguageNone) {} in LLDB_PLUGIN_DEFINE()
56 ScriptInterpreterNone::CreateInstance(Debugger &debugger) { in CreateInstance() argument
57 return std::make_shared<ScriptInterpreterNone>(debugger); in CreateInstance()
H A DScriptInterpreterNone.h18 ScriptInterpreterNone(Debugger &debugger);
33 static lldb::ScriptInterpreterSP CreateInstance(Debugger &debugger);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DTargetList.h32 TargetList(Debugger &debugger);
87 Status CreateTarget(Debugger &debugger, llvm::StringRef user_exe_path,
97 Status CreateTarget(Debugger &debugger, llvm::StringRef user_exe_path,
198 Debugger &debugger, llvm::StringRef user_exe_path,
202 static Status CreateTargetInternal(Debugger &debugger,
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-interfaces.h83 Debugger &debugger);
112 Debugger *debugger, Target *target,
115 typedef void (*DebuggerInitializeCallback)(Debugger &debugger);
120 llvm::StringRef session_file_dir, lldb_private::Debugger &debugger);
/freebsd-13.1/sys/mips/mips/
H A Dlocore.S185 REG_S zero, CALLFRAME_RA(sp) # Zero out old ra for debugger
186 REG_S zero, CALLFRAME_SP(sp) # Zero out old fp for debugger
201 sw zero, CALLFRAME_SIZ - 8(sp) # Zero out old fp for debugger
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBListener.cpp79 uint32_t SBListener::StartListeningForEventClass(SBDebugger &debugger, in StartListeningForEventClass() argument
83 (lldb::SBDebugger &, const char *, uint32_t), debugger, in StartListeningForEventClass()
87 Debugger *lldb_debugger = debugger.get(); in StartListeningForEventClass()
97 bool SBListener::StopListeningForEventClass(SBDebugger &debugger, in StopListeningForEventClass() argument
101 (lldb::SBDebugger &, const char *, uint32_t), debugger, in StopListeningForEventClass()
105 Debugger *lldb_debugger = debugger.get(); in StopListeningForEventClass()
H A DSBSourceManager.cpp74 SBSourceManager::SBSourceManager(const SBDebugger &debugger) { in SBSourceManager() argument
76 debugger); in SBSourceManager()
78 m_opaque_up = std::make_unique<SourceManagerImpl>(debugger.get_sp()); in SBSourceManager()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.h47 ScriptInterpreterPython(Debugger &debugger) in ScriptInterpreterPython() argument
48 : ScriptInterpreter(debugger, lldb::eScriptLanguagePython), in ScriptInterpreterPython()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTSessionFileParser.h37 TraceIntelPTSessionFileParser(Debugger &debugger, in TraceIntelPTSessionFileParser() argument
40 : TraceSessionFileParser(debugger, session_file_dir, GetSchema()), in TraceIntelPTSessionFileParser()

123456