blob: 27c6702f8f394b3e17f61b773349ddc39d4a057e [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- CommandObjectTarget.cpp ---------------------------------*- C++ -*-===//
2//
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
Daniel Malea93a64302012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include "CommandObjectTarget.h"
13
14// C Includes
15#include <errno.h>
Greg Claytonc4a99bc2011-02-01 01:13:32 +000016
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017// C++ Includes
18// Other libraries and framework includes
19// Project includes
Jim Ingham40af72e2010-06-15 19:49:27 +000020#include "lldb/Interpreter/Args.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000021#include "lldb/Core/Debugger.h"
Jim Ingham9575d842011-03-11 03:53:59 +000022#include "lldb/Core/InputReader.h"
Greg Clayton1f746072012-08-29 21:13:06 +000023#include "lldb/Core/Module.h"
24#include "lldb/Core/ModuleSpec.h"
Greg Claytoneffe5c92011-05-03 22:09:39 +000025#include "lldb/Core/Section.h"
Greg Clayton7260f622011-04-18 08:33:37 +000026#include "lldb/Core/State.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000027#include "lldb/Core/Timer.h"
Greg Clayton644247c2011-07-07 01:59:51 +000028#include "lldb/Core/ValueObjectVariable.h"
Greg Claytonc8f814d2012-09-27 03:13:55 +000029#include "lldb/Host/Symbols.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000030#include "lldb/Interpreter/CommandInterpreter.h"
31#include "lldb/Interpreter/CommandReturnObject.h"
Greg Claytoneffe5c92011-05-03 22:09:39 +000032#include "lldb/Interpreter/Options.h"
Greg Clayton7260f622011-04-18 08:33:37 +000033#include "lldb/Interpreter/OptionGroupArchitecture.h"
Greg Claytonaa149cb2011-08-11 02:48:45 +000034#include "lldb/Interpreter/OptionGroupBoolean.h"
Greg Claytoneffe5c92011-05-03 22:09:39 +000035#include "lldb/Interpreter/OptionGroupFile.h"
Greg Clayton1deb7962011-10-25 06:44:01 +000036#include "lldb/Interpreter/OptionGroupFormat.h"
Greg Clayton715c2362011-07-07 04:38:25 +000037#include "lldb/Interpreter/OptionGroupVariable.h"
Greg Clayton7260f622011-04-18 08:33:37 +000038#include "lldb/Interpreter/OptionGroupPlatform.h"
Greg Claytoneffe5c92011-05-03 22:09:39 +000039#include "lldb/Interpreter/OptionGroupUInt64.h"
40#include "lldb/Interpreter/OptionGroupUUID.h"
Greg Clayton644247c2011-07-07 01:59:51 +000041#include "lldb/Interpreter/OptionGroupValueObjectDisplay.h"
Greg Clayton1f746072012-08-29 21:13:06 +000042#include "lldb/Symbol/CompileUnit.h"
Jason Molenda380241a2012-07-12 00:20:07 +000043#include "lldb/Symbol/FuncUnwinders.h"
Greg Claytoneffe5c92011-05-03 22:09:39 +000044#include "lldb/Symbol/LineTable.h"
45#include "lldb/Symbol/ObjectFile.h"
46#include "lldb/Symbol/SymbolFile.h"
47#include "lldb/Symbol/SymbolVendor.h"
Jason Molenda380241a2012-07-12 00:20:07 +000048#include "lldb/Symbol/UnwindPlan.h"
Greg Clayton644247c2011-07-07 01:59:51 +000049#include "lldb/Symbol/VariableList.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000050#include "lldb/Target/Process.h"
51#include "lldb/Target/StackFrame.h"
52#include "lldb/Target/Thread.h"
Jim Ingham9575d842011-03-11 03:53:59 +000053#include "lldb/Target/ThreadSpec.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000054
55using namespace lldb;
56using namespace lldb_private;
57
Greg Clayton7260f622011-04-18 08:33:37 +000058
59
60static void
61DumpTargetInfo (uint32_t target_idx, Target *target, const char *prefix_cstr, bool show_stopped_process_status, Stream &strm)
62{
Greg Clayton176761e2011-04-19 04:19:37 +000063 const ArchSpec &target_arch = target->GetArchitecture();
Greg Clayton7260f622011-04-18 08:33:37 +000064
Greg Claytonaa149cb2011-08-11 02:48:45 +000065 Module *exe_module = target->GetExecutableModulePointer();
Greg Clayton7260f622011-04-18 08:33:37 +000066 char exe_path[PATH_MAX];
67 bool exe_valid = false;
Greg Claytonaa149cb2011-08-11 02:48:45 +000068 if (exe_module)
69 exe_valid = exe_module->GetFileSpec().GetPath (exe_path, sizeof(exe_path));
Greg Clayton7260f622011-04-18 08:33:37 +000070
71 if (!exe_valid)
72 ::strcpy (exe_path, "<none>");
73
74 strm.Printf ("%starget #%u: %s", prefix_cstr ? prefix_cstr : "", target_idx, exe_path);
75
76 uint32_t properties = 0;
77 if (target_arch.IsValid())
78 {
79 strm.Printf ("%sarch=%s", properties++ > 0 ? ", " : " ( ", target_arch.GetTriple().str().c_str());
80 properties++;
81 }
82 PlatformSP platform_sp (target->GetPlatform());
83 if (platform_sp)
Greg Clayton57abc5d2013-05-10 21:47:16 +000084 strm.Printf ("%splatform=%s", properties++ > 0 ? ", " : " ( ", platform_sp->GetName().GetCString());
Greg Clayton7260f622011-04-18 08:33:37 +000085
86 ProcessSP process_sp (target->GetProcessSP());
87 bool show_process_status = false;
88 if (process_sp)
89 {
90 lldb::pid_t pid = process_sp->GetID();
91 StateType state = process_sp->GetState();
92 if (show_stopped_process_status)
Greg Clayton2637f822011-11-17 01:23:07 +000093 show_process_status = StateIsStoppedState(state, true);
Greg Clayton7260f622011-04-18 08:33:37 +000094 const char *state_cstr = StateAsCString (state);
95 if (pid != LLDB_INVALID_PROCESS_ID)
Daniel Malead01b2952012-11-29 21:49:15 +000096 strm.Printf ("%spid=%" PRIu64, properties++ > 0 ? ", " : " ( ", pid);
Greg Clayton7260f622011-04-18 08:33:37 +000097 strm.Printf ("%sstate=%s", properties++ > 0 ? ", " : " ( ", state_cstr);
98 }
99 if (properties > 0)
100 strm.PutCString (" )\n");
101 else
102 strm.EOL();
103 if (show_process_status)
104 {
105 const bool only_threads_with_stop_reason = true;
106 const uint32_t start_frame = 0;
107 const uint32_t num_frames = 1;
108 const uint32_t num_frames_with_source = 1;
109 process_sp->GetStatus (strm);
110 process_sp->GetThreadStatus (strm,
111 only_threads_with_stop_reason,
112 start_frame,
113 num_frames,
114 num_frames_with_source);
115
116 }
117}
118
119static uint32_t
120DumpTargetList (TargetList &target_list, bool show_stopped_process_status, Stream &strm)
121{
122 const uint32_t num_targets = target_list.GetNumTargets();
123 if (num_targets)
124 {
125 TargetSP selected_target_sp (target_list.GetSelectedTarget());
126 strm.PutCString ("Current targets:\n");
127 for (uint32_t i=0; i<num_targets; ++i)
128 {
129 TargetSP target_sp (target_list.GetTargetAtIndex (i));
130 if (target_sp)
131 {
132 bool is_selected = target_sp.get() == selected_target_sp.get();
133 DumpTargetInfo (i,
134 target_sp.get(),
135 is_selected ? "* " : " ",
136 show_stopped_process_status,
137 strm);
138 }
139 }
140 }
141 return num_targets;
142}
143#pragma mark CommandObjectTargetCreate
144
145//-------------------------------------------------------------------------
146// "target create"
147//-------------------------------------------------------------------------
148
Jim Ingham5a988412012-06-08 21:56:10 +0000149class CommandObjectTargetCreate : public CommandObjectParsed
Greg Clayton7260f622011-04-18 08:33:37 +0000150{
151public:
152 CommandObjectTargetCreate(CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +0000153 CommandObjectParsed (interpreter,
154 "target create",
155 "Create a target using the argument as the main executable.",
156 NULL),
Greg Clayton7260f622011-04-18 08:33:37 +0000157 m_option_group (interpreter),
Greg Clayton644247c2011-07-07 01:59:51 +0000158 m_arch_option (),
Greg Claytonc3776bf2012-02-09 06:16:32 +0000159 m_platform_options(true), // Do include the "--platform" option in the platform settings by passing true
Greg Clayton1c5f1862012-11-30 19:05:35 +0000160 m_core_file (LLDB_OPT_SET_1, false, "core", 'c', 0, eArgTypeFilename, "Fullpath to a core file to use for this target."),
161 m_symbol_file (LLDB_OPT_SET_1, false, "symfile", 's', 0, eArgTypeFilename, "Fullpath to a stand alone debug symbols file for when debug symbols are not in the executable."),
Jim Inghambf22b962013-07-11 01:47:46 +0000162 m_remote_file (LLDB_OPT_SET_1, false, "remote-file", 'r', 0, eArgTypeFilename, "Fullpath to the file on the remote host if debugging remotely."),
Greg Clayton1c5f1862012-11-30 19:05:35 +0000163 m_add_dependents (LLDB_OPT_SET_1, false, "no-dependents", 'd', "Don't load dependent files when creating the target, just add the specified executable.", true, true)
Greg Clayton7260f622011-04-18 08:33:37 +0000164 {
165 CommandArgumentEntry arg;
166 CommandArgumentData file_arg;
167
168 // Define the first (and only) variant of this arg.
169 file_arg.arg_type = eArgTypeFilename;
170 file_arg.arg_repetition = eArgRepeatPlain;
171
172 // There is only one variant this argument could be; put it into the argument entry.
173 arg.push_back (file_arg);
174
175 // Push the data for the first argument into the m_arguments vector.
176 m_arguments.push_back (arg);
177
Greg Clayton644247c2011-07-07 01:59:51 +0000178 m_option_group.Append (&m_arch_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton7260f622011-04-18 08:33:37 +0000179 m_option_group.Append (&m_platform_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Claytonc3776bf2012-02-09 06:16:32 +0000180 m_option_group.Append (&m_core_file, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton1c5f1862012-11-30 19:05:35 +0000181 m_option_group.Append (&m_symbol_file, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Jim Inghambf22b962013-07-11 01:47:46 +0000182 m_option_group.Append (&m_remote_file, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton1c5f1862012-11-30 19:05:35 +0000183 m_option_group.Append (&m_add_dependents, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton7260f622011-04-18 08:33:37 +0000184 m_option_group.Finalize();
185 }
186
187 ~CommandObjectTargetCreate ()
188 {
189 }
190
191 Options *
192 GetOptions ()
193 {
194 return &m_option_group;
195 }
196
Greg Claytonc7bece562013-01-25 18:06:21 +0000197 virtual int
Jim Ingham5a988412012-06-08 21:56:10 +0000198 HandleArgumentCompletion (Args &input,
199 int &cursor_index,
200 int &cursor_char_position,
201 OptionElementVector &opt_element_vector,
202 int match_start_point,
203 int max_return_elements,
204 bool &word_complete,
205 StringList &matches)
206 {
207 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
208 completion_str.erase (cursor_char_position);
209
210 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
211 CommandCompletions::eDiskFileCompletion,
212 completion_str.c_str(),
213 match_start_point,
214 max_return_elements,
215 NULL,
216 word_complete,
217 matches);
218 return matches.GetSize();
219 }
220
221protected:
Greg Clayton7260f622011-04-18 08:33:37 +0000222 bool
Jim Ingham5a988412012-06-08 21:56:10 +0000223 DoExecute (Args& command, CommandReturnObject &result)
Greg Clayton7260f622011-04-18 08:33:37 +0000224 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000225 const size_t argc = command.GetArgumentCount();
Greg Claytonc3776bf2012-02-09 06:16:32 +0000226 FileSpec core_file (m_core_file.GetOptionValue().GetCurrentValue());
Jim Inghambf22b962013-07-11 01:47:46 +0000227 FileSpec remote_file (m_remote_file.GetOptionValue().GetCurrentValue());
Greg Claytonc3776bf2012-02-09 06:16:32 +0000228
229 if (argc == 1 || core_file)
Greg Clayton7260f622011-04-18 08:33:37 +0000230 {
Greg Clayton1c5f1862012-11-30 19:05:35 +0000231 FileSpec symfile (m_symbol_file.GetOptionValue().GetCurrentValue());
232 if (symfile)
233 {
234 if (!symfile.Exists())
235 {
236 char symfile_path[PATH_MAX];
237 symfile.GetPath(symfile_path, sizeof(symfile_path));
238 result.AppendErrorWithFormat("invalid symbol file path '%s'", symfile_path);
239 result.SetStatus (eReturnStatusFailed);
240 return false;
241 }
242 }
243
Greg Clayton7260f622011-04-18 08:33:37 +0000244 const char *file_path = command.GetArgumentAtIndex(0);
245 Timer scoped_timer(__PRETTY_FUNCTION__, "(lldb) target create '%s'", file_path);
Greg Clayton7260f622011-04-18 08:33:37 +0000246 TargetSP target_sp;
247 Debugger &debugger = m_interpreter.GetDebugger();
Greg Claytoncac9c5f2011-09-24 00:52:29 +0000248 const char *arch_cstr = m_arch_option.GetArchitectureName();
Greg Clayton1c5f1862012-11-30 19:05:35 +0000249 const bool get_dependent_files = m_add_dependents.GetOptionValue().GetCurrentValue();
Greg Claytoncac9c5f2011-09-24 00:52:29 +0000250 Error error (debugger.GetTargetList().CreateTarget (debugger,
Greg Claytona0ca6602012-10-18 16:33:33 +0000251 file_path,
Greg Claytoncac9c5f2011-09-24 00:52:29 +0000252 arch_cstr,
253 get_dependent_files,
254 &m_platform_options,
255 target_sp));
256
Greg Clayton7260f622011-04-18 08:33:37 +0000257 if (target_sp)
258 {
Jim Inghambf22b962013-07-11 01:47:46 +0000259 if (symfile || remote_file)
Greg Clayton1c5f1862012-11-30 19:05:35 +0000260 {
261 ModuleSP module_sp (target_sp->GetExecutableModule());
262 if (module_sp)
Jim Inghambf22b962013-07-11 01:47:46 +0000263 {
264 if (symfile)
265 module_sp->SetSymbolFileFileSpec(symfile);
266 if (remote_file)
267 {
268 std::string remote_path = remote_file.GetPath();
269 target_sp->SetArg0(remote_path.c_str());
270 module_sp->SetPlatformFileSpec(remote_file);
271 }
272 }
Greg Clayton1c5f1862012-11-30 19:05:35 +0000273 }
274
Greg Clayton7260f622011-04-18 08:33:37 +0000275 debugger.GetTargetList().SetSelectedTarget(target_sp.get());
Greg Claytonc3776bf2012-02-09 06:16:32 +0000276 if (core_file)
277 {
Greg Claytonc3776bf2012-02-09 06:16:32 +0000278 char core_path[PATH_MAX];
279 core_file.GetPath(core_path, sizeof(core_path));
Greg Claytonc859e2d2012-02-13 23:10:39 +0000280 if (core_file.Exists())
Greg Claytonc3776bf2012-02-09 06:16:32 +0000281 {
Greg Claytonc859e2d2012-02-13 23:10:39 +0000282 FileSpec core_file_dir;
283 core_file_dir.GetDirectory() = core_file.GetDirectory();
284 target_sp->GetExecutableSearchPaths ().Append (core_file_dir);
Greg Claytonc3776bf2012-02-09 06:16:32 +0000285
Greg Claytonc859e2d2012-02-13 23:10:39 +0000286 ProcessSP process_sp (target_sp->CreateProcess (m_interpreter.GetDebugger().GetListener(), NULL, &core_file));
287
288 if (process_sp)
Greg Claytonc3776bf2012-02-09 06:16:32 +0000289 {
Greg Claytonc859e2d2012-02-13 23:10:39 +0000290 // Seems wierd that we Launch a core file, but that is
291 // what we do!
292 error = process_sp->LoadCore();
293
294 if (error.Fail())
295 {
296 result.AppendError(error.AsCString("can't find plug-in for core file"));
297 result.SetStatus (eReturnStatusFailed);
298 return false;
299 }
300 else
301 {
302 result.AppendMessageWithFormat ("Core file '%s' (%s) was loaded.\n", core_path, target_sp->GetArchitecture().GetArchitectureName());
303 result.SetStatus (eReturnStatusSuccessFinishNoResult);
304 }
Greg Claytonc3776bf2012-02-09 06:16:32 +0000305 }
306 else
307 {
Greg Claytonc859e2d2012-02-13 23:10:39 +0000308 result.AppendErrorWithFormat ("Unable to find process plug-in for core file '%s'\n", core_path);
309 result.SetStatus (eReturnStatusFailed);
Greg Claytonc3776bf2012-02-09 06:16:32 +0000310 }
311 }
312 else
313 {
Greg Claytonc859e2d2012-02-13 23:10:39 +0000314 result.AppendErrorWithFormat ("Core file '%s' does not exist\n", core_path);
Greg Claytonc3776bf2012-02-09 06:16:32 +0000315 result.SetStatus (eReturnStatusFailed);
316 }
317 }
318 else
319 {
320 result.AppendMessageWithFormat ("Current executable set to '%s' (%s).\n", file_path, target_sp->GetArchitecture().GetArchitectureName());
321 result.SetStatus (eReturnStatusSuccessFinishNoResult);
322 }
Greg Clayton7260f622011-04-18 08:33:37 +0000323 }
324 else
325 {
326 result.AppendError(error.AsCString());
327 result.SetStatus (eReturnStatusFailed);
328 }
329 }
330 else
331 {
Greg Claytonc3776bf2012-02-09 06:16:32 +0000332 result.AppendErrorWithFormat("'%s' takes exactly one executable path argument, or use the --core-file option.\n", m_cmd_name.c_str());
Greg Clayton7260f622011-04-18 08:33:37 +0000333 result.SetStatus (eReturnStatusFailed);
334 }
335 return result.Succeeded();
336
337 }
338
Greg Clayton7260f622011-04-18 08:33:37 +0000339private:
340 OptionGroupOptions m_option_group;
Greg Clayton644247c2011-07-07 01:59:51 +0000341 OptionGroupArchitecture m_arch_option;
Greg Clayton7260f622011-04-18 08:33:37 +0000342 OptionGroupPlatform m_platform_options;
Greg Claytonc3776bf2012-02-09 06:16:32 +0000343 OptionGroupFile m_core_file;
Greg Clayton1c5f1862012-11-30 19:05:35 +0000344 OptionGroupFile m_symbol_file;
Jim Inghambf22b962013-07-11 01:47:46 +0000345 OptionGroupFile m_remote_file;
Greg Clayton1c5f1862012-11-30 19:05:35 +0000346 OptionGroupBoolean m_add_dependents;
Greg Clayton7260f622011-04-18 08:33:37 +0000347};
348
349#pragma mark CommandObjectTargetList
350
351//----------------------------------------------------------------------
352// "target list"
353//----------------------------------------------------------------------
354
Jim Ingham5a988412012-06-08 21:56:10 +0000355class CommandObjectTargetList : public CommandObjectParsed
Greg Clayton7260f622011-04-18 08:33:37 +0000356{
357public:
358 CommandObjectTargetList (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +0000359 CommandObjectParsed (interpreter,
360 "target list",
361 "List all current targets in the current debug session.",
362 NULL,
363 0)
Greg Clayton7260f622011-04-18 08:33:37 +0000364 {
365 }
366
367 virtual
368 ~CommandObjectTargetList ()
369 {
370 }
371
Jim Ingham5a988412012-06-08 21:56:10 +0000372protected:
Greg Clayton7260f622011-04-18 08:33:37 +0000373 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +0000374 DoExecute (Args& args, CommandReturnObject &result)
Greg Clayton7260f622011-04-18 08:33:37 +0000375 {
376 if (args.GetArgumentCount() == 0)
377 {
378 Stream &strm = result.GetOutputStream();
379
380 bool show_stopped_process_status = false;
381 if (DumpTargetList (m_interpreter.GetDebugger().GetTargetList(), show_stopped_process_status, strm) == 0)
382 {
383 strm.PutCString ("No targets.\n");
384 }
Johnny Chen1ee61a72011-04-18 21:08:05 +0000385 result.SetStatus (eReturnStatusSuccessFinishResult);
Greg Clayton7260f622011-04-18 08:33:37 +0000386 }
387 else
388 {
389 result.AppendError ("the 'target list' command takes no arguments\n");
390 result.SetStatus (eReturnStatusFailed);
391 }
392 return result.Succeeded();
393 }
394};
395
396
397#pragma mark CommandObjectTargetSelect
398
399//----------------------------------------------------------------------
400// "target select"
401//----------------------------------------------------------------------
402
Jim Ingham5a988412012-06-08 21:56:10 +0000403class CommandObjectTargetSelect : public CommandObjectParsed
Greg Clayton7260f622011-04-18 08:33:37 +0000404{
405public:
406 CommandObjectTargetSelect (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +0000407 CommandObjectParsed (interpreter,
408 "target select",
409 "Select a target as the current target by target index.",
410 NULL,
411 0)
Greg Clayton7260f622011-04-18 08:33:37 +0000412 {
413 }
414
415 virtual
416 ~CommandObjectTargetSelect ()
417 {
418 }
419
Jim Ingham5a988412012-06-08 21:56:10 +0000420protected:
Greg Clayton7260f622011-04-18 08:33:37 +0000421 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +0000422 DoExecute (Args& args, CommandReturnObject &result)
Greg Clayton7260f622011-04-18 08:33:37 +0000423 {
424 if (args.GetArgumentCount() == 1)
425 {
426 bool success = false;
427 const char *target_idx_arg = args.GetArgumentAtIndex(0);
428 uint32_t target_idx = Args::StringToUInt32 (target_idx_arg, UINT32_MAX, 0, &success);
429 if (success)
430 {
431 TargetList &target_list = m_interpreter.GetDebugger().GetTargetList();
432 const uint32_t num_targets = target_list.GetNumTargets();
433 if (target_idx < num_targets)
434 {
435 TargetSP target_sp (target_list.GetTargetAtIndex (target_idx));
436 if (target_sp)
437 {
438 Stream &strm = result.GetOutputStream();
439 target_list.SetSelectedTarget (target_sp.get());
440 bool show_stopped_process_status = false;
441 DumpTargetList (target_list, show_stopped_process_status, strm);
Johnny Chen1ee61a72011-04-18 21:08:05 +0000442 result.SetStatus (eReturnStatusSuccessFinishResult);
Greg Clayton7260f622011-04-18 08:33:37 +0000443 }
444 else
445 {
446 result.AppendErrorWithFormat ("target #%u is NULL in target list\n", target_idx);
447 result.SetStatus (eReturnStatusFailed);
448 }
449 }
450 else
451 {
452 result.AppendErrorWithFormat ("index %u is out of range, valid target indexes are 0 - %u\n",
453 target_idx,
454 num_targets - 1);
455 result.SetStatus (eReturnStatusFailed);
456 }
457 }
458 else
459 {
460 result.AppendErrorWithFormat("invalid index string value '%s'\n", target_idx_arg);
461 result.SetStatus (eReturnStatusFailed);
462 }
463 }
464 else
465 {
466 result.AppendError ("'target select' takes a single argument: a target index\n");
467 result.SetStatus (eReturnStatusFailed);
468 }
469 return result.Succeeded();
470 }
471};
472
Greg Clayton3418c852011-08-10 02:10:13 +0000473#pragma mark CommandObjectTargetSelect
474
475//----------------------------------------------------------------------
476// "target delete"
477//----------------------------------------------------------------------
478
Jim Ingham5a988412012-06-08 21:56:10 +0000479class CommandObjectTargetDelete : public CommandObjectParsed
Greg Clayton3418c852011-08-10 02:10:13 +0000480{
481public:
482 CommandObjectTargetDelete (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +0000483 CommandObjectParsed (interpreter,
484 "target delete",
485 "Delete one or more targets by target index.",
486 NULL,
487 0),
Greg Claytonaa149cb2011-08-11 02:48:45 +0000488 m_option_group (interpreter),
Greg Claytonb5f0fea2012-09-27 22:26:11 +0000489 m_cleanup_option (LLDB_OPT_SET_1, false, "clean", 'c', "Perform extra cleanup to minimize memory consumption after deleting the target.", false, false)
Greg Clayton3418c852011-08-10 02:10:13 +0000490 {
Greg Claytonaa149cb2011-08-11 02:48:45 +0000491 m_option_group.Append (&m_cleanup_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
492 m_option_group.Finalize();
Greg Clayton3418c852011-08-10 02:10:13 +0000493 }
494
495 virtual
496 ~CommandObjectTargetDelete ()
497 {
498 }
499
Jim Ingham5a988412012-06-08 21:56:10 +0000500 Options *
501 GetOptions ()
502 {
503 return &m_option_group;
504 }
505
506protected:
Greg Clayton3418c852011-08-10 02:10:13 +0000507 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +0000508 DoExecute (Args& args, CommandReturnObject &result)
Greg Clayton3418c852011-08-10 02:10:13 +0000509 {
510 const size_t argc = args.GetArgumentCount();
511 std::vector<TargetSP> delete_target_list;
512 TargetList &target_list = m_interpreter.GetDebugger().GetTargetList();
513 bool success = true;
514 TargetSP target_sp;
515 if (argc > 0)
516 {
517 const uint32_t num_targets = target_list.GetNumTargets();
Filipe Cabecinhasf065fdc2012-07-09 13:02:17 +0000518 // Bail out if don't have any targets.
519 if (num_targets == 0) {
520 result.AppendError("no targets to delete");
521 result.SetStatus(eReturnStatusFailed);
522 success = false;
523 }
524
Greg Clayton3418c852011-08-10 02:10:13 +0000525 for (uint32_t arg_idx = 0; success && arg_idx < argc; ++arg_idx)
526 {
527 const char *target_idx_arg = args.GetArgumentAtIndex(arg_idx);
528 uint32_t target_idx = Args::StringToUInt32 (target_idx_arg, UINT32_MAX, 0, &success);
529 if (success)
530 {
531 if (target_idx < num_targets)
532 {
533 target_sp = target_list.GetTargetAtIndex (target_idx);
534 if (target_sp)
535 {
536 delete_target_list.push_back (target_sp);
537 continue;
538 }
539 }
Filipe Cabecinhasf065fdc2012-07-09 13:02:17 +0000540 if (num_targets > 1)
541 result.AppendErrorWithFormat ("target index %u is out of range, valid target indexes are 0 - %u\n",
542 target_idx,
543 num_targets - 1);
544 else
545 result.AppendErrorWithFormat("target index %u is out of range, the only valid index is 0\n",
546 target_idx);
547
Greg Clayton3418c852011-08-10 02:10:13 +0000548 result.SetStatus (eReturnStatusFailed);
549 success = false;
550 }
551 else
552 {
553 result.AppendErrorWithFormat("invalid target index '%s'\n", target_idx_arg);
554 result.SetStatus (eReturnStatusFailed);
555 success = false;
556 }
557 }
558
559 }
560 else
561 {
562 target_sp = target_list.GetSelectedTarget();
563 if (target_sp)
564 {
565 delete_target_list.push_back (target_sp);
566 }
567 else
568 {
569 result.AppendErrorWithFormat("no target is currently selected\n");
570 result.SetStatus (eReturnStatusFailed);
571 success = false;
572 }
573 }
574 if (success)
575 {
576 const size_t num_targets_to_delete = delete_target_list.size();
577 for (size_t idx = 0; idx < num_targets_to_delete; ++idx)
578 {
579 target_sp = delete_target_list[idx];
580 target_list.DeleteTarget(target_sp);
581 target_sp->Destroy();
582 }
Greg Claytonaa149cb2011-08-11 02:48:45 +0000583 // If "--clean" was specified, prune any orphaned shared modules from
584 // the global shared module list
585 if (m_cleanup_option.GetOptionValue ())
586 {
Greg Clayton0cd70862012-04-09 20:22:01 +0000587 const bool mandatory = true;
588 ModuleList::RemoveOrphanSharedModules(mandatory);
Greg Claytonaa149cb2011-08-11 02:48:45 +0000589 }
Greg Clayton3418c852011-08-10 02:10:13 +0000590 result.GetOutputStream().Printf("%u targets deleted.\n", (uint32_t)num_targets_to_delete);
591 result.SetStatus(eReturnStatusSuccessFinishResult);
592 }
593
594 return result.Succeeded();
595 }
Greg Claytonaa149cb2011-08-11 02:48:45 +0000596
Greg Claytonaa149cb2011-08-11 02:48:45 +0000597 OptionGroupOptions m_option_group;
598 OptionGroupBoolean m_cleanup_option;
Greg Clayton3418c852011-08-10 02:10:13 +0000599};
600
Greg Clayton7260f622011-04-18 08:33:37 +0000601
Greg Clayton644247c2011-07-07 01:59:51 +0000602#pragma mark CommandObjectTargetVariable
603
604//----------------------------------------------------------------------
605// "target variable"
606//----------------------------------------------------------------------
607
Jim Ingham5a988412012-06-08 21:56:10 +0000608class CommandObjectTargetVariable : public CommandObjectParsed
Greg Clayton644247c2011-07-07 01:59:51 +0000609{
610public:
611 CommandObjectTargetVariable (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +0000612 CommandObjectParsed (interpreter,
613 "target variable",
Greg Claytondfdd1eb2012-11-03 00:10:22 +0000614 "Read global variable(s) prior to, or while running your binary.",
Jim Ingham5a988412012-06-08 21:56:10 +0000615 NULL,
Greg Claytonf9fc6092013-01-09 19:44:40 +0000616 eFlagRequiresTarget),
Greg Clayton644247c2011-07-07 01:59:51 +0000617 m_option_group (interpreter),
Greg Clayton715c2362011-07-07 04:38:25 +0000618 m_option_variable (false), // Don't include frame options
Greg Clayton1deb7962011-10-25 06:44:01 +0000619 m_option_format (eFormatDefault),
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000620 m_option_compile_units (LLDB_OPT_SET_1, false, "file", 'file', 0, eArgTypeFilename, "A basename or fullpath to a file that contains global variables. This option can be specified multiple times."),
621 m_option_shared_libraries (LLDB_OPT_SET_1, false, "shlib",'shlb', 0, eArgTypeFilename, "A basename or fullpath to a shared library to use in the search for global variables. This option can be specified multiple times."),
Greg Clayton644247c2011-07-07 01:59:51 +0000622 m_varobj_options()
623 {
Johnny Chen81ab3f52011-08-22 22:22:00 +0000624 CommandArgumentEntry arg;
625 CommandArgumentData var_name_arg;
626
627 // Define the first (and only) variant of this arg.
628 var_name_arg.arg_type = eArgTypeVarName;
629 var_name_arg.arg_repetition = eArgRepeatPlus;
630
631 // There is only one variant this argument could be; put it into the argument entry.
632 arg.push_back (var_name_arg);
633
634 // Push the data for the first argument into the m_arguments vector.
635 m_arguments.push_back (arg);
636
Greg Clayton644247c2011-07-07 01:59:51 +0000637 m_option_group.Append (&m_varobj_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton715c2362011-07-07 04:38:25 +0000638 m_option_group.Append (&m_option_variable, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton5009f9d2011-10-27 17:55:14 +0000639 m_option_group.Append (&m_option_format, OptionGroupFormat::OPTION_GROUP_FORMAT | OptionGroupFormat::OPTION_GROUP_GDB_FMT, LLDB_OPT_SET_1);
Greg Clayton644247c2011-07-07 01:59:51 +0000640 m_option_group.Append (&m_option_compile_units, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
641 m_option_group.Append (&m_option_shared_libraries, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
642 m_option_group.Finalize();
643 }
644
645 virtual
646 ~CommandObjectTargetVariable ()
647 {
648 }
Greg Clayton884fb692011-07-08 21:46:14 +0000649
650 void
651 DumpValueObject (Stream &s, VariableSP &var_sp, ValueObjectSP &valobj_sp, const char *root_name)
652 {
Enrico Granata9fb5ab52013-03-26 18:04:53 +0000653 ValueObject::DumpValueObjectOptions options(m_varobj_options.GetAsDumpOptions());
Enrico Granata379447a2011-08-15 18:01:31 +0000654
Greg Clayton884fb692011-07-08 21:46:14 +0000655 switch (var_sp->GetScope())
656 {
657 case eValueTypeVariableGlobal:
658 if (m_option_variable.show_scope)
659 s.PutCString("GLOBAL: ");
660 break;
661
662 case eValueTypeVariableStatic:
663 if (m_option_variable.show_scope)
664 s.PutCString("STATIC: ");
665 break;
666
667 case eValueTypeVariableArgument:
668 if (m_option_variable.show_scope)
669 s.PutCString(" ARG: ");
670 break;
671
672 case eValueTypeVariableLocal:
673 if (m_option_variable.show_scope)
674 s.PutCString(" LOCAL: ");
675 break;
676
677 default:
678 break;
679 }
680
Greg Clayton45ba8542011-07-10 19:21:23 +0000681 if (m_option_variable.show_decl)
Greg Clayton884fb692011-07-08 21:46:14 +0000682 {
Greg Clayton45ba8542011-07-10 19:21:23 +0000683 bool show_fullpaths = false;
684 bool show_module = true;
685 if (var_sp->DumpDeclaration(&s, show_fullpaths, show_module))
686 s.PutCString (": ");
Greg Clayton884fb692011-07-08 21:46:14 +0000687 }
688
Greg Clayton1deb7962011-10-25 06:44:01 +0000689 const Format format = m_option_format.GetFormat();
Greg Clayton884fb692011-07-08 21:46:14 +0000690 if (format != eFormatDefault)
Enrico Granata0c489f52012-03-01 04:24:26 +0000691 options.SetFormat(format);
692
693 options.SetRootValueObjectName(root_name);
Greg Clayton884fb692011-07-08 21:46:14 +0000694
695 ValueObject::DumpValueObject (s,
696 valobj_sp.get(),
Enrico Granata0c489f52012-03-01 04:24:26 +0000697 options);
Greg Clayton884fb692011-07-08 21:46:14 +0000698
699 }
Greg Clayton644247c2011-07-07 01:59:51 +0000700
Greg Clayton884fb692011-07-08 21:46:14 +0000701
Greg Claytonc7bece562013-01-25 18:06:21 +0000702 static size_t GetVariableCallback (void *baton,
703 const char *name,
704 VariableList &variable_list)
Greg Clayton884fb692011-07-08 21:46:14 +0000705 {
706 Target *target = static_cast<Target *>(baton);
707 if (target)
708 {
709 return target->GetImages().FindGlobalVariables (ConstString(name),
710 true,
711 UINT32_MAX,
712 variable_list);
713 }
714 return 0;
715 }
716
717
718
Jim Ingham5a988412012-06-08 21:56:10 +0000719 Options *
720 GetOptions ()
721 {
722 return &m_option_group;
723 }
724
725protected:
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000726
727 void
728 DumpGlobalVariableList(const ExecutionContext &exe_ctx, const SymbolContext &sc, const VariableList &variable_list, Stream &s)
729 {
730 size_t count = variable_list.GetSize();
731 if (count > 0)
732 {
733 if (sc.module_sp)
734 {
735 if (sc.comp_unit)
736 {
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000737 s.Printf ("Global variables for %s in %s:\n",
738 sc.comp_unit->GetPath().c_str(),
739 sc.module_sp->GetFileSpec().GetPath().c_str());
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000740 }
741 else
742 {
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000743 s.Printf ("Global variables for %s\n",
744 sc.module_sp->GetFileSpec().GetPath().c_str());
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000745 }
746 }
747 else if (sc.comp_unit)
748 {
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000749 s.Printf ("Global variables for %s\n",
750 sc.comp_unit->GetPath().c_str());
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000751 }
752
753 for (uint32_t i=0; i<count; ++i)
754 {
755 VariableSP var_sp (variable_list.GetVariableAtIndex(i));
756 if (var_sp)
757 {
758 ValueObjectSP valobj_sp (ValueObjectVariable::Create (exe_ctx.GetBestExecutionContextScope(), var_sp));
759
760 if (valobj_sp)
761 DumpValueObject (s, var_sp, valobj_sp, var_sp->GetName().GetCString());
762 }
763 }
764 }
765
766 }
Greg Clayton644247c2011-07-07 01:59:51 +0000767 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +0000768 DoExecute (Args& args, CommandReturnObject &result)
Greg Clayton644247c2011-07-07 01:59:51 +0000769 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000770 Target *target = m_exe_ctx.GetTargetPtr();
771 const size_t argc = args.GetArgumentCount();
772 Stream &s = result.GetOutputStream();
773
774 if (argc > 0)
Greg Clayton644247c2011-07-07 01:59:51 +0000775 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000776
777 for (size_t idx = 0; idx < argc; ++idx)
Greg Clayton644247c2011-07-07 01:59:51 +0000778 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000779 VariableList variable_list;
780 ValueObjectList valobj_list;
Greg Clayton884fb692011-07-08 21:46:14 +0000781
Greg Claytonf9fc6092013-01-09 19:44:40 +0000782 const char *arg = args.GetArgumentAtIndex(idx);
Greg Claytonc7bece562013-01-25 18:06:21 +0000783 size_t matches = 0;
Greg Claytonf9fc6092013-01-09 19:44:40 +0000784 bool use_var_name = false;
785 if (m_option_variable.use_regex)
Greg Clayton644247c2011-07-07 01:59:51 +0000786 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000787 RegularExpression regex(arg);
788 if (!regex.IsValid ())
Greg Clayton644247c2011-07-07 01:59:51 +0000789 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000790 result.GetErrorStream().Printf ("error: invalid regular expression: '%s'\n", arg);
Greg Clayton715c2362011-07-07 04:38:25 +0000791 result.SetStatus (eReturnStatusFailed);
792 return false;
793 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000794 use_var_name = true;
795 matches = target->GetImages().FindGlobalVariables (regex,
796 true,
797 UINT32_MAX,
798 variable_list);
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000799 }
800 else
801 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000802 Error error (Variable::GetValuesForVariableExpressionPath (arg,
803 m_exe_ctx.GetBestExecutionContextScope(),
804 GetVariableCallback,
805 target,
806 variable_list,
807 valobj_list));
808 matches = variable_list.GetSize();
809 }
810
811 if (matches == 0)
812 {
813 result.GetErrorStream().Printf ("error: can't find global variable '%s'\n", arg);
814 result.SetStatus (eReturnStatusFailed);
815 return false;
816 }
817 else
818 {
819 for (uint32_t global_idx=0; global_idx<matches; ++global_idx)
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000820 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000821 VariableSP var_sp (variable_list.GetVariableAtIndex(global_idx));
822 if (var_sp)
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000823 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000824 ValueObjectSP valobj_sp (valobj_list.GetValueObjectAtIndex(global_idx));
825 if (!valobj_sp)
826 valobj_sp = ValueObjectVariable::Create (m_exe_ctx.GetBestExecutionContextScope(), var_sp);
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000827
Greg Claytonf9fc6092013-01-09 19:44:40 +0000828 if (valobj_sp)
829 DumpValueObject (s, var_sp, valobj_sp, use_var_name ? var_sp->GetName().GetCString() : arg);
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000830 }
831 }
Greg Clayton9a5a9342011-10-05 22:17:32 +0000832 }
Greg Clayton644247c2011-07-07 01:59:51 +0000833 }
834 }
835 else
836 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000837 const FileSpecList &compile_units = m_option_compile_units.GetOptionValue().GetCurrentValue();
838 const FileSpecList &shlibs = m_option_shared_libraries.GetOptionValue().GetCurrentValue();
839 SymbolContextList sc_list;
840 const size_t num_compile_units = compile_units.GetSize();
841 const size_t num_shlibs = shlibs.GetSize();
842 if (num_compile_units == 0 && num_shlibs == 0)
843 {
844 bool success = false;
845 StackFrame *frame = m_exe_ctx.GetFramePtr();
846 CompileUnit *comp_unit = NULL;
847 if (frame)
848 {
849 SymbolContext sc = frame->GetSymbolContext (eSymbolContextCompUnit);
850 if (sc.comp_unit)
851 {
852 const bool can_create = true;
853 VariableListSP comp_unit_varlist_sp (sc.comp_unit->GetVariableList(can_create));
854 if (comp_unit_varlist_sp)
855 {
856 size_t count = comp_unit_varlist_sp->GetSize();
857 if (count > 0)
858 {
859 DumpGlobalVariableList(m_exe_ctx, sc, *comp_unit_varlist_sp, s);
860 success = true;
861 }
862 }
863 }
864 }
865 if (!success)
866 {
867 if (frame)
868 {
869 if (comp_unit)
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000870 result.AppendErrorWithFormat ("no global variables in current compile unit: %s\n",
871 comp_unit->GetPath().c_str());
Greg Claytonf9fc6092013-01-09 19:44:40 +0000872 else
873 result.AppendErrorWithFormat ("no debug information for frame %u\n", frame->GetFrameIndex());
874 }
875 else
876 result.AppendError ("'target variable' takes one or more global variable names as arguments\n");
877 result.SetStatus (eReturnStatusFailed);
878 }
879 }
880 else
881 {
882 SymbolContextList sc_list;
883 const bool append = true;
884 // We have one or more compile unit or shlib
885 if (num_shlibs > 0)
886 {
887 for (size_t shlib_idx=0; shlib_idx<num_shlibs; ++shlib_idx)
888 {
889 const FileSpec module_file(shlibs.GetFileSpecAtIndex(shlib_idx));
890 ModuleSpec module_spec (module_file);
891
892 ModuleSP module_sp (target->GetImages().FindFirstModule(module_spec));
893 if (module_sp)
894 {
895 if (num_compile_units > 0)
896 {
897 for (size_t cu_idx=0; cu_idx<num_compile_units; ++cu_idx)
898 module_sp->FindCompileUnits(compile_units.GetFileSpecAtIndex(cu_idx), append, sc_list);
899 }
900 else
901 {
902 SymbolContext sc;
903 sc.module_sp = module_sp;
904 sc_list.Append(sc);
905 }
906 }
907 else
908 {
909 // Didn't find matching shlib/module in target...
Greg Claytonb5ad4ec2013-04-29 17:25:54 +0000910 result.AppendErrorWithFormat ("target doesn't contain the specified shared library: %s\n",
911 module_file.GetPath().c_str());
Greg Claytonf9fc6092013-01-09 19:44:40 +0000912 }
913 }
914 }
915 else
916 {
917 // No shared libraries, we just want to find globals for the compile units files that were specified
918 for (size_t cu_idx=0; cu_idx<num_compile_units; ++cu_idx)
919 target->GetImages().FindCompileUnits(compile_units.GetFileSpecAtIndex(cu_idx), append, sc_list);
920 }
921
922 const uint32_t num_scs = sc_list.GetSize();
923 if (num_scs > 0)
924 {
925 SymbolContext sc;
926 for (uint32_t sc_idx=0; sc_idx<num_scs; ++sc_idx)
927 {
928 if (sc_list.GetContextAtIndex(sc_idx, sc))
929 {
930 if (sc.comp_unit)
931 {
932 const bool can_create = true;
933 VariableListSP comp_unit_varlist_sp (sc.comp_unit->GetVariableList(can_create));
934 if (comp_unit_varlist_sp)
935 DumpGlobalVariableList(m_exe_ctx, sc, *comp_unit_varlist_sp, s);
936 }
937 else if (sc.module_sp)
938 {
939 // Get all global variables for this module
940 lldb_private::RegularExpression all_globals_regex("."); // Any global with at least one character
941 VariableList variable_list;
942 sc.module_sp->FindGlobalVariables(all_globals_regex, append, UINT32_MAX, variable_list);
943 DumpGlobalVariableList(m_exe_ctx, sc, variable_list, s);
944 }
945 }
946 }
947 }
948 }
Greg Clayton644247c2011-07-07 01:59:51 +0000949 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000950
Enrico Granata61a80ba2011-08-12 16:42:31 +0000951 if (m_interpreter.TruncationWarningNecessary())
952 {
953 result.GetOutputStream().Printf(m_interpreter.TruncationWarningText(),
954 m_cmd_name.c_str());
955 m_interpreter.TruncationWarningGiven();
956 }
957
Greg Clayton644247c2011-07-07 01:59:51 +0000958 return result.Succeeded();
959 }
960
Greg Clayton644247c2011-07-07 01:59:51 +0000961 OptionGroupOptions m_option_group;
Greg Clayton715c2362011-07-07 04:38:25 +0000962 OptionGroupVariable m_option_variable;
Greg Clayton1deb7962011-10-25 06:44:01 +0000963 OptionGroupFormat m_option_format;
Greg Clayton644247c2011-07-07 01:59:51 +0000964 OptionGroupFileList m_option_compile_units;
965 OptionGroupFileList m_option_shared_libraries;
966 OptionGroupValueObjectDisplay m_varobj_options;
967
968};
969
970
Greg Claytoneffe5c92011-05-03 22:09:39 +0000971#pragma mark CommandObjectTargetModulesSearchPathsAdd
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000972
Jim Ingham5a988412012-06-08 21:56:10 +0000973class CommandObjectTargetModulesSearchPathsAdd : public CommandObjectParsed
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000974{
975public:
976
Greg Claytoneffe5c92011-05-03 22:09:39 +0000977 CommandObjectTargetModulesSearchPathsAdd (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +0000978 CommandObjectParsed (interpreter,
979 "target modules search-paths add",
980 "Add new image search paths substitution pairs to the current target.",
981 NULL)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000982 {
Caroline Tice405fe672010-10-04 22:28:36 +0000983 CommandArgumentEntry arg;
984 CommandArgumentData old_prefix_arg;
985 CommandArgumentData new_prefix_arg;
986
987 // Define the first variant of this arg pair.
988 old_prefix_arg.arg_type = eArgTypeOldPathPrefix;
989 old_prefix_arg.arg_repetition = eArgRepeatPairPlus;
990
991 // Define the first variant of this arg pair.
992 new_prefix_arg.arg_type = eArgTypeNewPathPrefix;
993 new_prefix_arg.arg_repetition = eArgRepeatPairPlus;
994
995 // There are two required arguments that must always occur together, i.e. an argument "pair". Because they
996 // must always occur together, they are treated as two variants of one argument rather than two independent
997 // arguments. Push them both into the first argument position for m_arguments...
998
999 arg.push_back (old_prefix_arg);
1000 arg.push_back (new_prefix_arg);
1001
1002 m_arguments.push_back (arg);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001003 }
1004
Greg Claytoneffe5c92011-05-03 22:09:39 +00001005 ~CommandObjectTargetModulesSearchPathsAdd ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001006 {
1007 }
1008
Jim Ingham5a988412012-06-08 21:56:10 +00001009protected:
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001010 bool
Jim Ingham5a988412012-06-08 21:56:10 +00001011 DoExecute (Args& command,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001012 CommandReturnObject &result)
1013 {
Greg Claytona7015092010-09-18 01:14:36 +00001014 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001015 if (target)
1016 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001017 const size_t argc = command.GetArgumentCount();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001018 if (argc & 1)
1019 {
Greg Clayton7260f622011-04-18 08:33:37 +00001020 result.AppendError ("add requires an even number of arguments\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001021 result.SetStatus (eReturnStatusFailed);
1022 }
1023 else
1024 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001025 for (size_t i=0; i<argc; i+=2)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001026 {
1027 const char *from = command.GetArgumentAtIndex(i);
1028 const char *to = command.GetArgumentAtIndex(i+1);
1029
1030 if (from[0] && to[0])
1031 {
1032 bool last_pair = ((argc - i) == 2);
Greg Clayton66111032010-06-23 01:19:29 +00001033 target->GetImageSearchPathList().Append (ConstString(from),
1034 ConstString(to),
1035 last_pair); // Notify if this is the last pair
Johnny Chen7791b332011-02-03 00:30:19 +00001036 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001037 }
1038 else
1039 {
1040 if (from[0])
Greg Clayton7260f622011-04-18 08:33:37 +00001041 result.AppendError ("<path-prefix> can't be empty\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001042 else
Greg Clayton7260f622011-04-18 08:33:37 +00001043 result.AppendError ("<new-path-prefix> can't be empty\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001044 result.SetStatus (eReturnStatusFailed);
1045 }
1046 }
1047 }
1048 }
1049 else
1050 {
Greg Clayton7260f622011-04-18 08:33:37 +00001051 result.AppendError ("invalid target\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001052 result.SetStatus (eReturnStatusFailed);
1053 }
1054 return result.Succeeded();
1055 }
1056};
1057
Greg Claytoneffe5c92011-05-03 22:09:39 +00001058#pragma mark CommandObjectTargetModulesSearchPathsClear
1059
Jim Ingham5a988412012-06-08 21:56:10 +00001060class CommandObjectTargetModulesSearchPathsClear : public CommandObjectParsed
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001061{
1062public:
1063
Greg Claytoneffe5c92011-05-03 22:09:39 +00001064 CommandObjectTargetModulesSearchPathsClear (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00001065 CommandObjectParsed (interpreter,
1066 "target modules search-paths clear",
1067 "Clear all current image search path substitution pairs from the current target.",
1068 "target modules search-paths clear")
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001069 {
1070 }
1071
Greg Claytoneffe5c92011-05-03 22:09:39 +00001072 ~CommandObjectTargetModulesSearchPathsClear ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001073 {
1074 }
1075
Jim Ingham5a988412012-06-08 21:56:10 +00001076protected:
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001077 bool
Jim Ingham5a988412012-06-08 21:56:10 +00001078 DoExecute (Args& command,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001079 CommandReturnObject &result)
1080 {
Greg Claytona7015092010-09-18 01:14:36 +00001081 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001082 if (target)
1083 {
1084 bool notify = true;
1085 target->GetImageSearchPathList().Clear(notify);
Johnny Chen7791b332011-02-03 00:30:19 +00001086 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001087 }
1088 else
1089 {
Greg Clayton7260f622011-04-18 08:33:37 +00001090 result.AppendError ("invalid target\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001091 result.SetStatus (eReturnStatusFailed);
1092 }
1093 return result.Succeeded();
1094 }
1095};
1096
Greg Claytoneffe5c92011-05-03 22:09:39 +00001097#pragma mark CommandObjectTargetModulesSearchPathsInsert
1098
Jim Ingham5a988412012-06-08 21:56:10 +00001099class CommandObjectTargetModulesSearchPathsInsert : public CommandObjectParsed
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001100{
1101public:
1102
Greg Claytoneffe5c92011-05-03 22:09:39 +00001103 CommandObjectTargetModulesSearchPathsInsert (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00001104 CommandObjectParsed (interpreter,
1105 "target modules search-paths insert",
1106 "Insert a new image search path substitution pair into the current target at the specified index.",
1107 NULL)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001108 {
Caroline Tice405fe672010-10-04 22:28:36 +00001109 CommandArgumentEntry arg1;
1110 CommandArgumentEntry arg2;
1111 CommandArgumentData index_arg;
1112 CommandArgumentData old_prefix_arg;
1113 CommandArgumentData new_prefix_arg;
1114
1115 // Define the first and only variant of this arg.
1116 index_arg.arg_type = eArgTypeIndex;
1117 index_arg.arg_repetition = eArgRepeatPlain;
1118
1119 // Put the one and only variant into the first arg for m_arguments:
1120 arg1.push_back (index_arg);
1121
1122 // Define the first variant of this arg pair.
1123 old_prefix_arg.arg_type = eArgTypeOldPathPrefix;
1124 old_prefix_arg.arg_repetition = eArgRepeatPairPlus;
1125
1126 // Define the first variant of this arg pair.
1127 new_prefix_arg.arg_type = eArgTypeNewPathPrefix;
1128 new_prefix_arg.arg_repetition = eArgRepeatPairPlus;
1129
1130 // There are two required arguments that must always occur together, i.e. an argument "pair". Because they
1131 // must always occur together, they are treated as two variants of one argument rather than two independent
1132 // arguments. Push them both into the same argument position for m_arguments...
1133
1134 arg2.push_back (old_prefix_arg);
1135 arg2.push_back (new_prefix_arg);
1136
1137 // Add arguments to m_arguments.
1138 m_arguments.push_back (arg1);
1139 m_arguments.push_back (arg2);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001140 }
1141
Greg Claytoneffe5c92011-05-03 22:09:39 +00001142 ~CommandObjectTargetModulesSearchPathsInsert ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001143 {
1144 }
1145
Jim Ingham5a988412012-06-08 21:56:10 +00001146protected:
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001147 bool
Jim Ingham5a988412012-06-08 21:56:10 +00001148 DoExecute (Args& command,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001149 CommandReturnObject &result)
1150 {
Greg Claytona7015092010-09-18 01:14:36 +00001151 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001152 if (target)
1153 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001154 size_t argc = command.GetArgumentCount();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001155 // check for at least 3 arguments and an odd nubmer of parameters
1156 if (argc >= 3 && argc & 1)
1157 {
1158 bool success = false;
1159
1160 uint32_t insert_idx = Args::StringToUInt32(command.GetArgumentAtIndex(0), UINT32_MAX, 0, &success);
1161
1162 if (!success)
1163 {
1164 result.AppendErrorWithFormat("<index> parameter is not an integer: '%s'.\n", command.GetArgumentAtIndex(0));
1165 result.SetStatus (eReturnStatusFailed);
1166 return result.Succeeded();
1167 }
1168
1169 // shift off the index
1170 command.Shift();
1171 argc = command.GetArgumentCount();
1172
1173 for (uint32_t i=0; i<argc; i+=2, ++insert_idx)
1174 {
1175 const char *from = command.GetArgumentAtIndex(i);
1176 const char *to = command.GetArgumentAtIndex(i+1);
1177
1178 if (from[0] && to[0])
1179 {
1180 bool last_pair = ((argc - i) == 2);
1181 target->GetImageSearchPathList().Insert (ConstString(from),
1182 ConstString(to),
1183 insert_idx,
1184 last_pair);
Johnny Chen7791b332011-02-03 00:30:19 +00001185 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001186 }
1187 else
1188 {
1189 if (from[0])
Greg Clayton7260f622011-04-18 08:33:37 +00001190 result.AppendError ("<path-prefix> can't be empty\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001191 else
Greg Clayton7260f622011-04-18 08:33:37 +00001192 result.AppendError ("<new-path-prefix> can't be empty\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001193 result.SetStatus (eReturnStatusFailed);
1194 return false;
1195 }
1196 }
1197 }
1198 else
1199 {
Greg Clayton7260f622011-04-18 08:33:37 +00001200 result.AppendError ("insert requires at least three arguments\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001201 result.SetStatus (eReturnStatusFailed);
1202 return result.Succeeded();
1203 }
1204
1205 }
1206 else
1207 {
Greg Clayton7260f622011-04-18 08:33:37 +00001208 result.AppendError ("invalid target\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001209 result.SetStatus (eReturnStatusFailed);
1210 }
1211 return result.Succeeded();
1212 }
1213};
1214
Greg Claytoneffe5c92011-05-03 22:09:39 +00001215
1216#pragma mark CommandObjectTargetModulesSearchPathsList
1217
1218
Jim Ingham5a988412012-06-08 21:56:10 +00001219class CommandObjectTargetModulesSearchPathsList : public CommandObjectParsed
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001220{
1221public:
1222
Greg Claytoneffe5c92011-05-03 22:09:39 +00001223 CommandObjectTargetModulesSearchPathsList (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00001224 CommandObjectParsed (interpreter,
1225 "target modules search-paths list",
1226 "List all current image search path substitution pairs in the current target.",
1227 "target modules search-paths list")
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001228 {
1229 }
1230
Greg Claytoneffe5c92011-05-03 22:09:39 +00001231 ~CommandObjectTargetModulesSearchPathsList ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001232 {
1233 }
1234
Jim Ingham5a988412012-06-08 21:56:10 +00001235protected:
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001236 bool
Jim Ingham5a988412012-06-08 21:56:10 +00001237 DoExecute (Args& command,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001238 CommandReturnObject &result)
1239 {
Greg Claytona7015092010-09-18 01:14:36 +00001240 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001241 if (target)
1242 {
1243 if (command.GetArgumentCount() != 0)
1244 {
Greg Clayton7260f622011-04-18 08:33:37 +00001245 result.AppendError ("list takes no arguments\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001246 result.SetStatus (eReturnStatusFailed);
1247 return result.Succeeded();
1248 }
1249
1250 target->GetImageSearchPathList().Dump(&result.GetOutputStream());
Johnny Chen7791b332011-02-03 00:30:19 +00001251 result.SetStatus (eReturnStatusSuccessFinishResult);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001252 }
1253 else
1254 {
Greg Clayton7260f622011-04-18 08:33:37 +00001255 result.AppendError ("invalid target\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001256 result.SetStatus (eReturnStatusFailed);
1257 }
1258 return result.Succeeded();
1259 }
1260};
1261
Greg Claytoneffe5c92011-05-03 22:09:39 +00001262#pragma mark CommandObjectTargetModulesSearchPathsQuery
1263
Jim Ingham5a988412012-06-08 21:56:10 +00001264class CommandObjectTargetModulesSearchPathsQuery : public CommandObjectParsed
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001265{
1266public:
1267
Greg Claytoneffe5c92011-05-03 22:09:39 +00001268 CommandObjectTargetModulesSearchPathsQuery (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00001269 CommandObjectParsed (interpreter,
1270 "target modules search-paths query",
1271 "Transform a path using the first applicable image search path.",
1272 NULL)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001273 {
Caroline Tice405fe672010-10-04 22:28:36 +00001274 CommandArgumentEntry arg;
1275 CommandArgumentData path_arg;
1276
1277 // Define the first (and only) variant of this arg.
Sean Callanan31542552012-10-24 01:12:14 +00001278 path_arg.arg_type = eArgTypeDirectoryName;
Caroline Tice405fe672010-10-04 22:28:36 +00001279 path_arg.arg_repetition = eArgRepeatPlain;
1280
1281 // There is only one variant this argument could be; put it into the argument entry.
1282 arg.push_back (path_arg);
1283
1284 // Push the data for the first argument into the m_arguments vector.
1285 m_arguments.push_back (arg);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001286 }
1287
Greg Claytoneffe5c92011-05-03 22:09:39 +00001288 ~CommandObjectTargetModulesSearchPathsQuery ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001289 {
1290 }
1291
Jim Ingham5a988412012-06-08 21:56:10 +00001292protected:
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001293 bool
Jim Ingham5a988412012-06-08 21:56:10 +00001294 DoExecute (Args& command,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001295 CommandReturnObject &result)
1296 {
Greg Claytona7015092010-09-18 01:14:36 +00001297 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001298 if (target)
1299 {
1300 if (command.GetArgumentCount() != 1)
1301 {
Greg Clayton7260f622011-04-18 08:33:37 +00001302 result.AppendError ("query requires one argument\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001303 result.SetStatus (eReturnStatusFailed);
1304 return result.Succeeded();
1305 }
1306
1307 ConstString orig(command.GetArgumentAtIndex(0));
1308 ConstString transformed;
1309 if (target->GetImageSearchPathList().RemapPath(orig, transformed))
1310 result.GetOutputStream().Printf("%s\n", transformed.GetCString());
1311 else
1312 result.GetOutputStream().Printf("%s\n", orig.GetCString());
Johnny Chen7791b332011-02-03 00:30:19 +00001313
1314 result.SetStatus (eReturnStatusSuccessFinishResult);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001315 }
1316 else
1317 {
Greg Clayton7260f622011-04-18 08:33:37 +00001318 result.AppendError ("invalid target\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001319 result.SetStatus (eReturnStatusFailed);
1320 }
1321 return result.Succeeded();
1322 }
1323};
1324
Greg Claytoneffe5c92011-05-03 22:09:39 +00001325//----------------------------------------------------------------------
1326// Static Helper functions
1327//----------------------------------------------------------------------
1328static void
1329DumpModuleArchitecture (Stream &strm, Module *module, bool full_triple, uint32_t width)
1330{
1331 if (module)
1332 {
1333 const char *arch_cstr;
1334 if (full_triple)
1335 arch_cstr = module->GetArchitecture().GetTriple().str().c_str();
1336 else
1337 arch_cstr = module->GetArchitecture().GetArchitectureName();
1338 if (width)
1339 strm.Printf("%-*s", width, arch_cstr);
1340 else
1341 strm.PutCString(arch_cstr);
1342 }
1343}
1344
1345static void
1346DumpModuleUUID (Stream &strm, Module *module)
1347{
Jim Ingham28eb5712012-10-12 17:34:26 +00001348 if (module && module->GetUUID().IsValid())
Greg Clayton3418c852011-08-10 02:10:13 +00001349 module->GetUUID().Dump (&strm);
1350 else
1351 strm.PutCString(" ");
Greg Claytoneffe5c92011-05-03 22:09:39 +00001352}
1353
1354static uint32_t
Greg Claytona0ca6602012-10-18 16:33:33 +00001355DumpCompileUnitLineTable (CommandInterpreter &interpreter,
1356 Stream &strm,
1357 Module *module,
1358 const FileSpec &file_spec,
1359 bool load_addresses)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001360{
1361 uint32_t num_matches = 0;
1362 if (module)
1363 {
1364 SymbolContextList sc_list;
1365 num_matches = module->ResolveSymbolContextsForFileSpec (file_spec,
1366 0,
1367 false,
1368 eSymbolContextCompUnit,
1369 sc_list);
1370
1371 for (uint32_t i=0; i<num_matches; ++i)
1372 {
1373 SymbolContext sc;
1374 if (sc_list.GetContextAtIndex(i, sc))
1375 {
1376 if (i > 0)
1377 strm << "\n\n";
1378
1379 strm << "Line table for " << *static_cast<FileSpec*> (sc.comp_unit) << " in `"
1380 << module->GetFileSpec().GetFilename() << "\n";
1381 LineTable *line_table = sc.comp_unit->GetLineTable();
1382 if (line_table)
1383 line_table->GetDescription (&strm,
Greg Claytonc14ee322011-09-22 04:58:26 +00001384 interpreter.GetExecutionContext().GetTargetPtr(),
Greg Claytoneffe5c92011-05-03 22:09:39 +00001385 lldb::eDescriptionLevelBrief);
1386 else
1387 strm << "No line table";
1388 }
1389 }
1390 }
1391 return num_matches;
1392}
1393
1394static void
1395DumpFullpath (Stream &strm, const FileSpec *file_spec_ptr, uint32_t width)
1396{
1397 if (file_spec_ptr)
1398 {
1399 if (width > 0)
1400 {
Jason Molendadb7d11c2013-05-06 10:21:11 +00001401 std::string fullpath = file_spec_ptr->GetPath();
1402 strm.Printf("%-*s", width, fullpath.c_str());
1403 return;
Greg Claytoneffe5c92011-05-03 22:09:39 +00001404 }
1405 else
1406 {
1407 file_spec_ptr->Dump(&strm);
1408 return;
1409 }
1410 }
1411 // Keep the width spacing correct if things go wrong...
1412 if (width > 0)
1413 strm.Printf("%-*s", width, "");
1414}
1415
1416static void
1417DumpDirectory (Stream &strm, const FileSpec *file_spec_ptr, uint32_t width)
1418{
1419 if (file_spec_ptr)
1420 {
1421 if (width > 0)
1422 strm.Printf("%-*s", width, file_spec_ptr->GetDirectory().AsCString(""));
1423 else
1424 file_spec_ptr->GetDirectory().Dump(&strm);
1425 return;
1426 }
1427 // Keep the width spacing correct if things go wrong...
1428 if (width > 0)
1429 strm.Printf("%-*s", width, "");
1430}
1431
1432static void
1433DumpBasename (Stream &strm, const FileSpec *file_spec_ptr, uint32_t width)
1434{
1435 if (file_spec_ptr)
1436 {
1437 if (width > 0)
1438 strm.Printf("%-*s", width, file_spec_ptr->GetFilename().AsCString(""));
1439 else
1440 file_spec_ptr->GetFilename().Dump(&strm);
1441 return;
1442 }
1443 // Keep the width spacing correct if things go wrong...
1444 if (width > 0)
1445 strm.Printf("%-*s", width, "");
1446}
1447
1448
1449static void
1450DumpModuleSymtab (CommandInterpreter &interpreter, Stream &strm, Module *module, SortOrder sort_order)
1451{
1452 if (module)
1453 {
Michael Sartaina7499c92013-07-01 19:45:50 +00001454 SymbolVendor *sym_vendor = module->GetSymbolVendor ();
1455 if (sym_vendor)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001456 {
Michael Sartaina7499c92013-07-01 19:45:50 +00001457 Symtab *symtab = sym_vendor->GetSymtab();
Greg Claytoneffe5c92011-05-03 22:09:39 +00001458 if (symtab)
Greg Claytonc14ee322011-09-22 04:58:26 +00001459 symtab->Dump(&strm, interpreter.GetExecutionContext().GetTargetPtr(), sort_order);
Greg Claytoneffe5c92011-05-03 22:09:39 +00001460 }
1461 }
1462}
1463
1464static void
1465DumpModuleSections (CommandInterpreter &interpreter, Stream &strm, Module *module)
1466{
1467 if (module)
1468 {
Greg Clayton3046e662013-07-10 01:23:25 +00001469 SectionList *section_list = module->GetSectionList();
Michael Sartaina7499c92013-07-01 19:45:50 +00001470 if (section_list)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001471 {
Michael Sartaina7499c92013-07-01 19:45:50 +00001472 strm.Printf ("Sections for '%s' (%s):\n",
1473 module->GetSpecificationDescription().c_str(),
1474 module->GetArchitecture().GetArchitectureName());
1475 strm.IndentMore();
1476 section_list->Dump(&strm, interpreter.GetExecutionContext().GetTargetPtr(), true, UINT32_MAX);
1477 strm.IndentLess();
Greg Claytoneffe5c92011-05-03 22:09:39 +00001478 }
1479 }
1480}
1481
1482static bool
1483DumpModuleSymbolVendor (Stream &strm, Module *module)
1484{
1485 if (module)
1486 {
1487 SymbolVendor *symbol_vendor = module->GetSymbolVendor(true);
1488 if (symbol_vendor)
1489 {
1490 symbol_vendor->Dump(&strm);
1491 return true;
1492 }
1493 }
1494 return false;
1495}
1496
Greg Claytonc4a8a762012-05-15 18:43:44 +00001497static void
1498DumpAddress (ExecutionContextScope *exe_scope, const Address &so_addr, bool verbose, Stream &strm)
1499{
1500 strm.IndentMore();
1501 strm.Indent (" Address: ");
1502 so_addr.Dump (&strm, exe_scope, Address::DumpStyleModuleWithFileAddress);
1503 strm.PutCString (" (");
1504 so_addr.Dump (&strm, exe_scope, Address::DumpStyleSectionNameOffset);
1505 strm.PutCString (")\n");
1506 strm.Indent (" Summary: ");
1507 const uint32_t save_indent = strm.GetIndentLevel ();
1508 strm.SetIndentLevel (save_indent + 13);
1509 so_addr.Dump (&strm, exe_scope, Address::DumpStyleResolvedDescription);
1510 strm.SetIndentLevel (save_indent);
1511 // Print out detailed address information when verbose is enabled
1512 if (verbose)
1513 {
1514 strm.EOL();
1515 so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext);
1516 }
1517 strm.IndentLess();
1518}
1519
Greg Claytoneffe5c92011-05-03 22:09:39 +00001520static bool
Greg Claytone72dfb32012-02-24 01:59:29 +00001521LookupAddressInModule (CommandInterpreter &interpreter,
1522 Stream &strm,
1523 Module *module,
1524 uint32_t resolve_mask,
1525 lldb::addr_t raw_addr,
1526 lldb::addr_t offset,
1527 bool verbose)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001528{
1529 if (module)
1530 {
1531 lldb::addr_t addr = raw_addr - offset;
1532 Address so_addr;
1533 SymbolContext sc;
Greg Claytonc14ee322011-09-22 04:58:26 +00001534 Target *target = interpreter.GetExecutionContext().GetTargetPtr();
Greg Claytoneffe5c92011-05-03 22:09:39 +00001535 if (target && !target->GetSectionLoadList().IsEmpty())
1536 {
1537 if (!target->GetSectionLoadList().ResolveLoadAddress (addr, so_addr))
1538 return false;
Greg Claytone72dfb32012-02-24 01:59:29 +00001539 else if (so_addr.GetModule().get() != module)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001540 return false;
1541 }
1542 else
1543 {
1544 if (!module->ResolveFileAddress (addr, so_addr))
1545 return false;
1546 }
1547
Greg Claytoneffe5c92011-05-03 22:09:39 +00001548 ExecutionContextScope *exe_scope = interpreter.GetExecutionContext().GetBestExecutionContextScope();
Greg Claytonc4a8a762012-05-15 18:43:44 +00001549 DumpAddress (exe_scope, so_addr, verbose, strm);
1550// strm.IndentMore();
1551// strm.Indent (" Address: ");
1552// so_addr.Dump (&strm, exe_scope, Address::DumpStyleModuleWithFileAddress);
1553// strm.PutCString (" (");
1554// so_addr.Dump (&strm, exe_scope, Address::DumpStyleSectionNameOffset);
1555// strm.PutCString (")\n");
1556// strm.Indent (" Summary: ");
1557// const uint32_t save_indent = strm.GetIndentLevel ();
1558// strm.SetIndentLevel (save_indent + 13);
1559// so_addr.Dump (&strm, exe_scope, Address::DumpStyleResolvedDescription);
1560// strm.SetIndentLevel (save_indent);
1561// // Print out detailed address information when verbose is enabled
1562// if (verbose)
1563// {
1564// strm.EOL();
1565// so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext);
1566// }
1567// strm.IndentLess();
Greg Claytoneffe5c92011-05-03 22:09:39 +00001568 return true;
1569 }
1570
1571 return false;
1572}
1573
1574static uint32_t
Greg Claytonc4a8a762012-05-15 18:43:44 +00001575LookupSymbolInModule (CommandInterpreter &interpreter, Stream &strm, Module *module, const char *name, bool name_is_regex, bool verbose)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001576{
1577 if (module)
1578 {
1579 SymbolContext sc;
1580
Michael Sartaina7499c92013-07-01 19:45:50 +00001581 SymbolVendor *sym_vendor = module->GetSymbolVendor ();
1582 if (sym_vendor)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001583 {
Michael Sartaina7499c92013-07-01 19:45:50 +00001584 Symtab *symtab = sym_vendor->GetSymtab();
Greg Claytoneffe5c92011-05-03 22:09:39 +00001585 if (symtab)
1586 {
1587 uint32_t i;
1588 std::vector<uint32_t> match_indexes;
1589 ConstString symbol_name (name);
1590 uint32_t num_matches = 0;
1591 if (name_is_regex)
1592 {
1593 RegularExpression name_regexp(name);
1594 num_matches = symtab->AppendSymbolIndexesMatchingRegExAndType (name_regexp,
1595 eSymbolTypeAny,
1596 match_indexes);
1597 }
1598 else
1599 {
1600 num_matches = symtab->AppendSymbolIndexesWithName (symbol_name, match_indexes);
1601 }
1602
1603
1604 if (num_matches > 0)
1605 {
1606 strm.Indent ();
1607 strm.Printf("%u symbols match %s'%s' in ", num_matches,
1608 name_is_regex ? "the regular expression " : "", name);
1609 DumpFullpath (strm, &module->GetFileSpec(), 0);
1610 strm.PutCString(":\n");
1611 strm.IndentMore ();
Greg Claytonc4a8a762012-05-15 18:43:44 +00001612 //Symtab::DumpSymbolHeader (&strm);
Greg Claytoneffe5c92011-05-03 22:09:39 +00001613 for (i=0; i < num_matches; ++i)
1614 {
1615 Symbol *symbol = symtab->SymbolAtIndex(match_indexes[i]);
Greg Claytonc4a8a762012-05-15 18:43:44 +00001616 DumpAddress (interpreter.GetExecutionContext().GetBestExecutionContextScope(),
1617 symbol->GetAddress(),
1618 verbose,
1619 strm);
1620
1621// strm.Indent ();
1622// symbol->Dump (&strm, interpreter.GetExecutionContext().GetTargetPtr(), i);
Greg Claytoneffe5c92011-05-03 22:09:39 +00001623 }
1624 strm.IndentLess ();
1625 return num_matches;
1626 }
1627 }
1628 }
1629 }
1630 return 0;
1631}
1632
1633
1634static void
Greg Claytonc4a8a762012-05-15 18:43:44 +00001635DumpSymbolContextList (ExecutionContextScope *exe_scope, Stream &strm, SymbolContextList &sc_list, bool verbose)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001636{
1637 strm.IndentMore ();
1638 uint32_t i;
1639 const uint32_t num_matches = sc_list.GetSize();
1640
1641 for (i=0; i<num_matches; ++i)
1642 {
1643 SymbolContext sc;
1644 if (sc_list.GetContextAtIndex(i, sc))
1645 {
Sean Callananf6172c22012-02-11 00:24:04 +00001646 AddressRange range;
1647
1648 sc.GetAddressRange(eSymbolContextEverything,
1649 0,
1650 true,
1651 range);
1652
Greg Claytonc4a8a762012-05-15 18:43:44 +00001653 DumpAddress (exe_scope, range.GetBaseAddress(), verbose, strm);
Greg Claytoneffe5c92011-05-03 22:09:39 +00001654 }
1655 }
1656 strm.IndentLess ();
1657}
1658
Greg Claytonc7bece562013-01-25 18:06:21 +00001659static size_t
Greg Claytonc4a8a762012-05-15 18:43:44 +00001660LookupFunctionInModule (CommandInterpreter &interpreter,
1661 Stream &strm,
1662 Module *module,
1663 const char *name,
1664 bool name_is_regex,
1665 bool include_inlines,
1666 bool include_symbols,
1667 bool verbose)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001668{
1669 if (module && name && name[0])
1670 {
1671 SymbolContextList sc_list;
Greg Claytoneffe5c92011-05-03 22:09:39 +00001672 const bool append = true;
Greg Claytonc7bece562013-01-25 18:06:21 +00001673 size_t num_matches = 0;
Greg Claytoneffe5c92011-05-03 22:09:39 +00001674 if (name_is_regex)
1675 {
1676 RegularExpression function_name_regex (name);
1677 num_matches = module->FindFunctions (function_name_regex,
1678 include_symbols,
Sean Callanan9df05fb2012-02-10 22:52:19 +00001679 include_inlines,
Greg Claytoneffe5c92011-05-03 22:09:39 +00001680 append,
1681 sc_list);
1682 }
1683 else
1684 {
1685 ConstString function_name (name);
Sean Callananb6d70eb2011-10-12 02:08:07 +00001686 num_matches = module->FindFunctions (function_name,
1687 NULL,
Greg Clayton6ecb2322013-05-18 00:11:21 +00001688 eFunctionNameTypeAuto,
Greg Claytoneffe5c92011-05-03 22:09:39 +00001689 include_symbols,
Sean Callanan9df05fb2012-02-10 22:52:19 +00001690 include_inlines,
Greg Claytoneffe5c92011-05-03 22:09:39 +00001691 append,
1692 sc_list);
1693 }
1694
1695 if (num_matches)
1696 {
1697 strm.Indent ();
Greg Claytonc7bece562013-01-25 18:06:21 +00001698 strm.Printf("%zu match%s found in ", num_matches, num_matches > 1 ? "es" : "");
Greg Claytoneffe5c92011-05-03 22:09:39 +00001699 DumpFullpath (strm, &module->GetFileSpec(), 0);
1700 strm.PutCString(":\n");
Greg Claytonc4a8a762012-05-15 18:43:44 +00001701 DumpSymbolContextList (interpreter.GetExecutionContext().GetBestExecutionContextScope(), strm, sc_list, verbose);
Greg Claytoneffe5c92011-05-03 22:09:39 +00001702 }
1703 return num_matches;
1704 }
1705 return 0;
1706}
1707
Greg Claytonc7bece562013-01-25 18:06:21 +00001708static size_t
Greg Claytonaafa5c92012-05-15 19:26:12 +00001709LookupTypeInModule (CommandInterpreter &interpreter,
Greg Clayton644247c2011-07-07 01:59:51 +00001710 Stream &strm,
1711 Module *module,
1712 const char *name_cstr,
1713 bool name_is_regex)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001714{
1715 if (module && name_cstr && name_cstr[0])
1716 {
Greg Claytond1767f02011-12-08 02:13:16 +00001717 TypeList type_list;
Greg Clayton84db9102012-03-26 23:03:23 +00001718 const uint32_t max_num_matches = UINT32_MAX;
Greg Claytonc7bece562013-01-25 18:06:21 +00001719 size_t num_matches = 0;
Greg Clayton84db9102012-03-26 23:03:23 +00001720 bool name_is_fully_qualified = false;
Greg Claytond1767f02011-12-08 02:13:16 +00001721 SymbolContext sc;
1722
1723 ConstString name(name_cstr);
Greg Clayton84db9102012-03-26 23:03:23 +00001724 num_matches = module->FindTypes(sc, name, name_is_fully_qualified, max_num_matches, type_list);
Greg Claytoneffe5c92011-05-03 22:09:39 +00001725
Greg Claytond1767f02011-12-08 02:13:16 +00001726 if (num_matches)
1727 {
1728 strm.Indent ();
Greg Claytonc7bece562013-01-25 18:06:21 +00001729 strm.Printf("%zu match%s found in ", num_matches, num_matches > 1 ? "es" : "");
Greg Claytond1767f02011-12-08 02:13:16 +00001730 DumpFullpath (strm, &module->GetFileSpec(), 0);
1731 strm.PutCString(":\n");
1732 const uint32_t num_types = type_list.GetSize();
1733 for (uint32_t i=0; i<num_types; ++i)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001734 {
Greg Claytond1767f02011-12-08 02:13:16 +00001735 TypeSP type_sp (type_list.GetTypeAtIndex(i));
1736 if (type_sp)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001737 {
Greg Claytond1767f02011-12-08 02:13:16 +00001738 // Resolve the clang type so that any forward references
1739 // to types that haven't yet been parsed will get parsed.
1740 type_sp->GetClangFullType ();
1741 type_sp->GetDescription (&strm, eDescriptionLevelFull, true);
Greg Claytonaafa5c92012-05-15 19:26:12 +00001742 // Print all typedef chains
1743 TypeSP typedef_type_sp (type_sp);
1744 TypeSP typedefed_type_sp (typedef_type_sp->GetTypedefType());
1745 while (typedefed_type_sp)
1746 {
1747 strm.EOL();
1748 strm.Printf(" typedef '%s': ", typedef_type_sp->GetName().GetCString());
1749 typedefed_type_sp->GetClangFullType ();
1750 typedefed_type_sp->GetDescription (&strm, eDescriptionLevelFull, true);
1751 typedef_type_sp = typedefed_type_sp;
1752 typedefed_type_sp = typedef_type_sp->GetTypedefType();
1753 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00001754 }
Greg Claytond1767f02011-12-08 02:13:16 +00001755 strm.EOL();
Greg Claytoneffe5c92011-05-03 22:09:39 +00001756 }
Greg Claytond1767f02011-12-08 02:13:16 +00001757 }
1758 return num_matches;
Greg Claytoneffe5c92011-05-03 22:09:39 +00001759 }
1760 return 0;
1761}
1762
Greg Claytonc7bece562013-01-25 18:06:21 +00001763static size_t
Sean Callanand38b4a92012-06-06 20:49:55 +00001764LookupTypeHere (CommandInterpreter &interpreter,
1765 Stream &strm,
1766 const SymbolContext &sym_ctx,
1767 const char *name_cstr,
1768 bool name_is_regex)
1769{
1770 if (!sym_ctx.module_sp)
1771 return 0;
1772
1773 TypeList type_list;
1774 const uint32_t max_num_matches = UINT32_MAX;
Greg Claytonc7bece562013-01-25 18:06:21 +00001775 size_t num_matches = 1;
Sean Callanand38b4a92012-06-06 20:49:55 +00001776 bool name_is_fully_qualified = false;
1777
1778 ConstString name(name_cstr);
1779 num_matches = sym_ctx.module_sp->FindTypes(sym_ctx, name, name_is_fully_qualified, max_num_matches, type_list);
1780
1781 if (num_matches)
1782 {
1783 strm.Indent ();
1784 strm.PutCString("Best match found in ");
1785 DumpFullpath (strm, &sym_ctx.module_sp->GetFileSpec(), 0);
1786 strm.PutCString(":\n");
1787
1788 TypeSP type_sp (type_list.GetTypeAtIndex(0));
1789 if (type_sp)
1790 {
1791 // Resolve the clang type so that any forward references
1792 // to types that haven't yet been parsed will get parsed.
1793 type_sp->GetClangFullType ();
1794 type_sp->GetDescription (&strm, eDescriptionLevelFull, true);
1795 // Print all typedef chains
1796 TypeSP typedef_type_sp (type_sp);
1797 TypeSP typedefed_type_sp (typedef_type_sp->GetTypedefType());
1798 while (typedefed_type_sp)
1799 {
1800 strm.EOL();
1801 strm.Printf(" typedef '%s': ", typedef_type_sp->GetName().GetCString());
1802 typedefed_type_sp->GetClangFullType ();
1803 typedefed_type_sp->GetDescription (&strm, eDescriptionLevelFull, true);
1804 typedef_type_sp = typedefed_type_sp;
1805 typedefed_type_sp = typedef_type_sp->GetTypedefType();
1806 }
1807 }
1808 strm.EOL();
1809 }
1810 return num_matches;
1811}
1812
1813static uint32_t
Greg Claytoneffe5c92011-05-03 22:09:39 +00001814LookupFileAndLineInModule (CommandInterpreter &interpreter,
Sean Callanand38b4a92012-06-06 20:49:55 +00001815 Stream &strm,
Greg Claytoneffe5c92011-05-03 22:09:39 +00001816 Module *module,
1817 const FileSpec &file_spec,
1818 uint32_t line,
1819 bool check_inlines,
1820 bool verbose)
1821{
1822 if (module && file_spec)
1823 {
1824 SymbolContextList sc_list;
1825 const uint32_t num_matches = module->ResolveSymbolContextsForFileSpec(file_spec, line, check_inlines,
1826 eSymbolContextEverything, sc_list);
1827 if (num_matches > 0)
1828 {
1829 strm.Indent ();
1830 strm.Printf("%u match%s found in ", num_matches, num_matches > 1 ? "es" : "");
1831 strm << file_spec;
1832 if (line > 0)
1833 strm.Printf (":%u", line);
1834 strm << " in ";
1835 DumpFullpath (strm, &module->GetFileSpec(), 0);
1836 strm.PutCString(":\n");
Greg Claytonc4a8a762012-05-15 18:43:44 +00001837 DumpSymbolContextList (interpreter.GetExecutionContext().GetBestExecutionContextScope(), strm, sc_list, verbose);
Greg Claytoneffe5c92011-05-03 22:09:39 +00001838 return num_matches;
1839 }
1840 }
1841 return 0;
1842
1843}
1844
Greg Clayton8ee64382011-11-10 01:18:58 +00001845
1846static size_t
1847FindModulesByName (Target *target,
1848 const char *module_name,
1849 ModuleList &module_list,
1850 bool check_global_list)
1851{
1852// Dump specified images (by basename or fullpath)
1853 FileSpec module_file_spec(module_name, false);
Greg Claytonb9a01b32012-02-26 05:51:37 +00001854 ModuleSpec module_spec (module_file_spec);
Greg Clayton8ee64382011-11-10 01:18:58 +00001855
1856 const size_t initial_size = module_list.GetSize ();
1857
Greg Claytonf3156262012-07-11 20:46:47 +00001858 if (check_global_list)
Greg Clayton8ee64382011-11-10 01:18:58 +00001859 {
1860 // Check the global list
Greg Claytonb26e6be2012-01-27 18:08:35 +00001861 Mutex::Locker locker(Module::GetAllocationModuleCollectionMutex());
Greg Claytonc7bece562013-01-25 18:06:21 +00001862 const size_t num_modules = Module::GetNumberAllocatedModules();
Greg Clayton8ee64382011-11-10 01:18:58 +00001863 ModuleSP module_sp;
Greg Claytonc7bece562013-01-25 18:06:21 +00001864 for (size_t image_idx = 0; image_idx<num_modules; ++image_idx)
Greg Clayton8ee64382011-11-10 01:18:58 +00001865 {
1866 Module *module = Module::GetAllocatedModuleAtIndex(image_idx);
1867
1868 if (module)
1869 {
Greg Claytonb9a01b32012-02-26 05:51:37 +00001870 if (module->MatchesModuleSpec (module_spec))
Greg Clayton8ee64382011-11-10 01:18:58 +00001871 {
Greg Claytone1cd1be2012-01-29 20:56:30 +00001872 module_sp = module->shared_from_this();
Greg Clayton8ee64382011-11-10 01:18:58 +00001873 module_list.AppendIfNeeded(module_sp);
1874 }
1875 }
1876 }
1877 }
Greg Claytonf3156262012-07-11 20:46:47 +00001878 else
1879 {
1880 if (target)
1881 {
1882 const size_t num_matches = target->GetImages().FindModules (module_spec, module_list);
1883
1884 // Not found in our module list for our target, check the main
1885 // shared module list in case it is a extra file used somewhere
1886 // else
1887 if (num_matches == 0)
1888 {
1889 module_spec.GetArchitecture() = target->GetArchitecture();
1890 ModuleList::FindSharedModules (module_spec, module_list);
1891 }
1892 }
1893 else
1894 {
1895 ModuleList::FindSharedModules (module_spec,module_list);
1896 }
1897 }
1898
Greg Clayton8ee64382011-11-10 01:18:58 +00001899 return module_list.GetSize () - initial_size;
1900}
1901
Greg Claytoneffe5c92011-05-03 22:09:39 +00001902#pragma mark CommandObjectTargetModulesModuleAutoComplete
1903
1904//----------------------------------------------------------------------
1905// A base command object class that can auto complete with module file
1906// paths
1907//----------------------------------------------------------------------
1908
Jim Ingham5a988412012-06-08 21:56:10 +00001909class CommandObjectTargetModulesModuleAutoComplete : public CommandObjectParsed
Greg Claytoneffe5c92011-05-03 22:09:39 +00001910{
1911public:
1912
1913 CommandObjectTargetModulesModuleAutoComplete (CommandInterpreter &interpreter,
1914 const char *name,
1915 const char *help,
1916 const char *syntax) :
Jim Ingham5a988412012-06-08 21:56:10 +00001917 CommandObjectParsed (interpreter, name, help, syntax)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001918 {
1919 CommandArgumentEntry arg;
1920 CommandArgumentData file_arg;
1921
1922 // Define the first (and only) variant of this arg.
1923 file_arg.arg_type = eArgTypeFilename;
1924 file_arg.arg_repetition = eArgRepeatStar;
1925
1926 // There is only one variant this argument could be; put it into the argument entry.
1927 arg.push_back (file_arg);
1928
1929 // Push the data for the first argument into the m_arguments vector.
1930 m_arguments.push_back (arg);
1931 }
1932
1933 virtual
1934 ~CommandObjectTargetModulesModuleAutoComplete ()
1935 {
1936 }
1937
1938 virtual int
1939 HandleArgumentCompletion (Args &input,
1940 int &cursor_index,
1941 int &cursor_char_position,
1942 OptionElementVector &opt_element_vector,
1943 int match_start_point,
1944 int max_return_elements,
1945 bool &word_complete,
1946 StringList &matches)
1947 {
1948 // Arguments are the standard module completer.
1949 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
1950 completion_str.erase (cursor_char_position);
1951
1952 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
1953 CommandCompletions::eModuleCompletion,
1954 completion_str.c_str(),
1955 match_start_point,
1956 max_return_elements,
1957 NULL,
1958 word_complete,
1959 matches);
1960 return matches.GetSize();
1961 }
1962};
1963
1964#pragma mark CommandObjectTargetModulesSourceFileAutoComplete
1965
1966//----------------------------------------------------------------------
1967// A base command object class that can auto complete with module source
1968// file paths
1969//----------------------------------------------------------------------
1970
Jim Ingham5a988412012-06-08 21:56:10 +00001971class CommandObjectTargetModulesSourceFileAutoComplete : public CommandObjectParsed
Greg Claytoneffe5c92011-05-03 22:09:39 +00001972{
1973public:
1974
1975 CommandObjectTargetModulesSourceFileAutoComplete (CommandInterpreter &interpreter,
Greg Claytonf9fc6092013-01-09 19:44:40 +00001976 const char *name,
1977 const char *help,
1978 const char *syntax,
1979 uint32_t flags) :
1980 CommandObjectParsed (interpreter, name, help, syntax, flags)
Greg Claytoneffe5c92011-05-03 22:09:39 +00001981 {
1982 CommandArgumentEntry arg;
1983 CommandArgumentData source_file_arg;
1984
1985 // Define the first (and only) variant of this arg.
1986 source_file_arg.arg_type = eArgTypeSourceFile;
1987 source_file_arg.arg_repetition = eArgRepeatPlus;
1988
1989 // There is only one variant this argument could be; put it into the argument entry.
1990 arg.push_back (source_file_arg);
1991
1992 // Push the data for the first argument into the m_arguments vector.
1993 m_arguments.push_back (arg);
1994 }
1995
1996 virtual
1997 ~CommandObjectTargetModulesSourceFileAutoComplete ()
1998 {
1999 }
2000
2001 virtual int
2002 HandleArgumentCompletion (Args &input,
2003 int &cursor_index,
2004 int &cursor_char_position,
2005 OptionElementVector &opt_element_vector,
2006 int match_start_point,
2007 int max_return_elements,
2008 bool &word_complete,
2009 StringList &matches)
2010 {
2011 // Arguments are the standard source file completer.
2012 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
2013 completion_str.erase (cursor_char_position);
2014
2015 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
2016 CommandCompletions::eSourceFileCompletion,
2017 completion_str.c_str(),
2018 match_start_point,
2019 max_return_elements,
2020 NULL,
2021 word_complete,
2022 matches);
2023 return matches.GetSize();
2024 }
2025};
2026
2027
2028#pragma mark CommandObjectTargetModulesDumpSymtab
2029
2030
2031class CommandObjectTargetModulesDumpSymtab : public CommandObjectTargetModulesModuleAutoComplete
2032{
2033public:
2034 CommandObjectTargetModulesDumpSymtab (CommandInterpreter &interpreter) :
2035 CommandObjectTargetModulesModuleAutoComplete (interpreter,
2036 "target modules dump symtab",
2037 "Dump the symbol table from one or more target modules.",
2038 NULL),
2039 m_options (interpreter)
2040 {
2041 }
2042
2043 virtual
2044 ~CommandObjectTargetModulesDumpSymtab ()
2045 {
2046 }
2047
Jim Ingham5a988412012-06-08 21:56:10 +00002048 virtual Options *
2049 GetOptions ()
2050 {
2051 return &m_options;
2052 }
2053
2054 class CommandOptions : public Options
2055 {
2056 public:
2057
2058 CommandOptions (CommandInterpreter &interpreter) :
2059 Options(interpreter),
2060 m_sort_order (eSortOrderNone)
2061 {
2062 }
2063
2064 virtual
2065 ~CommandOptions ()
2066 {
2067 }
2068
2069 virtual Error
2070 SetOptionValue (uint32_t option_idx, const char *option_arg)
2071 {
2072 Error error;
Greg Clayton3bcdfc02012-12-04 00:32:51 +00002073 const int short_option = m_getopt_table[option_idx].val;
Jim Ingham5a988412012-06-08 21:56:10 +00002074
2075 switch (short_option)
2076 {
2077 case 's':
2078 m_sort_order = (SortOrder) Args::StringToOptionEnum (option_arg,
2079 g_option_table[option_idx].enum_values,
2080 eSortOrderNone,
2081 error);
2082 break;
2083
2084 default:
2085 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
2086 break;
2087
2088 }
2089 return error;
2090 }
2091
2092 void
2093 OptionParsingStarting ()
2094 {
2095 m_sort_order = eSortOrderNone;
2096 }
2097
2098 const OptionDefinition*
2099 GetDefinitions ()
2100 {
2101 return g_option_table;
2102 }
2103
2104 // Options table: Required for subclasses of Options.
2105 static OptionDefinition g_option_table[];
2106
2107 SortOrder m_sort_order;
2108 };
2109
2110protected:
Greg Claytoneffe5c92011-05-03 22:09:39 +00002111 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +00002112 DoExecute (Args& command,
Greg Claytoneffe5c92011-05-03 22:09:39 +00002113 CommandReturnObject &result)
2114 {
2115 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2116 if (target == NULL)
2117 {
2118 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2119 result.SetStatus (eReturnStatusFailed);
2120 return false;
2121 }
2122 else
2123 {
2124 uint32_t num_dumped = 0;
2125
2126 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2127 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2128 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2129
2130 if (command.GetArgumentCount() == 0)
2131 {
2132 // Dump all sections for all modules images
Jim Ingham3ee12ef2012-05-30 02:19:25 +00002133 Mutex::Locker modules_locker(target->GetImages().GetMutex());
Greg Claytonc7bece562013-01-25 18:06:21 +00002134 const size_t num_modules = target->GetImages().GetSize();
Greg Claytoneffe5c92011-05-03 22:09:39 +00002135 if (num_modules > 0)
2136 {
Greg Claytonc7bece562013-01-25 18:06:21 +00002137 result.GetOutputStream().Printf("Dumping symbol table for %zu modules.\n", num_modules);
2138 for (size_t image_idx = 0; image_idx<num_modules; ++image_idx)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002139 {
2140 if (num_dumped > 0)
2141 {
2142 result.GetOutputStream().EOL();
2143 result.GetOutputStream().EOL();
2144 }
2145 num_dumped++;
Jim Ingham3ee12ef2012-05-30 02:19:25 +00002146 DumpModuleSymtab (m_interpreter,
2147 result.GetOutputStream(),
2148 target->GetImages().GetModulePointerAtIndexUnlocked(image_idx),
2149 m_options.m_sort_order);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002150 }
2151 }
2152 else
2153 {
2154 result.AppendError ("the target has no associated executable images");
2155 result.SetStatus (eReturnStatusFailed);
2156 return false;
2157 }
2158 }
2159 else
2160 {
2161 // Dump specified images (by basename or fullpath)
2162 const char *arg_cstr;
2163 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
2164 {
Greg Clayton8ee64382011-11-10 01:18:58 +00002165 ModuleList module_list;
2166 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true);
2167 if (num_matches > 0)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002168 {
Greg Clayton8ee64382011-11-10 01:18:58 +00002169 for (size_t i=0; i<num_matches; ++i)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002170 {
Greg Clayton8ee64382011-11-10 01:18:58 +00002171 Module *module = module_list.GetModulePointerAtIndex(i);
2172 if (module)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002173 {
2174 if (num_dumped > 0)
2175 {
2176 result.GetOutputStream().EOL();
2177 result.GetOutputStream().EOL();
2178 }
2179 num_dumped++;
Greg Clayton8ee64382011-11-10 01:18:58 +00002180 DumpModuleSymtab (m_interpreter, result.GetOutputStream(), module, m_options.m_sort_order);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002181 }
2182 }
2183 }
2184 else
2185 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
2186 }
2187 }
2188
2189 if (num_dumped > 0)
2190 result.SetStatus (eReturnStatusSuccessFinishResult);
2191 else
2192 {
2193 result.AppendError ("no matching executable images found");
2194 result.SetStatus (eReturnStatusFailed);
2195 }
2196 }
2197 return result.Succeeded();
2198 }
2199
Greg Claytoneffe5c92011-05-03 22:09:39 +00002200
2201 CommandOptions m_options;
2202};
2203
2204static OptionEnumValueElement
2205g_sort_option_enumeration[4] =
2206{
2207 { eSortOrderNone, "none", "No sorting, use the original symbol table order."},
2208 { eSortOrderByAddress, "address", "Sort output by symbol address."},
2209 { eSortOrderByName, "name", "Sort output by symbol name."},
2210 { 0, NULL, NULL }
2211};
2212
2213
2214OptionDefinition
2215CommandObjectTargetModulesDumpSymtab::CommandOptions::g_option_table[] =
2216{
2217 { LLDB_OPT_SET_1, false, "sort", 's', required_argument, g_sort_option_enumeration, 0, eArgTypeSortOrder, "Supply a sort order when dumping the symbol table."},
2218 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
2219};
2220
2221#pragma mark CommandObjectTargetModulesDumpSections
2222
2223//----------------------------------------------------------------------
2224// Image section dumping command
2225//----------------------------------------------------------------------
2226
2227class CommandObjectTargetModulesDumpSections : public CommandObjectTargetModulesModuleAutoComplete
2228{
2229public:
2230 CommandObjectTargetModulesDumpSections (CommandInterpreter &interpreter) :
2231 CommandObjectTargetModulesModuleAutoComplete (interpreter,
2232 "target modules dump sections",
2233 "Dump the sections from one or more target modules.",
2234 //"target modules dump sections [<file1> ...]")
2235 NULL)
2236 {
2237 }
2238
2239 virtual
2240 ~CommandObjectTargetModulesDumpSections ()
2241 {
2242 }
2243
Jim Ingham5a988412012-06-08 21:56:10 +00002244protected:
Greg Claytoneffe5c92011-05-03 22:09:39 +00002245 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +00002246 DoExecute (Args& command,
Greg Claytoneffe5c92011-05-03 22:09:39 +00002247 CommandReturnObject &result)
2248 {
2249 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2250 if (target == NULL)
2251 {
2252 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2253 result.SetStatus (eReturnStatusFailed);
2254 return false;
2255 }
2256 else
2257 {
2258 uint32_t num_dumped = 0;
2259
2260 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2261 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2262 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2263
2264 if (command.GetArgumentCount() == 0)
2265 {
2266 // Dump all sections for all modules images
Greg Claytonc7bece562013-01-25 18:06:21 +00002267 const size_t num_modules = target->GetImages().GetSize();
Greg Claytoneffe5c92011-05-03 22:09:39 +00002268 if (num_modules > 0)
2269 {
Greg Claytonc7bece562013-01-25 18:06:21 +00002270 result.GetOutputStream().Printf("Dumping sections for %zu modules.\n", num_modules);
2271 for (size_t image_idx = 0; image_idx<num_modules; ++image_idx)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002272 {
2273 num_dumped++;
2274 DumpModuleSections (m_interpreter, result.GetOutputStream(), target->GetImages().GetModulePointerAtIndex(image_idx));
2275 }
2276 }
2277 else
2278 {
2279 result.AppendError ("the target has no associated executable images");
2280 result.SetStatus (eReturnStatusFailed);
2281 return false;
2282 }
2283 }
2284 else
2285 {
2286 // Dump specified images (by basename or fullpath)
2287 const char *arg_cstr;
2288 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
2289 {
Greg Clayton8ee64382011-11-10 01:18:58 +00002290 ModuleList module_list;
2291 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true);
2292 if (num_matches > 0)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002293 {
Greg Clayton8ee64382011-11-10 01:18:58 +00002294 for (size_t i=0; i<num_matches; ++i)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002295 {
Greg Clayton8ee64382011-11-10 01:18:58 +00002296 Module *module = module_list.GetModulePointerAtIndex(i);
2297 if (module)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002298 {
2299 num_dumped++;
Greg Clayton8ee64382011-11-10 01:18:58 +00002300 DumpModuleSections (m_interpreter, result.GetOutputStream(), module);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002301 }
2302 }
2303 }
2304 else
Greg Clayton8ee64382011-11-10 01:18:58 +00002305 {
2306 // Check the global list
Greg Claytonb26e6be2012-01-27 18:08:35 +00002307 Mutex::Locker locker(Module::GetAllocationModuleCollectionMutex());
Greg Clayton8ee64382011-11-10 01:18:58 +00002308
Greg Claytoneffe5c92011-05-03 22:09:39 +00002309 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
Greg Clayton8ee64382011-11-10 01:18:58 +00002310 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00002311 }
2312 }
2313
2314 if (num_dumped > 0)
2315 result.SetStatus (eReturnStatusSuccessFinishResult);
2316 else
2317 {
2318 result.AppendError ("no matching executable images found");
2319 result.SetStatus (eReturnStatusFailed);
2320 }
2321 }
2322 return result.Succeeded();
2323 }
2324};
2325
2326
2327#pragma mark CommandObjectTargetModulesDumpSymfile
2328
2329//----------------------------------------------------------------------
2330// Image debug symbol dumping command
2331//----------------------------------------------------------------------
2332
2333class CommandObjectTargetModulesDumpSymfile : public CommandObjectTargetModulesModuleAutoComplete
2334{
2335public:
2336 CommandObjectTargetModulesDumpSymfile (CommandInterpreter &interpreter) :
2337 CommandObjectTargetModulesModuleAutoComplete (interpreter,
2338 "target modules dump symfile",
2339 "Dump the debug symbol file for one or more target modules.",
2340 //"target modules dump symfile [<file1> ...]")
2341 NULL)
2342 {
2343 }
2344
2345 virtual
2346 ~CommandObjectTargetModulesDumpSymfile ()
2347 {
2348 }
2349
Jim Ingham5a988412012-06-08 21:56:10 +00002350protected:
Greg Claytoneffe5c92011-05-03 22:09:39 +00002351 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +00002352 DoExecute (Args& command,
Greg Claytoneffe5c92011-05-03 22:09:39 +00002353 CommandReturnObject &result)
2354 {
2355 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2356 if (target == NULL)
2357 {
2358 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2359 result.SetStatus (eReturnStatusFailed);
2360 return false;
2361 }
2362 else
2363 {
2364 uint32_t num_dumped = 0;
2365
2366 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2367 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2368 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2369
2370 if (command.GetArgumentCount() == 0)
2371 {
2372 // Dump all sections for all modules images
Enrico Granata17598482012-11-08 02:22:02 +00002373 const ModuleList &target_modules = target->GetImages();
Jim Ingham3ee12ef2012-05-30 02:19:25 +00002374 Mutex::Locker modules_locker (target_modules.GetMutex());
Greg Claytonc7bece562013-01-25 18:06:21 +00002375 const size_t num_modules = target_modules.GetSize();
Greg Claytoneffe5c92011-05-03 22:09:39 +00002376 if (num_modules > 0)
2377 {
Greg Claytonc7bece562013-01-25 18:06:21 +00002378 result.GetOutputStream().Printf("Dumping debug symbols for %zu modules.\n", num_modules);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002379 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
2380 {
Jim Ingham3ee12ef2012-05-30 02:19:25 +00002381 if (DumpModuleSymbolVendor (result.GetOutputStream(), target_modules.GetModulePointerAtIndexUnlocked(image_idx)))
Greg Claytoneffe5c92011-05-03 22:09:39 +00002382 num_dumped++;
2383 }
2384 }
2385 else
2386 {
2387 result.AppendError ("the target has no associated executable images");
2388 result.SetStatus (eReturnStatusFailed);
2389 return false;
2390 }
2391 }
2392 else
2393 {
2394 // Dump specified images (by basename or fullpath)
2395 const char *arg_cstr;
2396 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
2397 {
Greg Clayton8ee64382011-11-10 01:18:58 +00002398 ModuleList module_list;
2399 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true);
2400 if (num_matches > 0)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002401 {
Greg Clayton8ee64382011-11-10 01:18:58 +00002402 for (size_t i=0; i<num_matches; ++i)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002403 {
Greg Clayton8ee64382011-11-10 01:18:58 +00002404 Module *module = module_list.GetModulePointerAtIndex(i);
2405 if (module)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002406 {
Greg Clayton8ee64382011-11-10 01:18:58 +00002407 if (DumpModuleSymbolVendor (result.GetOutputStream(), module))
Greg Claytoneffe5c92011-05-03 22:09:39 +00002408 num_dumped++;
2409 }
2410 }
2411 }
2412 else
2413 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
2414 }
2415 }
2416
2417 if (num_dumped > 0)
2418 result.SetStatus (eReturnStatusSuccessFinishResult);
2419 else
2420 {
2421 result.AppendError ("no matching executable images found");
2422 result.SetStatus (eReturnStatusFailed);
2423 }
2424 }
2425 return result.Succeeded();
2426 }
2427};
2428
2429
2430#pragma mark CommandObjectTargetModulesDumpLineTable
2431
2432//----------------------------------------------------------------------
2433// Image debug line table dumping command
2434//----------------------------------------------------------------------
2435
2436class CommandObjectTargetModulesDumpLineTable : public CommandObjectTargetModulesSourceFileAutoComplete
2437{
2438public:
2439 CommandObjectTargetModulesDumpLineTable (CommandInterpreter &interpreter) :
2440 CommandObjectTargetModulesSourceFileAutoComplete (interpreter,
Greg Claytonf9fc6092013-01-09 19:44:40 +00002441 "target modules dump line-table",
Jim Inghamcc0273d2013-06-18 20:27:11 +00002442 "Dump the line table for one or more compilation units.",
Greg Claytonf9fc6092013-01-09 19:44:40 +00002443 NULL,
2444 eFlagRequiresTarget)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002445 {
2446 }
2447
2448 virtual
2449 ~CommandObjectTargetModulesDumpLineTable ()
2450 {
2451 }
2452
Jim Ingham5a988412012-06-08 21:56:10 +00002453protected:
Greg Claytoneffe5c92011-05-03 22:09:39 +00002454 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +00002455 DoExecute (Args& command,
Greg Claytoneffe5c92011-05-03 22:09:39 +00002456 CommandReturnObject &result)
2457 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00002458 Target *target = m_exe_ctx.GetTargetPtr();
2459 uint32_t total_num_dumped = 0;
2460
2461 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2462 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2463 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2464
2465 if (command.GetArgumentCount() == 0)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002466 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00002467 result.AppendErrorWithFormat ("\nSyntax: %s\n", m_cmd_syntax.c_str());
Greg Claytoneffe5c92011-05-03 22:09:39 +00002468 result.SetStatus (eReturnStatusFailed);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002469 }
2470 else
2471 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00002472 // Dump specified images (by basename or fullpath)
2473 const char *arg_cstr;
2474 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002475 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00002476 FileSpec file_spec(arg_cstr, false);
2477
2478 const ModuleList &target_modules = target->GetImages();
2479 Mutex::Locker modules_locker(target_modules.GetMutex());
Greg Claytonc7bece562013-01-25 18:06:21 +00002480 const size_t num_modules = target_modules.GetSize();
Greg Claytonf9fc6092013-01-09 19:44:40 +00002481 if (num_modules > 0)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002482 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00002483 uint32_t num_dumped = 0;
2484 for (uint32_t i = 0; i<num_modules; ++i)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002485 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00002486 if (DumpCompileUnitLineTable (m_interpreter,
2487 result.GetOutputStream(),
2488 target_modules.GetModulePointerAtIndexUnlocked(i),
2489 file_spec,
2490 m_exe_ctx.GetProcessPtr() && m_exe_ctx.GetProcessRef().IsAlive()))
2491 num_dumped++;
Greg Claytoneffe5c92011-05-03 22:09:39 +00002492 }
Greg Claytonf9fc6092013-01-09 19:44:40 +00002493 if (num_dumped == 0)
2494 result.AppendWarningWithFormat ("No source filenames matched '%s'.\n", arg_cstr);
2495 else
2496 total_num_dumped += num_dumped;
Greg Claytoneffe5c92011-05-03 22:09:39 +00002497 }
2498 }
Greg Claytonf9fc6092013-01-09 19:44:40 +00002499 }
2500
2501 if (total_num_dumped > 0)
2502 result.SetStatus (eReturnStatusSuccessFinishResult);
2503 else
2504 {
2505 result.AppendError ("no source filenames matched any command arguments");
2506 result.SetStatus (eReturnStatusFailed);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002507 }
2508 return result.Succeeded();
2509 }
2510};
2511
2512
2513#pragma mark CommandObjectTargetModulesDump
2514
2515//----------------------------------------------------------------------
2516// Dump multi-word command for target modules
2517//----------------------------------------------------------------------
2518
2519class CommandObjectTargetModulesDump : public CommandObjectMultiword
2520{
2521public:
2522
2523 //------------------------------------------------------------------
2524 // Constructors and Destructors
2525 //------------------------------------------------------------------
2526 CommandObjectTargetModulesDump(CommandInterpreter &interpreter) :
2527 CommandObjectMultiword (interpreter,
2528 "target modules dump",
2529 "A set of commands for dumping information about one or more target modules.",
2530 "target modules dump [symtab|sections|symfile|line-table] [<file1> <file2> ...]")
2531 {
2532 LoadSubCommand ("symtab", CommandObjectSP (new CommandObjectTargetModulesDumpSymtab (interpreter)));
2533 LoadSubCommand ("sections", CommandObjectSP (new CommandObjectTargetModulesDumpSections (interpreter)));
2534 LoadSubCommand ("symfile", CommandObjectSP (new CommandObjectTargetModulesDumpSymfile (interpreter)));
2535 LoadSubCommand ("line-table", CommandObjectSP (new CommandObjectTargetModulesDumpLineTable (interpreter)));
2536 }
2537
2538 virtual
2539 ~CommandObjectTargetModulesDump()
2540 {
2541 }
2542};
2543
Jim Ingham5a988412012-06-08 21:56:10 +00002544class CommandObjectTargetModulesAdd : public CommandObjectParsed
Greg Claytoneffe5c92011-05-03 22:09:39 +00002545{
2546public:
2547 CommandObjectTargetModulesAdd (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00002548 CommandObjectParsed (interpreter,
2549 "target modules add",
2550 "Add a new module to the current target's modules.",
Greg Clayton50a24bd2012-11-29 22:16:27 +00002551 "target modules add [<module>]"),
Greg Clayton1c5f1862012-11-30 19:05:35 +00002552 m_option_group (interpreter),
2553 m_symbol_file (LLDB_OPT_SET_1, false, "symfile", 's', 0, eArgTypeFilename, "Fullpath to a stand alone debug symbols file for when debug symbols are not in the executable.")
Greg Claytoneffe5c92011-05-03 22:09:39 +00002554 {
Greg Clayton50a24bd2012-11-29 22:16:27 +00002555 m_option_group.Append (&m_uuid_option_group, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton1c5f1862012-11-30 19:05:35 +00002556 m_option_group.Append (&m_symbol_file, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton50a24bd2012-11-29 22:16:27 +00002557 m_option_group.Finalize();
Greg Claytoneffe5c92011-05-03 22:09:39 +00002558 }
2559
2560 virtual
2561 ~CommandObjectTargetModulesAdd ()
2562 {
2563 }
Greg Clayton50a24bd2012-11-29 22:16:27 +00002564
2565 virtual Options *
2566 GetOptions ()
2567 {
2568 return &m_option_group;
2569 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00002570
Greg Claytonc7bece562013-01-25 18:06:21 +00002571 virtual int
Jim Ingham5a988412012-06-08 21:56:10 +00002572 HandleArgumentCompletion (Args &input,
2573 int &cursor_index,
2574 int &cursor_char_position,
2575 OptionElementVector &opt_element_vector,
2576 int match_start_point,
2577 int max_return_elements,
2578 bool &word_complete,
2579 StringList &matches)
2580 {
2581 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
2582 completion_str.erase (cursor_char_position);
2583
2584 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
2585 CommandCompletions::eDiskFileCompletion,
2586 completion_str.c_str(),
2587 match_start_point,
2588 max_return_elements,
2589 NULL,
2590 word_complete,
2591 matches);
2592 return matches.GetSize();
2593 }
2594
2595protected:
Greg Clayton50a24bd2012-11-29 22:16:27 +00002596
2597 OptionGroupOptions m_option_group;
2598 OptionGroupUUID m_uuid_option_group;
Greg Clayton1c5f1862012-11-30 19:05:35 +00002599 OptionGroupFile m_symbol_file;
Greg Clayton50a24bd2012-11-29 22:16:27 +00002600
2601
Greg Claytoneffe5c92011-05-03 22:09:39 +00002602 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +00002603 DoExecute (Args& args,
Greg Claytoneffe5c92011-05-03 22:09:39 +00002604 CommandReturnObject &result)
2605 {
2606 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2607 if (target == NULL)
2608 {
2609 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2610 result.SetStatus (eReturnStatusFailed);
2611 return false;
2612 }
2613 else
2614 {
Sean Callananb36c6c02012-12-13 01:39:39 +00002615 bool flush = false;
2616
Greg Claytoneffe5c92011-05-03 22:09:39 +00002617 const size_t argc = args.GetArgumentCount();
2618 if (argc == 0)
2619 {
Greg Clayton50a24bd2012-11-29 22:16:27 +00002620 if (m_uuid_option_group.GetOptionValue ().OptionWasSet())
2621 {
2622 // We are given a UUID only, go locate the file
2623 ModuleSpec module_spec;
2624 module_spec.GetUUID() = m_uuid_option_group.GetOptionValue ().GetCurrentValue();
Greg Clayton1c5f1862012-11-30 19:05:35 +00002625 if (m_symbol_file.GetOptionValue().OptionWasSet())
2626 module_spec.GetSymbolFileSpec() = m_symbol_file.GetOptionValue().GetCurrentValue();
Greg Clayton50a24bd2012-11-29 22:16:27 +00002627 if (Symbols::DownloadObjectAndSymbolFile (module_spec))
2628 {
2629 ModuleSP module_sp (target->GetSharedModule (module_spec));
2630 if (module_sp)
2631 {
2632 result.SetStatus (eReturnStatusSuccessFinishResult);
2633 return true;
2634 }
2635 else
2636 {
Sean Callananb36c6c02012-12-13 01:39:39 +00002637 flush = true;
2638
Greg Clayton50a24bd2012-11-29 22:16:27 +00002639 StreamString strm;
2640 module_spec.GetUUID().Dump (&strm);
2641 if (module_spec.GetFileSpec())
2642 {
2643 if (module_spec.GetSymbolFileSpec())
2644 {
Greg Claytonb5ad4ec2013-04-29 17:25:54 +00002645 result.AppendErrorWithFormat ("Unable to create the executable or symbol file with UUID %s with path %s and symbol file %s",
Greg Clayton50a24bd2012-11-29 22:16:27 +00002646 strm.GetString().c_str(),
Greg Claytonb5ad4ec2013-04-29 17:25:54 +00002647 module_spec.GetFileSpec().GetPath().c_str(),
2648 module_spec.GetSymbolFileSpec().GetPath().c_str());
Greg Clayton50a24bd2012-11-29 22:16:27 +00002649 }
2650 else
2651 {
Greg Claytonb5ad4ec2013-04-29 17:25:54 +00002652 result.AppendErrorWithFormat ("Unable to create the executable or symbol file with UUID %s with path %s",
Greg Clayton50a24bd2012-11-29 22:16:27 +00002653 strm.GetString().c_str(),
Greg Claytonb5ad4ec2013-04-29 17:25:54 +00002654 module_spec.GetFileSpec().GetPath().c_str());
Greg Clayton50a24bd2012-11-29 22:16:27 +00002655 }
2656 }
2657 else
2658 {
2659 result.AppendErrorWithFormat ("Unable to create the executable or symbol file with UUID %s",
2660 strm.GetString().c_str());
2661 }
2662 result.SetStatus (eReturnStatusFailed);
2663 return false;
2664 }
2665 }
2666 else
2667 {
2668 StreamString strm;
2669 module_spec.GetUUID().Dump (&strm);
2670 result.AppendErrorWithFormat ("Unable to locate the executable or symbol file with UUID %s", strm.GetString().c_str());
2671 result.SetStatus (eReturnStatusFailed);
2672 return false;
2673 }
2674 }
2675 else
2676 {
2677 result.AppendError ("one or more executable image paths must be specified");
2678 result.SetStatus (eReturnStatusFailed);
2679 return false;
2680 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00002681 }
2682 else
2683 {
2684 for (size_t i=0; i<argc; ++i)
2685 {
2686 const char *path = args.GetArgumentAtIndex(i);
2687 if (path)
2688 {
2689 FileSpec file_spec(path, true);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002690 if (file_spec.Exists())
2691 {
Greg Claytonb9a01b32012-02-26 05:51:37 +00002692 ModuleSpec module_spec (file_spec);
Greg Clayton50a24bd2012-11-29 22:16:27 +00002693 if (m_uuid_option_group.GetOptionValue ().OptionWasSet())
2694 module_spec.GetUUID() = m_uuid_option_group.GetOptionValue ().GetCurrentValue();
Greg Clayton1c5f1862012-11-30 19:05:35 +00002695 if (m_symbol_file.GetOptionValue().OptionWasSet())
2696 module_spec.GetSymbolFileSpec() = m_symbol_file.GetOptionValue().GetCurrentValue();
Greg Clayton50a24bd2012-11-29 22:16:27 +00002697 Error error;
2698 ModuleSP module_sp (target->GetSharedModule (module_spec, &error));
Greg Claytoneffe5c92011-05-03 22:09:39 +00002699 if (!module_sp)
2700 {
Greg Clayton50a24bd2012-11-29 22:16:27 +00002701 const char *error_cstr = error.AsCString();
2702 if (error_cstr)
2703 result.AppendError (error_cstr);
2704 else
2705 result.AppendErrorWithFormat ("unsupported module: %s", path);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002706 result.SetStatus (eReturnStatusFailed);
2707 return false;
2708 }
Sean Callananb36c6c02012-12-13 01:39:39 +00002709 else
2710 {
2711 flush = true;
2712 }
Jason Molenda2f7af6a2011-08-02 23:28:55 +00002713 result.SetStatus (eReturnStatusSuccessFinishResult);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002714 }
2715 else
2716 {
2717 char resolved_path[PATH_MAX];
2718 result.SetStatus (eReturnStatusFailed);
2719 if (file_spec.GetPath (resolved_path, sizeof(resolved_path)))
2720 {
2721 if (strcmp (resolved_path, path) != 0)
2722 {
2723 result.AppendErrorWithFormat ("invalid module path '%s' with resolved path '%s'\n", path, resolved_path);
2724 break;
2725 }
2726 }
2727 result.AppendErrorWithFormat ("invalid module path '%s'\n", path);
2728 break;
2729 }
2730 }
2731 }
2732 }
Sean Callananb36c6c02012-12-13 01:39:39 +00002733
2734 if (flush)
2735 {
2736 ProcessSP process = target->GetProcessSP();
2737 if (process)
2738 process->Flush();
2739 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00002740 }
Sean Callananb36c6c02012-12-13 01:39:39 +00002741
Greg Claytoneffe5c92011-05-03 22:09:39 +00002742 return result.Succeeded();
2743 }
2744
Greg Claytoneffe5c92011-05-03 22:09:39 +00002745};
2746
2747class CommandObjectTargetModulesLoad : public CommandObjectTargetModulesModuleAutoComplete
2748{
2749public:
2750 CommandObjectTargetModulesLoad (CommandInterpreter &interpreter) :
2751 CommandObjectTargetModulesModuleAutoComplete (interpreter,
2752 "target modules load",
2753 "Set the load addresses for one or more sections in a target module.",
2754 "target modules load [--file <module> --uuid <uuid>] <sect-name> <address> [<sect-name> <address> ....]"),
2755 m_option_group (interpreter),
Sean Callanan31542552012-10-24 01:12:14 +00002756 m_file_option (LLDB_OPT_SET_1, false, "file", 'f', 0, eArgTypeFilename, "Fullpath or basename for module to load."),
Greg Claytoneffe5c92011-05-03 22:09:39 +00002757 m_slide_option(LLDB_OPT_SET_1, false, "slide", 's', 0, eArgTypeOffset, "Set the load address for all sections to be the virtual address in the file plus the offset.", 0)
2758 {
2759 m_option_group.Append (&m_uuid_option_group, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
2760 m_option_group.Append (&m_file_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
2761 m_option_group.Append (&m_slide_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
2762 m_option_group.Finalize();
2763 }
2764
2765 virtual
2766 ~CommandObjectTargetModulesLoad ()
2767 {
2768 }
2769
Jim Ingham5a988412012-06-08 21:56:10 +00002770 virtual Options *
2771 GetOptions ()
2772 {
2773 return &m_option_group;
2774 }
2775
2776protected:
Greg Claytoneffe5c92011-05-03 22:09:39 +00002777 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +00002778 DoExecute (Args& args,
Greg Claytoneffe5c92011-05-03 22:09:39 +00002779 CommandReturnObject &result)
2780 {
2781 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2782 if (target == NULL)
2783 {
2784 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2785 result.SetStatus (eReturnStatusFailed);
2786 return false;
2787 }
2788 else
2789 {
2790 const size_t argc = args.GetArgumentCount();
Greg Claytonb9a01b32012-02-26 05:51:37 +00002791 ModuleSpec module_spec;
2792 bool search_using_module_spec = false;
Greg Claytoneffe5c92011-05-03 22:09:39 +00002793 if (m_file_option.GetOptionValue().OptionWasSet())
Greg Claytonb9a01b32012-02-26 05:51:37 +00002794 {
2795 search_using_module_spec = true;
2796 module_spec.GetFileSpec() = m_file_option.GetOptionValue().GetCurrentValue();
2797 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00002798
2799 if (m_uuid_option_group.GetOptionValue().OptionWasSet())
Greg Claytonb9a01b32012-02-26 05:51:37 +00002800 {
2801 search_using_module_spec = true;
2802 module_spec.GetUUID() = m_uuid_option_group.GetOptionValue().GetCurrentValue();
2803 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00002804
Greg Claytonb9a01b32012-02-26 05:51:37 +00002805 if (search_using_module_spec)
Greg Claytoneffe5c92011-05-03 22:09:39 +00002806 {
2807
2808 ModuleList matching_modules;
Greg Claytonb9a01b32012-02-26 05:51:37 +00002809 const size_t num_matches = target->GetImages().FindModules (module_spec, matching_modules);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002810
2811 char path[PATH_MAX];
2812 if (num_matches == 1)
2813 {
2814 Module *module = matching_modules.GetModulePointerAtIndex(0);
2815 if (module)
2816 {
2817 ObjectFile *objfile = module->GetObjectFile();
2818 if (objfile)
2819 {
Greg Clayton3046e662013-07-10 01:23:25 +00002820 SectionList *section_list = module->GetSectionList();
Greg Claytoneffe5c92011-05-03 22:09:39 +00002821 if (section_list)
2822 {
Greg Clayton741f3f92012-03-27 21:10:07 +00002823 bool changed = false;
Greg Claytoneffe5c92011-05-03 22:09:39 +00002824 if (argc == 0)
2825 {
2826 if (m_slide_option.GetOptionValue().OptionWasSet())
2827 {
Greg Clayton741f3f92012-03-27 21:10:07 +00002828 const addr_t slide = m_slide_option.GetOptionValue().GetCurrentValue();
2829 module->SetLoadAddress (*target, slide, changed);
Greg Claytoneffe5c92011-05-03 22:09:39 +00002830 }
2831 else
2832 {
2833 result.AppendError ("one or more section name + load address pair must be specified");
2834 result.SetStatus (eReturnStatusFailed);
2835 return false;
2836 }
2837 }
2838 else
2839 {
2840 if (m_slide_option.GetOptionValue().OptionWasSet())
2841 {
2842 result.AppendError ("The \"--slide <offset>\" option can't be used in conjunction with setting section load addresses.\n");
2843 result.SetStatus (eReturnStatusFailed);
2844 return false;
2845 }
2846
2847 for (size_t i=0; i<argc; i += 2)
2848 {
2849 const char *sect_name = args.GetArgumentAtIndex(i);
2850 const char *load_addr_cstr = args.GetArgumentAtIndex(i+1);
2851 if (sect_name && load_addr_cstr)
2852 {
2853 ConstString const_sect_name(sect_name);
2854 bool success = false;
2855 addr_t load_addr = Args::StringToUInt64(load_addr_cstr, LLDB_INVALID_ADDRESS, 0, &success);
2856 if (success)
2857 {
2858 SectionSP section_sp (section_list->FindSectionByName(const_sect_name));
2859 if (section_sp)
2860 {
Greg Clayton741f3f92012-03-27 21:10:07 +00002861 if (section_sp->IsThreadSpecific())
2862 {
2863 result.AppendErrorWithFormat ("thread specific sections are not yet supported (section '%s')\n", sect_name);
2864 result.SetStatus (eReturnStatusFailed);
2865 break;
2866 }
2867 else
2868 {
Greg Clayton7820bd12012-07-07 01:24:12 +00002869 if (target->GetSectionLoadList().SetSectionLoadAddress (section_sp, load_addr))
Greg Clayton741f3f92012-03-27 21:10:07 +00002870 changed = true;
Daniel Malead01b2952012-11-29 21:49:15 +00002871 result.AppendMessageWithFormat("section '%s' loaded at 0x%" PRIx64 "\n", sect_name, load_addr);
Greg Clayton741f3f92012-03-27 21:10:07 +00002872 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00002873 }
2874 else
2875 {
2876 result.AppendErrorWithFormat ("no section found that matches the section name '%s'\n", sect_name);
2877 result.SetStatus (eReturnStatusFailed);
2878 break;
2879 }
2880 }
2881 else
2882 {
2883 result.AppendErrorWithFormat ("invalid load address string '%s'\n", load_addr_cstr);
2884 result.SetStatus (eReturnStatusFailed);
2885 break;
2886 }
2887 }
2888 else
2889 {
2890 if (sect_name)
2891 result.AppendError ("section names must be followed by a load address.\n");
2892 else
2893 result.AppendError ("one or more section name + load address pair must be specified.\n");
2894 result.SetStatus (eReturnStatusFailed);
2895 break;
2896 }
2897 }
2898 }
Greg Clayton741f3f92012-03-27 21:10:07 +00002899
2900 if (changed)
Greg Clayton3c947372013-01-29 01:17:09 +00002901 {
Greg Clayton741f3f92012-03-27 21:10:07 +00002902 target->ModulesDidLoad (matching_modules);
Greg Clayton3c947372013-01-29 01:17:09 +00002903 Process *process = m_exe_ctx.GetProcessPtr();
2904 if (process)
2905 process->Flush();
2906 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00002907 }
2908 else
2909 {
2910 module->GetFileSpec().GetPath (path, sizeof(path));
2911 result.AppendErrorWithFormat ("no sections in object file '%s'\n", path);
2912 result.SetStatus (eReturnStatusFailed);
2913 }
2914 }
2915 else
2916 {
2917 module->GetFileSpec().GetPath (path, sizeof(path));
2918 result.AppendErrorWithFormat ("no object file for module '%s'\n", path);
2919 result.SetStatus (eReturnStatusFailed);
2920 }
2921 }
2922 else
2923 {
Jim Ingham28eb5712012-10-12 17:34:26 +00002924 FileSpec *module_spec_file = module_spec.GetFileSpecPtr();
2925 if (module_spec_file)
2926 {
2927 module_spec_file->GetPath (path, sizeof(path));
2928 result.AppendErrorWithFormat ("invalid module '%s'.\n", path);
2929 }
2930 else
2931 result.AppendError ("no module spec");
Greg Claytoneffe5c92011-05-03 22:09:39 +00002932 result.SetStatus (eReturnStatusFailed);
2933 }
2934 }
2935 else
2936 {
Jason Molendac16b4af2013-05-03 23:56:12 +00002937 std::string uuid_str;
Greg Claytonb9a01b32012-02-26 05:51:37 +00002938
2939 if (module_spec.GetFileSpec())
2940 module_spec.GetFileSpec().GetPath (path, sizeof(path));
Greg Claytoneffe5c92011-05-03 22:09:39 +00002941 else
2942 path[0] = '\0';
2943
Greg Claytonb9a01b32012-02-26 05:51:37 +00002944 if (module_spec.GetUUIDPtr())
Jason Molendac16b4af2013-05-03 23:56:12 +00002945 uuid_str = module_spec.GetUUID().GetAsString();
Greg Claytoneffe5c92011-05-03 22:09:39 +00002946 if (num_matches > 1)
2947 {
2948 result.AppendErrorWithFormat ("multiple modules match%s%s%s%s:\n",
2949 path[0] ? " file=" : "",
2950 path,
Jason Molendac16b4af2013-05-03 23:56:12 +00002951 !uuid_str.empty() ? " uuid=" : "",
2952 uuid_str.c_str());
Greg Claytoneffe5c92011-05-03 22:09:39 +00002953 for (size_t i=0; i<num_matches; ++i)
2954 {
2955 if (matching_modules.GetModulePointerAtIndex(i)->GetFileSpec().GetPath (path, sizeof(path)))
2956 result.AppendMessageWithFormat("%s\n", path);
2957 }
2958 }
2959 else
2960 {
2961 result.AppendErrorWithFormat ("no modules were found that match%s%s%s%s.\n",
2962 path[0] ? " file=" : "",
2963 path,
Jason Molendac16b4af2013-05-03 23:56:12 +00002964 !uuid_str.empty() ? " uuid=" : "",
2965 uuid_str.c_str());
Greg Claytoneffe5c92011-05-03 22:09:39 +00002966 }
2967 result.SetStatus (eReturnStatusFailed);
2968 }
2969 }
2970 else
2971 {
2972 result.AppendError ("either the \"--file <module>\" or the \"--uuid <uuid>\" option must be specified.\n");
2973 result.SetStatus (eReturnStatusFailed);
2974 return false;
2975 }
2976 }
2977 return result.Succeeded();
2978 }
2979
Greg Claytoneffe5c92011-05-03 22:09:39 +00002980 OptionGroupOptions m_option_group;
2981 OptionGroupUUID m_uuid_option_group;
2982 OptionGroupFile m_file_option;
2983 OptionGroupUInt64 m_slide_option;
2984};
2985
2986//----------------------------------------------------------------------
2987// List images with associated information
2988//----------------------------------------------------------------------
Jim Ingham5a988412012-06-08 21:56:10 +00002989class CommandObjectTargetModulesList : public CommandObjectParsed
Greg Claytoneffe5c92011-05-03 22:09:39 +00002990{
2991public:
2992
2993 class CommandOptions : public Options
2994 {
2995 public:
2996
2997 CommandOptions (CommandInterpreter &interpreter) :
Greg Clayton65a03992011-08-09 00:01:09 +00002998 Options(interpreter),
Jim Inghamc10312c2011-10-24 18:36:33 +00002999 m_format_array(),
Daniel Dunbara08823f2011-10-31 22:50:49 +00003000 m_use_global_module_list (false),
Jim Inghamc10312c2011-10-24 18:36:33 +00003001 m_module_addr (LLDB_INVALID_ADDRESS)
Greg Claytoneffe5c92011-05-03 22:09:39 +00003002 {
3003 }
3004
3005 virtual
3006 ~CommandOptions ()
3007 {
3008 }
3009
3010 virtual Error
3011 SetOptionValue (uint32_t option_idx, const char *option_arg)
3012 {
Greg Claytonb9d5df52012-12-06 22:49:16 +00003013 Error error;
3014
Greg Clayton3bcdfc02012-12-04 00:32:51 +00003015 const int short_option = m_getopt_table[option_idx].val;
Greg Clayton65a03992011-08-09 00:01:09 +00003016 if (short_option == 'g')
3017 {
3018 m_use_global_module_list = true;
3019 }
Jim Inghamc10312c2011-10-24 18:36:33 +00003020 else if (short_option == 'a')
3021 {
Jim Inghame7b849e2013-03-15 23:09:19 +00003022 ExecutionContext exe_ctx (m_interpreter.GetExecutionContext());
3023 m_module_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
Jim Inghamc10312c2011-10-24 18:36:33 +00003024 }
Greg Clayton65a03992011-08-09 00:01:09 +00003025 else
3026 {
Greg Claytonc7bece562013-01-25 18:06:21 +00003027 unsigned long width = 0;
Greg Clayton65a03992011-08-09 00:01:09 +00003028 if (option_arg)
3029 width = strtoul (option_arg, NULL, 0);
3030 m_format_array.push_back(std::make_pair(short_option, width));
3031 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00003032 return error;
3033 }
3034
3035 void
3036 OptionParsingStarting ()
3037 {
3038 m_format_array.clear();
Greg Clayton65a03992011-08-09 00:01:09 +00003039 m_use_global_module_list = false;
Jim Inghamc10312c2011-10-24 18:36:33 +00003040 m_module_addr = LLDB_INVALID_ADDRESS;
Greg Claytoneffe5c92011-05-03 22:09:39 +00003041 }
3042
3043 const OptionDefinition*
3044 GetDefinitions ()
3045 {
3046 return g_option_table;
3047 }
3048
3049 // Options table: Required for subclasses of Options.
3050
3051 static OptionDefinition g_option_table[];
3052
3053 // Instance variables to hold the values for command options.
3054 typedef std::vector< std::pair<char, uint32_t> > FormatWidthCollection;
3055 FormatWidthCollection m_format_array;
Greg Clayton65a03992011-08-09 00:01:09 +00003056 bool m_use_global_module_list;
Jim Inghamc10312c2011-10-24 18:36:33 +00003057 lldb::addr_t m_module_addr;
Greg Claytoneffe5c92011-05-03 22:09:39 +00003058 };
3059
3060 CommandObjectTargetModulesList (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00003061 CommandObjectParsed (interpreter,
3062 "target modules list",
3063 "List current executable and dependent shared library images.",
3064 "target modules list [<cmd-options>]"),
Greg Claytoneffe5c92011-05-03 22:09:39 +00003065 m_options (interpreter)
3066 {
3067 }
3068
3069 virtual
3070 ~CommandObjectTargetModulesList ()
3071 {
3072 }
3073
3074 virtual
3075 Options *
3076 GetOptions ()
3077 {
3078 return &m_options;
3079 }
3080
Jim Ingham5a988412012-06-08 21:56:10 +00003081protected:
Greg Claytoneffe5c92011-05-03 22:09:39 +00003082 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +00003083 DoExecute (Args& command,
Greg Claytoneffe5c92011-05-03 22:09:39 +00003084 CommandReturnObject &result)
3085 {
3086 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Greg Clayton3418c852011-08-10 02:10:13 +00003087 const bool use_global_module_list = m_options.m_use_global_module_list;
Greg Clayton234076c2012-06-27 20:26:19 +00003088 // Define a local module list here to ensure it lives longer than any "locker"
3089 // object which might lock its contents below (through the "module_list_ptr"
3090 // variable).
3091 ModuleList module_list;
Greg Clayton3418c852011-08-10 02:10:13 +00003092 if (target == NULL && use_global_module_list == false)
Greg Claytoneffe5c92011-05-03 22:09:39 +00003093 {
3094 result.AppendError ("invalid target, create a debug target using the 'target create' command");
3095 result.SetStatus (eReturnStatusFailed);
3096 return false;
3097 }
3098 else
3099 {
Greg Clayton3418c852011-08-10 02:10:13 +00003100 if (target)
3101 {
3102 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
3103 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
3104 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
3105 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00003106 // Dump all sections for all modules images
Jim Inghamc10312c2011-10-24 18:36:33 +00003107 Stream &strm = result.GetOutputStream();
3108
3109 if (m_options.m_module_addr != LLDB_INVALID_ADDRESS)
3110 {
3111 if (target)
3112 {
3113 Address module_address;
3114 if (module_address.SetLoadAddress(m_options.m_module_addr, target))
3115 {
Greg Claytone72dfb32012-02-24 01:59:29 +00003116 ModuleSP module_sp (module_address.GetModule());
3117 if (module_sp)
Jim Inghamc10312c2011-10-24 18:36:33 +00003118 {
Greg Claytonc7bece562013-01-25 18:06:21 +00003119 PrintModule (target, module_sp.get(), 0, strm);
Jim Inghamc10312c2011-10-24 18:36:33 +00003120 result.SetStatus (eReturnStatusSuccessFinishResult);
3121 }
3122 else
3123 {
Jim Ingham17fafa12012-12-15 02:40:54 +00003124 result.AppendErrorWithFormat ("Couldn't find module matching address: 0x%" PRIx64 ".", m_options.m_module_addr);
Jim Inghamc10312c2011-10-24 18:36:33 +00003125 result.SetStatus (eReturnStatusFailed);
3126 }
3127 }
3128 else
3129 {
Jim Ingham17fafa12012-12-15 02:40:54 +00003130 result.AppendErrorWithFormat ("Couldn't find module containing address: 0x%" PRIx64 ".", m_options.m_module_addr);
Jim Inghamc10312c2011-10-24 18:36:33 +00003131 result.SetStatus (eReturnStatusFailed);
3132 }
3133 }
3134 else
3135 {
3136 result.AppendError ("Can only look up modules by address with a valid target.");
3137 result.SetStatus (eReturnStatusFailed);
3138 }
3139 return result.Succeeded();
3140 }
3141
Greg Claytonc7bece562013-01-25 18:06:21 +00003142 size_t num_modules = 0;
Jim Ingham3ee12ef2012-05-30 02:19:25 +00003143 Mutex::Locker locker; // This locker will be locked on the mutex in module_list_ptr if it is non-NULL.
3144 // Otherwise it will lock the AllocationModuleCollectionMutex when accessing
3145 // the global module list directly.
Enrico Granata17598482012-11-08 02:22:02 +00003146 const ModuleList *module_list_ptr = NULL;
Greg Claytonc4a8a762012-05-15 18:43:44 +00003147 const size_t argc = command.GetArgumentCount();
3148 if (argc == 0)
Greg Clayton65a03992011-08-09 00:01:09 +00003149 {
Greg Claytonc4a8a762012-05-15 18:43:44 +00003150 if (use_global_module_list)
3151 {
3152 locker.Lock (Module::GetAllocationModuleCollectionMutex());
3153 num_modules = Module::GetNumberAllocatedModules();
3154 }
3155 else
3156 {
3157 module_list_ptr = &target->GetImages();
Greg Claytonc4a8a762012-05-15 18:43:44 +00003158 }
Greg Clayton65a03992011-08-09 00:01:09 +00003159 }
3160 else
Greg Claytonc4a8a762012-05-15 18:43:44 +00003161 {
3162 for (size_t i=0; i<argc; ++i)
3163 {
3164 // Dump specified images (by basename or fullpath)
3165 const char *arg_cstr = command.GetArgumentAtIndex(i);
3166 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, use_global_module_list);
3167 if (num_matches == 0)
3168 {
3169 if (argc == 1)
3170 {
3171 result.AppendErrorWithFormat ("no modules found that match '%s'", arg_cstr);
3172 result.SetStatus (eReturnStatusFailed);
3173 return false;
3174 }
3175 }
3176 }
3177
Greg Claytonc4a8a762012-05-15 18:43:44 +00003178 module_list_ptr = &module_list;
3179 }
Jim Ingham3ee12ef2012-05-30 02:19:25 +00003180
3181 if (module_list_ptr != NULL)
3182 {
3183 locker.Lock(module_list_ptr->GetMutex());
3184 num_modules = module_list_ptr->GetSize();
3185 }
Greg Clayton65a03992011-08-09 00:01:09 +00003186
Greg Claytoneffe5c92011-05-03 22:09:39 +00003187 if (num_modules > 0)
Jim Inghamc10312c2011-10-24 18:36:33 +00003188 {
Greg Claytoneffe5c92011-05-03 22:09:39 +00003189 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
3190 {
Greg Clayton3418c852011-08-10 02:10:13 +00003191 ModuleSP module_sp;
Greg Clayton65a03992011-08-09 00:01:09 +00003192 Module *module;
Greg Claytonc4a8a762012-05-15 18:43:44 +00003193 if (module_list_ptr)
Greg Clayton65a03992011-08-09 00:01:09 +00003194 {
Jim Ingham3ee12ef2012-05-30 02:19:25 +00003195 module_sp = module_list_ptr->GetModuleAtIndexUnlocked(image_idx);
Greg Claytonc4a8a762012-05-15 18:43:44 +00003196 module = module_sp.get();
Greg Clayton65a03992011-08-09 00:01:09 +00003197 }
3198 else
3199 {
Greg Claytonc4a8a762012-05-15 18:43:44 +00003200 module = Module::GetAllocatedModuleAtIndex(image_idx);
3201 module_sp = module->shared_from_this();
Greg Clayton65a03992011-08-09 00:01:09 +00003202 }
Jim Inghamc10312c2011-10-24 18:36:33 +00003203
Greg Claytonc7bece562013-01-25 18:06:21 +00003204 const size_t indent = strm.Printf("[%3u] ", image_idx);
3205 PrintModule (target, module, indent, strm);
Greg Clayton3418c852011-08-10 02:10:13 +00003206
Greg Claytoneffe5c92011-05-03 22:09:39 +00003207 }
3208 result.SetStatus (eReturnStatusSuccessFinishResult);
3209 }
3210 else
3211 {
Greg Claytonc4a8a762012-05-15 18:43:44 +00003212 if (argc)
3213 {
3214 if (use_global_module_list)
3215 result.AppendError ("the global module list has no matching modules");
3216 else
3217 result.AppendError ("the target has no matching modules");
3218 }
Greg Clayton3418c852011-08-10 02:10:13 +00003219 else
Greg Claytonc4a8a762012-05-15 18:43:44 +00003220 {
3221 if (use_global_module_list)
3222 result.AppendError ("the global module list is empty");
3223 else
3224 result.AppendError ("the target has no associated executable images");
3225 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00003226 result.SetStatus (eReturnStatusFailed);
3227 return false;
3228 }
3229 }
3230 return result.Succeeded();
3231 }
Jim Inghamc10312c2011-10-24 18:36:33 +00003232
3233 void
Greg Claytonc7bece562013-01-25 18:06:21 +00003234 PrintModule (Target *target, Module *module, int indent, Stream &strm)
Jim Inghamc10312c2011-10-24 18:36:33 +00003235 {
3236
Jim Ingham28eb5712012-10-12 17:34:26 +00003237 if (module == NULL)
3238 {
3239 strm.PutCString("Null module");
3240 return;
3241 }
3242
Jim Inghamc10312c2011-10-24 18:36:33 +00003243 bool dump_object_name = false;
3244 if (m_options.m_format_array.empty())
3245 {
Greg Claytonc9660542012-02-05 02:38:54 +00003246 m_options.m_format_array.push_back(std::make_pair('u', 0));
3247 m_options.m_format_array.push_back(std::make_pair('h', 0));
3248 m_options.m_format_array.push_back(std::make_pair('f', 0));
3249 m_options.m_format_array.push_back(std::make_pair('S', 0));
Jim Inghamc10312c2011-10-24 18:36:33 +00003250 }
Greg Claytonc9660542012-02-05 02:38:54 +00003251 const size_t num_entries = m_options.m_format_array.size();
3252 bool print_space = false;
3253 for (size_t i=0; i<num_entries; ++i)
Jim Inghamc10312c2011-10-24 18:36:33 +00003254 {
Greg Claytonc9660542012-02-05 02:38:54 +00003255 if (print_space)
3256 strm.PutChar(' ');
3257 print_space = true;
3258 const char format_char = m_options.m_format_array[i].first;
3259 uint32_t width = m_options.m_format_array[i].second;
3260 switch (format_char)
Jim Inghamc10312c2011-10-24 18:36:33 +00003261 {
Greg Claytonc9660542012-02-05 02:38:54 +00003262 case 'A':
3263 DumpModuleArchitecture (strm, module, false, width);
3264 break;
3265
3266 case 't':
3267 DumpModuleArchitecture (strm, module, true, width);
3268 break;
3269
3270 case 'f':
3271 DumpFullpath (strm, &module->GetFileSpec(), width);
3272 dump_object_name = true;
3273 break;
3274
3275 case 'd':
3276 DumpDirectory (strm, &module->GetFileSpec(), width);
3277 break;
3278
3279 case 'b':
3280 DumpBasename (strm, &module->GetFileSpec(), width);
3281 dump_object_name = true;
3282 break;
3283
3284 case 'h':
3285 case 'o':
3286 // Image header address
3287 {
3288 uint32_t addr_nibble_width = target ? (target->GetArchitecture().GetAddressByteSize() * 2) : 16;
Jim Inghamc10312c2011-10-24 18:36:33 +00003289
Greg Claytonc9660542012-02-05 02:38:54 +00003290 ObjectFile *objfile = module->GetObjectFile ();
3291 if (objfile)
Jim Inghamc10312c2011-10-24 18:36:33 +00003292 {
Greg Claytonc9660542012-02-05 02:38:54 +00003293 Address header_addr(objfile->GetHeaderAddress());
3294 if (header_addr.IsValid())
Jim Inghamc10312c2011-10-24 18:36:33 +00003295 {
Greg Claytonc9660542012-02-05 02:38:54 +00003296 if (target && !target->GetSectionLoadList().IsEmpty())
Jim Inghamc10312c2011-10-24 18:36:33 +00003297 {
Greg Claytonc9660542012-02-05 02:38:54 +00003298 lldb::addr_t header_load_addr = header_addr.GetLoadAddress (target);
3299 if (header_load_addr == LLDB_INVALID_ADDRESS)
3300 {
3301 header_addr.Dump (&strm, target, Address::DumpStyleModuleWithFileAddress, Address::DumpStyleFileAddress);
3302 }
Jim Inghamc10312c2011-10-24 18:36:33 +00003303 else
Greg Claytonc9660542012-02-05 02:38:54 +00003304 {
3305 if (format_char == 'o')
3306 {
3307 // Show the offset of slide for the image
Daniel Malead01b2952012-11-29 21:49:15 +00003308 strm.Printf ("0x%*.*" PRIx64, addr_nibble_width, addr_nibble_width, header_load_addr - header_addr.GetFileAddress());
Greg Claytonc9660542012-02-05 02:38:54 +00003309 }
3310 else
3311 {
3312 // Show the load address of the image
Daniel Malead01b2952012-11-29 21:49:15 +00003313 strm.Printf ("0x%*.*" PRIx64, addr_nibble_width, addr_nibble_width, header_load_addr);
Greg Claytonc9660542012-02-05 02:38:54 +00003314 }
3315 }
Jim Inghamc10312c2011-10-24 18:36:33 +00003316 break;
3317 }
Greg Claytonc9660542012-02-05 02:38:54 +00003318 // The address was valid, but the image isn't loaded, output the address in an appropriate format
3319 header_addr.Dump (&strm, target, Address::DumpStyleFileAddress);
3320 break;
Jim Inghamc10312c2011-10-24 18:36:33 +00003321 }
Jim Inghamc10312c2011-10-24 18:36:33 +00003322 }
Greg Claytonc9660542012-02-05 02:38:54 +00003323 strm.Printf ("%*s", addr_nibble_width + 2, "");
3324 }
3325 break;
3326 case 'r':
3327 {
Greg Claytonc7bece562013-01-25 18:06:21 +00003328 size_t ref_count = 0;
Greg Claytonc9660542012-02-05 02:38:54 +00003329 ModuleSP module_sp (module->shared_from_this());
3330 if (module_sp)
3331 {
3332 // Take one away to make sure we don't count our local "module_sp"
3333 ref_count = module_sp.use_count() - 1;
3334 }
3335 if (width)
Greg Claytonc7bece562013-01-25 18:06:21 +00003336 strm.Printf("{%*zu}", width, ref_count);
Greg Claytonc9660542012-02-05 02:38:54 +00003337 else
Greg Claytonc7bece562013-01-25 18:06:21 +00003338 strm.Printf("{%zu}", ref_count);
Greg Claytonc9660542012-02-05 02:38:54 +00003339 }
3340 break;
Jim Inghamc10312c2011-10-24 18:36:33 +00003341
Greg Claytonc9660542012-02-05 02:38:54 +00003342 case 's':
3343 case 'S':
3344 {
3345 SymbolVendor *symbol_vendor = module->GetSymbolVendor();
3346 if (symbol_vendor)
3347 {
3348 SymbolFile *symbol_file = symbol_vendor->GetSymbolFile();
3349 if (symbol_file)
3350 {
3351 if (format_char == 'S')
3352 {
3353 FileSpec &symfile_spec = symbol_file->GetObjectFile()->GetFileSpec();
3354 // Dump symbol file only if different from module file
3355 if (!symfile_spec || symfile_spec == module->GetFileSpec())
3356 {
3357 print_space = false;
3358 break;
3359 }
3360 // Add a newline and indent past the index
3361 strm.Printf ("\n%*s", indent, "");
3362 }
3363 DumpFullpath (strm, &symbol_file->GetObjectFile()->GetFileSpec(), width);
3364 dump_object_name = true;
3365 break;
3366 }
3367 }
3368 strm.Printf("%.*s", width, "<NONE>");
3369 }
3370 break;
3371
3372 case 'm':
3373 module->GetModificationTime().Dump(&strm, width);
3374 break;
Jim Inghamc10312c2011-10-24 18:36:33 +00003375
Greg Claytonc9660542012-02-05 02:38:54 +00003376 case 'p':
3377 strm.Printf("%p", module);
3378 break;
3379
3380 case 'u':
3381 DumpModuleUUID(strm, module);
3382 break;
3383
3384 default:
3385 break;
Jim Inghamc10312c2011-10-24 18:36:33 +00003386 }
Greg Claytonc9660542012-02-05 02:38:54 +00003387
3388 }
3389 if (dump_object_name)
3390 {
3391 const char *object_name = module->GetObjectName().GetCString();
3392 if (object_name)
3393 strm.Printf ("(%s)", object_name);
Jim Inghamc10312c2011-10-24 18:36:33 +00003394 }
3395 strm.EOL();
3396 }
3397
Greg Claytoneffe5c92011-05-03 22:09:39 +00003398 CommandOptions m_options;
3399};
3400
3401OptionDefinition
3402CommandObjectTargetModulesList::CommandOptions::g_option_table[] =
3403{
Enrico Granatab84a9db2013-01-29 01:48:30 +00003404 { LLDB_OPT_SET_1, false, "address", 'a', required_argument, NULL, 0, eArgTypeAddressOrExpression, "Display the image at this address."},
Jim Inghamc10312c2011-10-24 18:36:33 +00003405 { LLDB_OPT_SET_1, false, "arch", 'A', optional_argument, NULL, 0, eArgTypeWidth, "Display the architecture when listing images."},
Greg Claytoneffe5c92011-05-03 22:09:39 +00003406 { LLDB_OPT_SET_1, false, "triple", 't', optional_argument, NULL, 0, eArgTypeWidth, "Display the triple when listing images."},
Greg Claytonc9660542012-02-05 02:38:54 +00003407 { LLDB_OPT_SET_1, false, "header", 'h', no_argument, NULL, 0, eArgTypeNone, "Display the image header address as a load address if debugging, a file address otherwise."},
3408 { LLDB_OPT_SET_1, false, "offset", 'o', no_argument, NULL, 0, eArgTypeNone, "Display the image header address offset from the header file address (the slide amount)."},
Greg Claytoneffe5c92011-05-03 22:09:39 +00003409 { LLDB_OPT_SET_1, false, "uuid", 'u', no_argument, NULL, 0, eArgTypeNone, "Display the UUID when listing images."},
3410 { LLDB_OPT_SET_1, false, "fullpath", 'f', optional_argument, NULL, 0, eArgTypeWidth, "Display the fullpath to the image object file."},
3411 { LLDB_OPT_SET_1, false, "directory", 'd', optional_argument, NULL, 0, eArgTypeWidth, "Display the directory with optional width for the image object file."},
3412 { LLDB_OPT_SET_1, false, "basename", 'b', optional_argument, NULL, 0, eArgTypeWidth, "Display the basename with optional width for the image object file."},
3413 { LLDB_OPT_SET_1, false, "symfile", 's', optional_argument, NULL, 0, eArgTypeWidth, "Display the fullpath to the image symbol file with optional width."},
Greg Claytonc9660542012-02-05 02:38:54 +00003414 { LLDB_OPT_SET_1, false, "symfile-unique", 'S', optional_argument, NULL, 0, eArgTypeWidth, "Display the symbol file with optional width only if it is different from the executable object file."},
Greg Clayton3418c852011-08-10 02:10:13 +00003415 { LLDB_OPT_SET_1, false, "mod-time", 'm', optional_argument, NULL, 0, eArgTypeWidth, "Display the modification time with optional width of the module."},
3416 { LLDB_OPT_SET_1, false, "ref-count", 'r', optional_argument, NULL, 0, eArgTypeWidth, "Display the reference count if the module is still in the shared module cache."},
3417 { LLDB_OPT_SET_1, false, "pointer", 'p', optional_argument, NULL, 0, eArgTypeNone, "Display the module pointer."},
Greg Clayton65a03992011-08-09 00:01:09 +00003418 { LLDB_OPT_SET_1, false, "global", 'g', no_argument, NULL, 0, eArgTypeNone, "Display the modules from the global module list, not just the current target."},
Greg Claytoneffe5c92011-05-03 22:09:39 +00003419 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
3420};
3421
Jason Molenda380241a2012-07-12 00:20:07 +00003422#pragma mark CommandObjectTargetModulesShowUnwind
Greg Claytoneffe5c92011-05-03 22:09:39 +00003423
Jason Molenda380241a2012-07-12 00:20:07 +00003424//----------------------------------------------------------------------
3425// Lookup unwind information in images
3426//----------------------------------------------------------------------
3427
3428class CommandObjectTargetModulesShowUnwind : public CommandObjectParsed
3429{
3430public:
3431
3432 enum
3433 {
3434 eLookupTypeInvalid = -1,
3435 eLookupTypeAddress = 0,
3436 eLookupTypeSymbol,
3437 eLookupTypeFunction,
3438 eLookupTypeFunctionOrSymbol,
3439 kNumLookupTypes
3440 };
3441
3442 class CommandOptions : public Options
3443 {
3444 public:
3445
3446 CommandOptions (CommandInterpreter &interpreter) :
Greg Claytonf9fc6092013-01-09 19:44:40 +00003447 Options(interpreter),
3448 m_type(eLookupTypeInvalid),
3449 m_str(),
3450 m_addr(LLDB_INVALID_ADDRESS)
Jason Molenda380241a2012-07-12 00:20:07 +00003451 {
3452 }
3453
3454 virtual
3455 ~CommandOptions ()
3456 {
3457 }
3458
3459 virtual Error
3460 SetOptionValue (uint32_t option_idx, const char *option_arg)
3461 {
3462 Error error;
3463
Greg Clayton3bcdfc02012-12-04 00:32:51 +00003464 const int short_option = m_getopt_table[option_idx].val;
Jason Molenda380241a2012-07-12 00:20:07 +00003465
3466 switch (short_option)
3467 {
3468 case 'a':
Jason Molenda535ab862013-04-23 04:30:57 +00003469 {
3470 ExecutionContext exe_ctx (m_interpreter.GetExecutionContext());
Michael Sartainb1e15922013-08-22 20:42:30 +00003471 m_str = option_arg;
Jason Molenda380241a2012-07-12 00:20:07 +00003472 m_type = eLookupTypeAddress;
Jason Molenda535ab862013-04-23 04:30:57 +00003473 m_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
Jason Molenda380241a2012-07-12 00:20:07 +00003474 if (m_addr == LLDB_INVALID_ADDRESS)
3475 error.SetErrorStringWithFormat ("invalid address string '%s'", option_arg);
3476 break;
Jason Molenda535ab862013-04-23 04:30:57 +00003477 }
Jason Molenda380241a2012-07-12 00:20:07 +00003478
3479 case 'n':
Jason Molenda535ab862013-04-23 04:30:57 +00003480 {
Jason Molenda380241a2012-07-12 00:20:07 +00003481 m_str = option_arg;
3482 m_type = eLookupTypeFunctionOrSymbol;
3483 break;
Jason Molenda535ab862013-04-23 04:30:57 +00003484 }
Michael Sartainb1e15922013-08-22 20:42:30 +00003485
3486 default:
3487 error.SetErrorStringWithFormat ("unrecognized option %c.", short_option);
3488 break;
Jason Molenda380241a2012-07-12 00:20:07 +00003489 }
3490
3491 return error;
3492 }
3493
3494 void
3495 OptionParsingStarting ()
3496 {
3497 m_type = eLookupTypeInvalid;
3498 m_str.clear();
3499 m_addr = LLDB_INVALID_ADDRESS;
3500 }
3501
3502 const OptionDefinition*
3503 GetDefinitions ()
3504 {
3505 return g_option_table;
3506 }
3507
3508 // Options table: Required for subclasses of Options.
3509
3510 static OptionDefinition g_option_table[];
3511
3512 // Instance variables to hold the values for command options.
3513
3514 int m_type; // Should be a eLookupTypeXXX enum after parsing options
3515 std::string m_str; // Holds name lookup
3516 lldb::addr_t m_addr; // Holds the address to lookup
3517 };
3518
3519 CommandObjectTargetModulesShowUnwind (CommandInterpreter &interpreter) :
3520 CommandObjectParsed (interpreter,
3521 "target modules show-unwind",
3522 "Show synthesized unwind instructions for a function.",
Greg Claytonf9fc6092013-01-09 19:44:40 +00003523 NULL,
3524 eFlagRequiresTarget |
3525 eFlagRequiresProcess |
3526 eFlagProcessMustBeLaunched |
3527 eFlagProcessMustBePaused ),
Jason Molenda380241a2012-07-12 00:20:07 +00003528 m_options (interpreter)
3529 {
3530 }
3531
3532 virtual
3533 ~CommandObjectTargetModulesShowUnwind ()
3534 {
3535 }
3536
3537 virtual
3538 Options *
3539 GetOptions ()
3540 {
3541 return &m_options;
3542 }
3543
3544protected:
3545 bool
3546 DoExecute (Args& command,
3547 CommandReturnObject &result)
3548 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00003549 Target *target = m_exe_ctx.GetTargetPtr();
3550 Process *process = m_exe_ctx.GetProcessPtr();
Jason Molenda380241a2012-07-12 00:20:07 +00003551 ABI *abi = NULL;
3552 if (process)
3553 abi = process->GetABI().get();
3554
3555 if (process == NULL)
3556 {
3557 result.AppendError ("You must have a process running to use this command.");
3558 result.SetStatus (eReturnStatusFailed);
3559 return false;
3560 }
3561
3562 ThreadList threads(process->GetThreadList());
3563 if (threads.GetSize() == 0)
3564 {
3565 result.AppendError ("The process must be paused to use this command.");
3566 result.SetStatus (eReturnStatusFailed);
3567 return false;
3568 }
3569
3570 ThreadSP thread(threads.GetThreadAtIndex(0));
3571 if (thread.get() == NULL)
3572 {
3573 result.AppendError ("The process must be paused to use this command.");
3574 result.SetStatus (eReturnStatusFailed);
3575 return false;
3576 }
3577
Jason Molenda535ab862013-04-23 04:30:57 +00003578 SymbolContextList sc_list;
3579
Jason Molenda380241a2012-07-12 00:20:07 +00003580 if (m_options.m_type == eLookupTypeFunctionOrSymbol)
3581 {
Jason Molenda380241a2012-07-12 00:20:07 +00003582 ConstString function_name (m_options.m_str.c_str());
Jason Molenda535ab862013-04-23 04:30:57 +00003583 target->GetImages().FindFunctions (function_name, eFunctionNameTypeAuto, true, false, true, sc_list);
3584 }
3585 else if (m_options.m_type == eLookupTypeAddress && target)
3586 {
3587 Address addr;
3588 if (target->GetSectionLoadList().ResolveLoadAddress (m_options.m_addr, addr))
Jason Molenda380241a2012-07-12 00:20:07 +00003589 {
3590 SymbolContext sc;
Jason Molenda535ab862013-04-23 04:30:57 +00003591 ModuleSP module_sp (addr.GetModule());
3592 module_sp->ResolveSymbolContextForAddress (addr, eSymbolContextEverything, sc);
3593 if (sc.function || sc.symbol)
Jason Molenda380241a2012-07-12 00:20:07 +00003594 {
Jason Molenda535ab862013-04-23 04:30:57 +00003595 sc_list.Append(sc);
Jason Molenda380241a2012-07-12 00:20:07 +00003596 }
Jason Molenda535ab862013-04-23 04:30:57 +00003597 }
3598 }
Michael Sartainb1e15922013-08-22 20:42:30 +00003599 else
3600 {
3601 result.AppendError ("address-expression or function name option must be specified.");
3602 result.SetStatus (eReturnStatusFailed);
3603 return false;
3604 }
Jason Molenda380241a2012-07-12 00:20:07 +00003605
Jason Molenda535ab862013-04-23 04:30:57 +00003606 size_t num_matches = sc_list.GetSize();
Michael Sartainb1e15922013-08-22 20:42:30 +00003607 if (num_matches == 0)
3608 {
3609 result.AppendErrorWithFormat ("no unwind data found that matches '%s'.", m_options.m_str.c_str());
3610 result.SetStatus (eReturnStatusFailed);
3611 return false;
3612 }
3613
Jason Molenda535ab862013-04-23 04:30:57 +00003614 for (uint32_t idx = 0; idx < num_matches; idx++)
3615 {
3616 SymbolContext sc;
3617 sc_list.GetContextAtIndex(idx, sc);
3618 if (sc.symbol == NULL && sc.function == NULL)
3619 continue;
3620 if (sc.module_sp.get() == NULL || sc.module_sp->GetObjectFile() == NULL)
3621 continue;
3622 AddressRange range;
3623 if (!sc.GetAddressRange (eSymbolContextFunction | eSymbolContextSymbol, 0, false, range))
3624 continue;
3625 if (!range.GetBaseAddress().IsValid())
3626 continue;
3627 ConstString funcname(sc.GetFunctionName());
3628 if (funcname.IsEmpty())
3629 continue;
3630 addr_t start_addr = range.GetBaseAddress().GetLoadAddress(target);
3631 if (abi)
3632 start_addr = abi->FixCodeAddress(start_addr);
Jason Molenda380241a2012-07-12 00:20:07 +00003633
Jason Molenda535ab862013-04-23 04:30:57 +00003634 FuncUnwindersSP func_unwinders_sp (sc.module_sp->GetObjectFile()->GetUnwindTable().GetUncachedFuncUnwindersContainingAddress(start_addr, sc));
3635 if (func_unwinders_sp.get() == NULL)
3636 continue;
Jason Molenda380241a2012-07-12 00:20:07 +00003637
Jason Molenda535ab862013-04-23 04:30:57 +00003638 Address first_non_prologue_insn (func_unwinders_sp->GetFirstNonPrologueInsn(*target));
3639 if (first_non_prologue_insn.IsValid())
3640 {
3641 result.GetOutputStream().Printf("First non-prologue instruction is at address 0x%" PRIx64 " or offset %" PRId64 " into the function.\n", first_non_prologue_insn.GetLoadAddress(target), first_non_prologue_insn.GetLoadAddress(target) - start_addr);
Jason Molenda380241a2012-07-12 00:20:07 +00003642 result.GetOutputStream().Printf ("\n");
3643 }
Jason Molenda535ab862013-04-23 04:30:57 +00003644
3645 UnwindPlanSP non_callsite_unwind_plan = func_unwinders_sp->GetUnwindPlanAtNonCallSite(*thread.get());
3646 if (non_callsite_unwind_plan.get())
3647 {
3648 result.GetOutputStream().Printf("Asynchronous (not restricted to call-sites) UnwindPlan for %s`%s (start addr 0x%" PRIx64 "):\n", sc.module_sp->GetPlatformFileSpec().GetFilename().AsCString(), funcname.AsCString(), start_addr);
3649 non_callsite_unwind_plan->Dump(result.GetOutputStream(), thread.get(), LLDB_INVALID_ADDRESS);
3650 result.GetOutputStream().Printf ("\n");
3651 }
3652
3653 UnwindPlanSP callsite_unwind_plan = func_unwinders_sp->GetUnwindPlanAtCallSite(-1);
3654 if (callsite_unwind_plan.get())
3655 {
3656 result.GetOutputStream().Printf("Synchronous (restricted to call-sites) UnwindPlan for %s`%s (start addr 0x%" PRIx64 "):\n", sc.module_sp->GetPlatformFileSpec().GetFilename().AsCString(), funcname.AsCString(), start_addr);
3657 callsite_unwind_plan->Dump(result.GetOutputStream(), thread.get(), LLDB_INVALID_ADDRESS);
3658 result.GetOutputStream().Printf ("\n");
3659 }
3660
3661 UnwindPlanSP arch_default_unwind_plan = func_unwinders_sp->GetUnwindPlanArchitectureDefault(*thread.get());
3662 if (arch_default_unwind_plan.get())
3663 {
3664 result.GetOutputStream().Printf("Architecture default UnwindPlan for %s`%s (start addr 0x%" PRIx64 "):\n", sc.module_sp->GetPlatformFileSpec().GetFilename().AsCString(), funcname.AsCString(), start_addr);
3665 arch_default_unwind_plan->Dump(result.GetOutputStream(), thread.get(), LLDB_INVALID_ADDRESS);
3666 result.GetOutputStream().Printf ("\n");
3667 }
3668
3669 UnwindPlanSP fast_unwind_plan = func_unwinders_sp->GetUnwindPlanFastUnwind(*thread.get());
3670 if (fast_unwind_plan.get())
3671 {
3672 result.GetOutputStream().Printf("Fast UnwindPlan for %s`%s (start addr 0x%" PRIx64 "):\n", sc.module_sp->GetPlatformFileSpec().GetFilename().AsCString(), funcname.AsCString(), start_addr);
3673 fast_unwind_plan->Dump(result.GetOutputStream(), thread.get(), LLDB_INVALID_ADDRESS);
3674 result.GetOutputStream().Printf ("\n");
3675 }
3676
3677
3678 result.GetOutputStream().Printf ("\n");
Jason Molenda380241a2012-07-12 00:20:07 +00003679 }
3680 return result.Succeeded();
3681 }
3682
3683 CommandOptions m_options;
3684};
3685
3686OptionDefinition
3687CommandObjectTargetModulesShowUnwind::CommandOptions::g_option_table[] =
3688{
Jason Molenda535ab862013-04-23 04:30:57 +00003689 { LLDB_OPT_SET_1, false, "name", 'n', required_argument, NULL, 0, eArgTypeFunctionName, "Show unwind instructions for a function or symbol name."},
3690 { LLDB_OPT_SET_2, false, "address", 'a', required_argument, NULL, 0, eArgTypeAddressOrExpression, "Show unwind instructions for a function or symbol containing an address"},
Jason Molenda380241a2012-07-12 00:20:07 +00003691 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
3692};
Greg Claytoneffe5c92011-05-03 22:09:39 +00003693
3694//----------------------------------------------------------------------
3695// Lookup information in images
3696//----------------------------------------------------------------------
Jim Ingham5a988412012-06-08 21:56:10 +00003697class CommandObjectTargetModulesLookup : public CommandObjectParsed
Greg Claytoneffe5c92011-05-03 22:09:39 +00003698{
3699public:
3700
3701 enum
3702 {
3703 eLookupTypeInvalid = -1,
3704 eLookupTypeAddress = 0,
3705 eLookupTypeSymbol,
3706 eLookupTypeFileLine, // Line is optional
3707 eLookupTypeFunction,
Greg Claytonc4a8a762012-05-15 18:43:44 +00003708 eLookupTypeFunctionOrSymbol,
Greg Claytoneffe5c92011-05-03 22:09:39 +00003709 eLookupTypeType,
3710 kNumLookupTypes
3711 };
3712
3713 class CommandOptions : public Options
3714 {
3715 public:
3716
3717 CommandOptions (CommandInterpreter &interpreter) :
3718 Options(interpreter)
3719 {
3720 OptionParsingStarting();
3721 }
3722
3723 virtual
3724 ~CommandOptions ()
3725 {
3726 }
3727
3728 virtual Error
3729 SetOptionValue (uint32_t option_idx, const char *option_arg)
3730 {
3731 Error error;
3732
Greg Clayton3bcdfc02012-12-04 00:32:51 +00003733 const int short_option = m_getopt_table[option_idx].val;
Greg Claytoneffe5c92011-05-03 22:09:39 +00003734
3735 switch (short_option)
3736 {
3737 case 'a':
Jim Inghame7b849e2013-03-15 23:09:19 +00003738 {
3739 m_type = eLookupTypeAddress;
3740 ExecutionContext exe_ctx (m_interpreter.GetExecutionContext());
3741 m_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
3742 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00003743 break;
3744
3745 case 'o':
3746 m_offset = Args::StringToUInt64(option_arg, LLDB_INVALID_ADDRESS);
3747 if (m_offset == LLDB_INVALID_ADDRESS)
Greg Clayton86edbf42011-10-26 00:56:27 +00003748 error.SetErrorStringWithFormat ("invalid offset string '%s'", option_arg);
Greg Claytoneffe5c92011-05-03 22:09:39 +00003749 break;
3750
3751 case 's':
3752 m_str = option_arg;
3753 m_type = eLookupTypeSymbol;
3754 break;
3755
3756 case 'f':
3757 m_file.SetFile (option_arg, false);
3758 m_type = eLookupTypeFileLine;
3759 break;
3760
3761 case 'i':
Sean Callanand4a7c122012-02-11 01:22:21 +00003762 m_include_inlines = false;
Greg Claytoneffe5c92011-05-03 22:09:39 +00003763 break;
3764
3765 case 'l':
3766 m_line_number = Args::StringToUInt32(option_arg, UINT32_MAX);
3767 if (m_line_number == UINT32_MAX)
Greg Clayton86edbf42011-10-26 00:56:27 +00003768 error.SetErrorStringWithFormat ("invalid line number string '%s'", option_arg);
Greg Claytoneffe5c92011-05-03 22:09:39 +00003769 else if (m_line_number == 0)
Greg Clayton86edbf42011-10-26 00:56:27 +00003770 error.SetErrorString ("zero is an invalid line number");
Greg Claytoneffe5c92011-05-03 22:09:39 +00003771 m_type = eLookupTypeFileLine;
3772 break;
3773
Greg Claytonc4a8a762012-05-15 18:43:44 +00003774 case 'F':
Greg Claytoneffe5c92011-05-03 22:09:39 +00003775 m_str = option_arg;
3776 m_type = eLookupTypeFunction;
3777 break;
Greg Claytonc4a8a762012-05-15 18:43:44 +00003778
3779 case 'n':
3780 m_str = option_arg;
3781 m_type = eLookupTypeFunctionOrSymbol;
3782 break;
3783
Greg Claytoneffe5c92011-05-03 22:09:39 +00003784 case 't':
3785 m_str = option_arg;
3786 m_type = eLookupTypeType;
3787 break;
3788
3789 case 'v':
3790 m_verbose = 1;
3791 break;
Sean Callanand38b4a92012-06-06 20:49:55 +00003792
3793 case 'A':
3794 m_print_all = true;
3795 break;
Greg Claytoneffe5c92011-05-03 22:09:39 +00003796
3797 case 'r':
3798 m_use_regex = true;
3799 break;
3800 }
3801
3802 return error;
3803 }
3804
3805 void
3806 OptionParsingStarting ()
3807 {
3808 m_type = eLookupTypeInvalid;
3809 m_str.clear();
3810 m_file.Clear();
3811 m_addr = LLDB_INVALID_ADDRESS;
3812 m_offset = 0;
3813 m_line_number = 0;
3814 m_use_regex = false;
Sean Callanand4a7c122012-02-11 01:22:21 +00003815 m_include_inlines = true;
Greg Claytoneffe5c92011-05-03 22:09:39 +00003816 m_verbose = false;
Sean Callanand38b4a92012-06-06 20:49:55 +00003817 m_print_all = false;
Greg Claytoneffe5c92011-05-03 22:09:39 +00003818 }
3819
3820 const OptionDefinition*
3821 GetDefinitions ()
3822 {
3823 return g_option_table;
3824 }
3825
3826 // Options table: Required for subclasses of Options.
3827
3828 static OptionDefinition g_option_table[];
3829 int m_type; // Should be a eLookupTypeXXX enum after parsing options
3830 std::string m_str; // Holds name lookup
3831 FileSpec m_file; // Files for file lookups
3832 lldb::addr_t m_addr; // Holds the address to lookup
3833 lldb::addr_t m_offset; // Subtract this offset from m_addr before doing lookups.
3834 uint32_t m_line_number; // Line number for file+line lookups
3835 bool m_use_regex; // Name lookups in m_str are regular expressions.
Sean Callanand4a7c122012-02-11 01:22:21 +00003836 bool m_include_inlines;// Check for inline entries when looking up by file/line.
Greg Claytoneffe5c92011-05-03 22:09:39 +00003837 bool m_verbose; // Enable verbose lookup info
Sean Callanand38b4a92012-06-06 20:49:55 +00003838 bool m_print_all; // Print all matches, even in cases where there's a best match.
Greg Claytoneffe5c92011-05-03 22:09:39 +00003839
3840 };
3841
3842 CommandObjectTargetModulesLookup (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00003843 CommandObjectParsed (interpreter,
3844 "target modules lookup",
3845 "Look up information within executable and dependent shared library images.",
Greg Claytonf9fc6092013-01-09 19:44:40 +00003846 NULL,
3847 eFlagRequiresTarget),
Jim Ingham5a988412012-06-08 21:56:10 +00003848 m_options (interpreter)
Greg Claytoneffe5c92011-05-03 22:09:39 +00003849 {
3850 CommandArgumentEntry arg;
3851 CommandArgumentData file_arg;
3852
3853 // Define the first (and only) variant of this arg.
3854 file_arg.arg_type = eArgTypeFilename;
3855 file_arg.arg_repetition = eArgRepeatStar;
3856
3857 // There is only one variant this argument could be; put it into the argument entry.
3858 arg.push_back (file_arg);
3859
3860 // Push the data for the first argument into the m_arguments vector.
3861 m_arguments.push_back (arg);
3862 }
3863
3864 virtual
3865 ~CommandObjectTargetModulesLookup ()
3866 {
3867 }
3868
3869 virtual Options *
3870 GetOptions ()
3871 {
3872 return &m_options;
3873 }
3874
Sean Callanand38b4a92012-06-06 20:49:55 +00003875 bool
3876 LookupHere (CommandInterpreter &interpreter, CommandReturnObject &result, bool &syntax_error)
3877 {
3878 switch (m_options.m_type)
3879 {
3880 case eLookupTypeAddress:
3881 case eLookupTypeFileLine:
3882 case eLookupTypeFunction:
3883 case eLookupTypeFunctionOrSymbol:
3884 case eLookupTypeSymbol:
3885 default:
3886 return false;
3887 case eLookupTypeType:
3888 break;
3889 }
3890
Greg Claytonf9fc6092013-01-09 19:44:40 +00003891 StackFrameSP frame = m_exe_ctx.GetFrameSP();
Sean Callanand38b4a92012-06-06 20:49:55 +00003892
3893 if (!frame)
3894 return false;
3895
3896 const SymbolContext &sym_ctx(frame->GetSymbolContext(eSymbolContextModule));
3897
3898 if (!sym_ctx.module_sp)
3899 return false;
3900
3901 switch (m_options.m_type)
3902 {
3903 default:
3904 return false;
3905 case eLookupTypeType:
3906 if (!m_options.m_str.empty())
3907 {
3908 if (LookupTypeHere (m_interpreter,
3909 result.GetOutputStream(),
3910 sym_ctx,
3911 m_options.m_str.c_str(),
3912 m_options.m_use_regex))
3913 {
3914 result.SetStatus(eReturnStatusSuccessFinishResult);
3915 return true;
3916 }
3917 }
3918 break;
3919 }
3920
3921 return true;
3922 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00003923
3924 bool
3925 LookupInModule (CommandInterpreter &interpreter, Module *module, CommandReturnObject &result, bool &syntax_error)
3926 {
3927 switch (m_options.m_type)
3928 {
3929 case eLookupTypeAddress:
3930 if (m_options.m_addr != LLDB_INVALID_ADDRESS)
3931 {
3932 if (LookupAddressInModule (m_interpreter,
3933 result.GetOutputStream(),
3934 module,
3935 eSymbolContextEverything,
3936 m_options.m_addr,
3937 m_options.m_offset,
3938 m_options.m_verbose))
3939 {
3940 result.SetStatus(eReturnStatusSuccessFinishResult);
3941 return true;
3942 }
3943 }
3944 break;
3945
3946 case eLookupTypeSymbol:
3947 if (!m_options.m_str.empty())
3948 {
Greg Claytonc4a8a762012-05-15 18:43:44 +00003949 if (LookupSymbolInModule (m_interpreter,
3950 result.GetOutputStream(),
3951 module,
3952 m_options.m_str.c_str(),
3953 m_options.m_use_regex,
3954 m_options.m_verbose))
Greg Claytoneffe5c92011-05-03 22:09:39 +00003955 {
3956 result.SetStatus(eReturnStatusSuccessFinishResult);
3957 return true;
3958 }
3959 }
3960 break;
3961
3962 case eLookupTypeFileLine:
3963 if (m_options.m_file)
3964 {
3965
3966 if (LookupFileAndLineInModule (m_interpreter,
3967 result.GetOutputStream(),
3968 module,
3969 m_options.m_file,
3970 m_options.m_line_number,
Sean Callanand4a7c122012-02-11 01:22:21 +00003971 m_options.m_include_inlines,
Greg Claytoneffe5c92011-05-03 22:09:39 +00003972 m_options.m_verbose))
3973 {
3974 result.SetStatus(eReturnStatusSuccessFinishResult);
3975 return true;
3976 }
3977 }
3978 break;
Greg Claytonc4a8a762012-05-15 18:43:44 +00003979
3980 case eLookupTypeFunctionOrSymbol:
Greg Claytoneffe5c92011-05-03 22:09:39 +00003981 case eLookupTypeFunction:
3982 if (!m_options.m_str.empty())
3983 {
3984 if (LookupFunctionInModule (m_interpreter,
3985 result.GetOutputStream(),
3986 module,
3987 m_options.m_str.c_str(),
3988 m_options.m_use_regex,
Sean Callanand4a7c122012-02-11 01:22:21 +00003989 m_options.m_include_inlines,
Greg Claytonc4a8a762012-05-15 18:43:44 +00003990 m_options.m_type == eLookupTypeFunctionOrSymbol, // include symbols
Greg Claytoneffe5c92011-05-03 22:09:39 +00003991 m_options.m_verbose))
3992 {
3993 result.SetStatus(eReturnStatusSuccessFinishResult);
3994 return true;
3995 }
3996 }
3997 break;
3998
Greg Claytonc4a8a762012-05-15 18:43:44 +00003999
Greg Claytoneffe5c92011-05-03 22:09:39 +00004000 case eLookupTypeType:
4001 if (!m_options.m_str.empty())
4002 {
4003 if (LookupTypeInModule (m_interpreter,
4004 result.GetOutputStream(),
4005 module,
4006 m_options.m_str.c_str(),
4007 m_options.m_use_regex))
4008 {
4009 result.SetStatus(eReturnStatusSuccessFinishResult);
4010 return true;
4011 }
4012 }
4013 break;
4014
4015 default:
4016 m_options.GenerateOptionUsage (result.GetErrorStream(), this);
4017 syntax_error = true;
4018 break;
4019 }
4020
4021 result.SetStatus (eReturnStatusFailed);
4022 return false;
4023 }
4024
Jim Ingham5a988412012-06-08 21:56:10 +00004025protected:
Greg Claytoneffe5c92011-05-03 22:09:39 +00004026 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +00004027 DoExecute (Args& command,
Greg Claytoneffe5c92011-05-03 22:09:39 +00004028 CommandReturnObject &result)
4029 {
4030 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
4031 if (target == NULL)
4032 {
4033 result.AppendError ("invalid target, create a debug target using the 'target create' command");
4034 result.SetStatus (eReturnStatusFailed);
4035 return false;
4036 }
4037 else
4038 {
4039 bool syntax_error = false;
4040 uint32_t i;
4041 uint32_t num_successful_lookups = 0;
4042 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
4043 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
4044 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
4045 // Dump all sections for all modules images
4046
4047 if (command.GetArgumentCount() == 0)
4048 {
Sean Callanand38b4a92012-06-06 20:49:55 +00004049 ModuleSP current_module;
4050
4051 // Where it is possible to look in the current symbol context
4052 // first, try that. If this search was successful and --all
4053 // was not passed, don't print anything else.
4054 if (LookupHere (m_interpreter, result, syntax_error))
4055 {
4056 result.GetOutputStream().EOL();
4057 num_successful_lookups++;
4058 if (!m_options.m_print_all)
4059 {
4060 result.SetStatus (eReturnStatusSuccessFinishResult);
4061 return result.Succeeded();
4062 }
4063 }
4064
4065 // Dump all sections for all other modules
4066
Enrico Granata17598482012-11-08 02:22:02 +00004067 const ModuleList &target_modules = target->GetImages();
Jim Ingham3ee12ef2012-05-30 02:19:25 +00004068 Mutex::Locker modules_locker(target_modules.GetMutex());
Greg Claytonc7bece562013-01-25 18:06:21 +00004069 const size_t num_modules = target_modules.GetSize();
Greg Claytoneffe5c92011-05-03 22:09:39 +00004070 if (num_modules > 0)
4071 {
4072 for (i = 0; i<num_modules && syntax_error == false; ++i)
4073 {
Sean Callanand38b4a92012-06-06 20:49:55 +00004074 Module *module_pointer = target_modules.GetModulePointerAtIndexUnlocked(i);
4075
4076 if (module_pointer != current_module.get() &&
4077 LookupInModule (m_interpreter, target_modules.GetModulePointerAtIndexUnlocked(i), result, syntax_error))
Greg Claytoneffe5c92011-05-03 22:09:39 +00004078 {
4079 result.GetOutputStream().EOL();
4080 num_successful_lookups++;
4081 }
4082 }
4083 }
4084 else
4085 {
4086 result.AppendError ("the target has no associated executable images");
4087 result.SetStatus (eReturnStatusFailed);
4088 return false;
4089 }
4090 }
4091 else
4092 {
4093 // Dump specified images (by basename or fullpath)
4094 const char *arg_cstr;
4095 for (i = 0; (arg_cstr = command.GetArgumentAtIndex(i)) != NULL && syntax_error == false; ++i)
4096 {
Greg Clayton8ee64382011-11-10 01:18:58 +00004097 ModuleList module_list;
4098 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, false);
4099 if (num_matches > 0)
Greg Claytoneffe5c92011-05-03 22:09:39 +00004100 {
Jason Molendaccd41e52012-10-04 22:47:07 +00004101 for (size_t j=0; j<num_matches; ++j)
Greg Claytoneffe5c92011-05-03 22:09:39 +00004102 {
Jason Molendaccd41e52012-10-04 22:47:07 +00004103 Module *module = module_list.GetModulePointerAtIndex(j);
Greg Clayton8ee64382011-11-10 01:18:58 +00004104 if (module)
Greg Claytoneffe5c92011-05-03 22:09:39 +00004105 {
Greg Clayton8ee64382011-11-10 01:18:58 +00004106 if (LookupInModule (m_interpreter, module, result, syntax_error))
Greg Claytoneffe5c92011-05-03 22:09:39 +00004107 {
4108 result.GetOutputStream().EOL();
4109 num_successful_lookups++;
4110 }
4111 }
4112 }
4113 }
4114 else
4115 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
4116 }
4117 }
4118
4119 if (num_successful_lookups > 0)
4120 result.SetStatus (eReturnStatusSuccessFinishResult);
4121 else
4122 result.SetStatus (eReturnStatusFailed);
4123 }
4124 return result.Succeeded();
4125 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00004126
4127 CommandOptions m_options;
4128};
4129
4130OptionDefinition
4131CommandObjectTargetModulesLookup::CommandOptions::g_option_table[] =
4132{
Jim Inghame7b849e2013-03-15 23:09:19 +00004133 { LLDB_OPT_SET_1, true, "address", 'a', required_argument, NULL, 0, eArgTypeAddressOrExpression, "Lookup an address in one or more target modules."},
Sean Callanancd8b7cd2012-09-13 21:11:40 +00004134 { LLDB_OPT_SET_1, false, "offset", 'o', required_argument, NULL, 0, eArgTypeOffset, "When looking up an address subtract <offset> from any addresses before doing the lookup."},
Greg Claytonc4a8a762012-05-15 18:43:44 +00004135 { LLDB_OPT_SET_2| LLDB_OPT_SET_4 | LLDB_OPT_SET_5
4136 /* FIXME: re-enable this for types when the LookupTypeInModule actually uses the regex option: | LLDB_OPT_SET_6 */ ,
Sean Callanancd8b7cd2012-09-13 21:11:40 +00004137 false, "regex", 'r', no_argument, NULL, 0, eArgTypeNone, "The <name> argument for name lookups are regular expressions."},
4138 { LLDB_OPT_SET_2, true, "symbol", 's', required_argument, NULL, 0, eArgTypeSymbol, "Lookup a symbol by name in the symbol tables in one or more target modules."},
4139 { LLDB_OPT_SET_3, true, "file", 'f', required_argument, NULL, 0, eArgTypeFilename, "Lookup a file by fullpath or basename in one or more target modules."},
4140 { LLDB_OPT_SET_3, false, "line", 'l', required_argument, NULL, 0, eArgTypeLineNum, "Lookup a line number in a file (must be used in conjunction with --file)."},
Jim Inghama8f55662012-06-04 22:47:34 +00004141 { LLDB_OPT_SET_FROM_TO(3,5),
Sean Callanancd8b7cd2012-09-13 21:11:40 +00004142 false, "no-inlines", 'i', no_argument, NULL, 0, eArgTypeNone, "Ignore inline entries (must be used in conjunction with --file or --function)."},
4143 { LLDB_OPT_SET_4, true, "function", 'F', required_argument, NULL, 0, eArgTypeFunctionName, "Lookup a function by name in the debug symbols in one or more target modules."},
4144 { LLDB_OPT_SET_5, true, "name", 'n', required_argument, NULL, 0, eArgTypeFunctionOrSymbol, "Lookup a function or symbol by name in one or more target modules."},
4145 { LLDB_OPT_SET_6, true, "type", 't', required_argument, NULL, 0, eArgTypeName, "Lookup a type by name in the debug symbols in one or more target modules."},
4146 { LLDB_OPT_SET_ALL, false, "verbose", 'v', no_argument, NULL, 0, eArgTypeNone, "Enable verbose lookup information."},
4147 { LLDB_OPT_SET_ALL, false, "all", 'A', no_argument, NULL, 0, eArgTypeNone, "Print all matches, not just the best match, if a best match is available."},
4148 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
Greg Claytoneffe5c92011-05-03 22:09:39 +00004149};
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004150
4151
Jim Ingham9575d842011-03-11 03:53:59 +00004152#pragma mark CommandObjectMultiwordImageSearchPaths
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004153
4154//-------------------------------------------------------------------------
4155// CommandObjectMultiwordImageSearchPaths
4156//-------------------------------------------------------------------------
4157
Greg Claytoneffe5c92011-05-03 22:09:39 +00004158class CommandObjectTargetModulesImageSearchPaths : public CommandObjectMultiword
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004159{
4160public:
Greg Claytoneffe5c92011-05-03 22:09:39 +00004161
4162 CommandObjectTargetModulesImageSearchPaths (CommandInterpreter &interpreter) :
4163 CommandObjectMultiword (interpreter,
4164 "target modules search-paths",
4165 "A set of commands for operating on debugger target image search paths.",
4166 "target modules search-paths <subcommand> [<subcommand-options>]")
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004167 {
Greg Claytoneffe5c92011-05-03 22:09:39 +00004168 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetModulesSearchPathsAdd (interpreter)));
4169 LoadSubCommand ("clear", CommandObjectSP (new CommandObjectTargetModulesSearchPathsClear (interpreter)));
4170 LoadSubCommand ("insert", CommandObjectSP (new CommandObjectTargetModulesSearchPathsInsert (interpreter)));
4171 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetModulesSearchPathsList (interpreter)));
4172 LoadSubCommand ("query", CommandObjectSP (new CommandObjectTargetModulesSearchPathsQuery (interpreter)));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004173 }
Greg Claytoneffe5c92011-05-03 22:09:39 +00004174
4175 ~CommandObjectTargetModulesImageSearchPaths()
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004176 {
4177 }
4178};
4179
Greg Claytoneffe5c92011-05-03 22:09:39 +00004180
4181
4182#pragma mark CommandObjectTargetModules
4183
4184//-------------------------------------------------------------------------
4185// CommandObjectTargetModules
4186//-------------------------------------------------------------------------
4187
4188class CommandObjectTargetModules : public CommandObjectMultiword
4189{
4190public:
4191 //------------------------------------------------------------------
4192 // Constructors and Destructors
4193 //------------------------------------------------------------------
4194 CommandObjectTargetModules(CommandInterpreter &interpreter) :
4195 CommandObjectMultiword (interpreter,
4196 "target modules",
4197 "A set of commands for accessing information for one or more target modules.",
4198 "target modules <sub-command> ...")
4199 {
4200 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetModulesAdd (interpreter)));
4201 LoadSubCommand ("load", CommandObjectSP (new CommandObjectTargetModulesLoad (interpreter)));
Greg Claytoneffe5c92011-05-03 22:09:39 +00004202 LoadSubCommand ("dump", CommandObjectSP (new CommandObjectTargetModulesDump (interpreter)));
4203 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetModulesList (interpreter)));
4204 LoadSubCommand ("lookup", CommandObjectSP (new CommandObjectTargetModulesLookup (interpreter)));
4205 LoadSubCommand ("search-paths", CommandObjectSP (new CommandObjectTargetModulesImageSearchPaths (interpreter)));
Jason Molenda380241a2012-07-12 00:20:07 +00004206 LoadSubCommand ("show-unwind", CommandObjectSP (new CommandObjectTargetModulesShowUnwind (interpreter)));
Greg Claytoneffe5c92011-05-03 22:09:39 +00004207
4208 }
4209 virtual
4210 ~CommandObjectTargetModules()
4211 {
4212 }
4213
4214private:
4215 //------------------------------------------------------------------
4216 // For CommandObjectTargetModules only
4217 //------------------------------------------------------------------
4218 DISALLOW_COPY_AND_ASSIGN (CommandObjectTargetModules);
4219};
4220
4221
Greg Claytone72dfb32012-02-24 01:59:29 +00004222
Jim Ingham5a988412012-06-08 21:56:10 +00004223class CommandObjectTargetSymbolsAdd : public CommandObjectParsed
Greg Claytone72dfb32012-02-24 01:59:29 +00004224{
4225public:
4226 CommandObjectTargetSymbolsAdd (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00004227 CommandObjectParsed (interpreter,
4228 "target symbols add",
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004229 "Add a debug symbol file to one of the target's current modules by specifying a path to a debug symbols file, or using the options to specify a module to download symbols for.",
Jason Molendab9c9f9b2013-02-02 06:00:36 +00004230 "target symbols add [<symfile>]", eFlagRequiresTarget),
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004231 m_option_group (interpreter),
4232 m_file_option (LLDB_OPT_SET_1, false, "shlib", 's', CommandCompletions::eModuleCompletion, eArgTypeShlibName, "Fullpath or basename for module to find debug symbols for."),
4233 m_current_frame_option (LLDB_OPT_SET_2, false, "frame", 'F', "Locate the debug symbols the currently selected frame.", false, true)
4234
Greg Claytone72dfb32012-02-24 01:59:29 +00004235 {
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004236 m_option_group.Append (&m_uuid_option_group, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
4237 m_option_group.Append (&m_file_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
4238 m_option_group.Append (&m_current_frame_option, LLDB_OPT_SET_2, LLDB_OPT_SET_2);
4239 m_option_group.Finalize();
Greg Claytone72dfb32012-02-24 01:59:29 +00004240 }
4241
4242 virtual
4243 ~CommandObjectTargetSymbolsAdd ()
4244 {
4245 }
4246
Greg Claytonc7bece562013-01-25 18:06:21 +00004247 virtual int
Jim Ingham5a988412012-06-08 21:56:10 +00004248 HandleArgumentCompletion (Args &input,
4249 int &cursor_index,
4250 int &cursor_char_position,
4251 OptionElementVector &opt_element_vector,
4252 int match_start_point,
4253 int max_return_elements,
4254 bool &word_complete,
4255 StringList &matches)
4256 {
4257 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
4258 completion_str.erase (cursor_char_position);
4259
4260 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
4261 CommandCompletions::eDiskFileCompletion,
4262 completion_str.c_str(),
4263 match_start_point,
4264 max_return_elements,
4265 NULL,
4266 word_complete,
4267 matches);
4268 return matches.GetSize();
4269 }
4270
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004271 virtual Options *
4272 GetOptions ()
4273 {
4274 return &m_option_group;
4275 }
4276
4277
Jim Ingham5a988412012-06-08 21:56:10 +00004278protected:
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004279
4280 bool
4281 AddModuleSymbols (Target *target,
Greg Clayton89deb062012-12-12 01:15:30 +00004282 ModuleSpec &module_spec,
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004283 bool &flush,
4284 CommandReturnObject &result)
4285 {
Greg Clayton89deb062012-12-12 01:15:30 +00004286 const FileSpec &symbol_fspec = module_spec.GetSymbolFileSpec();
4287 if (symbol_fspec)
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004288 {
4289 char symfile_path[PATH_MAX];
Greg Clayton89deb062012-12-12 01:15:30 +00004290 symbol_fspec.GetPath (symfile_path, sizeof(symfile_path));
4291
4292 if (!module_spec.GetUUID().IsValid())
4293 {
4294 if (!module_spec.GetFileSpec() && !module_spec.GetPlatformFileSpec())
4295 module_spec.GetFileSpec().GetFilename() = symbol_fspec.GetFilename();
4296 }
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004297 // We now have a module that represents a symbol file
4298 // that can be used for a module that might exist in the
4299 // current target, so we need to find that module in the
4300 // target
Greg Clayton89deb062012-12-12 01:15:30 +00004301 ModuleList matching_module_list;
Greg Clayton9aae0a12013-05-15 19:52:08 +00004302
4303 size_t num_matches = 0;
4304 // First extract all module specs from the symbol file
4305 lldb_private::ModuleSpecList symfile_module_specs;
Greg Clayton2540a8a2013-07-12 22:07:46 +00004306 if (ObjectFile::GetModuleSpecifications(module_spec.GetSymbolFileSpec(), 0, 0, symfile_module_specs))
Greg Clayton9aae0a12013-05-15 19:52:08 +00004307 {
4308 // Now extract the module spec that matches the target architecture
4309 ModuleSpec target_arch_module_spec;
4310 ModuleSpec symfile_module_spec;
4311 target_arch_module_spec.GetArchitecture() = target->GetArchitecture();
4312 if (symfile_module_specs.FindMatchingModuleSpec(target_arch_module_spec, symfile_module_spec))
4313 {
4314 // See if it has a UUID?
4315 if (symfile_module_spec.GetUUID().IsValid())
4316 {
4317 // It has a UUID, look for this UUID in the target modules
4318 ModuleSpec symfile_uuid_module_spec;
4319 symfile_uuid_module_spec.GetUUID() = symfile_module_spec.GetUUID();
4320 num_matches = target->GetImages().FindModules (symfile_uuid_module_spec, matching_module_list);
4321 }
4322 }
4323
4324 if (num_matches == 0)
4325 {
4326 // No matches yet, iterate through the module specs to find a UUID value that
4327 // we can match up to an image in our target
4328 const size_t num_symfile_module_specs = symfile_module_specs.GetSize();
4329 for (size_t i=0; i<num_symfile_module_specs && num_matches == 0; ++i)
4330 {
4331 if (symfile_module_specs.GetModuleSpecAtIndex(i, symfile_module_spec))
4332 {
4333 if (symfile_module_spec.GetUUID().IsValid())
4334 {
4335 // It has a UUID, look for this UUID in the target modules
4336 ModuleSpec symfile_uuid_module_spec;
4337 symfile_uuid_module_spec.GetUUID() = symfile_module_spec.GetUUID();
4338 num_matches = target->GetImages().FindModules (symfile_uuid_module_spec, matching_module_list);
4339 }
4340 }
4341 }
4342 }
4343 }
4344
4345 // Just try to match up the file by basename if we have no matches at this point
4346 if (num_matches == 0)
4347 num_matches = target->GetImages().FindModules (module_spec, matching_module_list);
4348
Greg Clayton91c0e742013-01-11 23:44:27 +00004349 while (num_matches == 0)
4350 {
4351 ConstString filename_no_extension(module_spec.GetFileSpec().GetFileNameStrippingExtension());
4352 // Empty string returned, lets bail
4353 if (!filename_no_extension)
4354 break;
4355
4356 // Check if there was no extension to strip and the basename is the same
4357 if (filename_no_extension == module_spec.GetFileSpec().GetFilename())
4358 break;
4359
4360 // Replace basename with one less extension
4361 module_spec.GetFileSpec().GetFilename() = filename_no_extension;
4362
4363 num_matches = target->GetImages().FindModules (module_spec, matching_module_list);
Greg Clayton9aae0a12013-05-15 19:52:08 +00004364
Greg Clayton91c0e742013-01-11 23:44:27 +00004365 }
4366
Greg Clayton89deb062012-12-12 01:15:30 +00004367 if (num_matches > 1)
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004368 {
Greg Clayton89deb062012-12-12 01:15:30 +00004369 result.AppendErrorWithFormat ("multiple modules match symbol file '%s', use the --uuid option to resolve the ambiguity.\n", symfile_path);
4370 }
4371 else if (num_matches == 1)
4372 {
4373 ModuleSP module_sp (matching_module_list.GetModuleAtIndex(0));
4374
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004375 // The module has not yet created its symbol vendor, we can just
4376 // give the existing target module the symfile path to use for
4377 // when it decides to create it!
Greg Clayton89deb062012-12-12 01:15:30 +00004378 module_sp->SetSymbolFileFileSpec (symbol_fspec);
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004379
Greg Clayton136dff82012-12-14 02:15:00 +00004380 SymbolVendor *symbol_vendor = module_sp->GetSymbolVendor(true, &result.GetErrorStream());
Greg Clayton89deb062012-12-12 01:15:30 +00004381 if (symbol_vendor)
4382 {
4383 SymbolFile *symbol_file = symbol_vendor->GetSymbolFile();
4384
4385 if (symbol_file)
4386 {
4387 ObjectFile *object_file = symbol_file->GetObjectFile();
4388
4389 if (object_file && object_file->GetFileSpec() == symbol_fspec)
4390 {
4391 // Provide feedback that the symfile has been successfully added.
4392 const FileSpec &module_fs = module_sp->GetFileSpec();
Greg Claytonb5ad4ec2013-04-29 17:25:54 +00004393 result.AppendMessageWithFormat("symbol file '%s' has been added to '%s'\n",
Greg Clayton89deb062012-12-12 01:15:30 +00004394 symfile_path,
Greg Claytonb5ad4ec2013-04-29 17:25:54 +00004395 module_fs.GetPath().c_str());
Greg Clayton89deb062012-12-12 01:15:30 +00004396
4397 // Let clients know something changed in the module
4398 // if it is currently loaded
4399 ModuleList module_list;
4400 module_list.Append (module_sp);
Enrico Granataf15ee4e2013-04-05 18:49:06 +00004401 target->SymbolsDidLoad (module_list);
Greg Clayton91c0e742013-01-11 23:44:27 +00004402
4403 // Make sure we load any scripting resources that may be embedded
4404 // in the debug info files in case the platform supports that.
4405 Error error;
Enrico Granata97303392013-05-21 00:00:30 +00004406 StreamString feedback_stream;
4407 module_sp->LoadScriptingResourceInTarget (target, error,&feedback_stream);
Enrico Granatacaa84cb2013-05-20 22:40:54 +00004408 if (error.Fail() && error.AsCString())
Enrico Granata2ea43cd2013-05-13 17:03:52 +00004409 result.AppendWarningWithFormat("unable to load scripting data for module %s - error reported was %s",
4410 module_sp->GetFileSpec().GetFileNameStrippingExtension().GetCString(),
4411 error.AsCString());
Enrico Granata97303392013-05-21 00:00:30 +00004412 else if (feedback_stream.GetSize())
4413 result.AppendWarningWithFormat("%s",feedback_stream.GetData());
Greg Clayton91c0e742013-01-11 23:44:27 +00004414
Greg Clayton89deb062012-12-12 01:15:30 +00004415 flush = true;
4416 result.SetStatus (eReturnStatusSuccessFinishResult);
4417 return true;
4418 }
4419 }
4420 }
4421 // Clear the symbol file spec if anything went wrong
4422 module_sp->SetSymbolFileFileSpec (FileSpec());
Greg Clayton89deb062012-12-12 01:15:30 +00004423 }
4424
4425 if (module_spec.GetUUID().IsValid())
4426 {
4427 StreamString ss_symfile_uuid;
4428 module_spec.GetUUID().Dump(&ss_symfile_uuid);
4429 result.AppendErrorWithFormat ("symbol file '%s' (%s) does not match any existing module%s\n",
4430 symfile_path,
4431 ss_symfile_uuid.GetData(),
4432 (symbol_fspec.GetFileType() != FileSpec::eFileTypeRegular)
4433 ? "\n please specify the full path to the symbol file"
4434 : "");
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004435 }
4436 else
4437 {
Greg Clayton89deb062012-12-12 01:15:30 +00004438 result.AppendErrorWithFormat ("symbol file '%s' does not match any existing module%s\n",
4439 symfile_path,
4440 (symbol_fspec.GetFileType() != FileSpec::eFileTypeRegular)
4441 ? "\n please specify the full path to the symbol file"
4442 : "");
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004443 }
4444 }
4445 else
4446 {
4447 result.AppendError ("one or more executable image paths must be specified");
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004448 }
Greg Clayton89deb062012-12-12 01:15:30 +00004449 result.SetStatus (eReturnStatusFailed);
4450 return false;
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004451 }
4452
Greg Claytone72dfb32012-02-24 01:59:29 +00004453 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +00004454 DoExecute (Args& args,
Greg Claytone72dfb32012-02-24 01:59:29 +00004455 CommandReturnObject &result)
4456 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004457 Target *target = m_exe_ctx.GetTargetPtr();
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004458 result.SetStatus (eReturnStatusFailed);
Greg Claytonf9fc6092013-01-09 19:44:40 +00004459 bool flush = false;
4460 ModuleSpec module_spec;
4461 const bool uuid_option_set = m_uuid_option_group.GetOptionValue().OptionWasSet();
4462 const bool file_option_set = m_file_option.GetOptionValue().OptionWasSet();
4463 const bool frame_option_set = m_current_frame_option.GetOptionValue().OptionWasSet();
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004464
Greg Claytonf9fc6092013-01-09 19:44:40 +00004465 const size_t argc = args.GetArgumentCount();
4466 if (argc == 0)
4467 {
4468 if (uuid_option_set || file_option_set || frame_option_set)
Greg Claytone72dfb32012-02-24 01:59:29 +00004469 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004470 bool success = false;
4471 bool error_set = false;
4472 if (frame_option_set)
Greg Claytone72dfb32012-02-24 01:59:29 +00004473 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004474 Process *process = m_exe_ctx.GetProcessPtr();
4475 if (process)
Greg Claytone72dfb32012-02-24 01:59:29 +00004476 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004477 const StateType process_state = process->GetState();
4478 if (StateIsStoppedState (process_state, true))
Greg Claytone72dfb32012-02-24 01:59:29 +00004479 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004480 StackFrame *frame = m_exe_ctx.GetFramePtr();
4481 if (frame)
Greg Claytone72dfb32012-02-24 01:59:29 +00004482 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004483 ModuleSP frame_module_sp (frame->GetSymbolContext(eSymbolContextModule).module_sp);
4484 if (frame_module_sp)
Greg Claytone72dfb32012-02-24 01:59:29 +00004485 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004486 if (frame_module_sp->GetPlatformFileSpec().Exists())
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004487 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004488 module_spec.GetArchitecture() = frame_module_sp->GetArchitecture();
4489 module_spec.GetFileSpec() = frame_module_sp->GetPlatformFileSpec();
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004490 }
Greg Claytonf9fc6092013-01-09 19:44:40 +00004491 module_spec.GetUUID() = frame_module_sp->GetUUID();
4492 success = module_spec.GetUUID().IsValid() || module_spec.GetFileSpec();
Greg Claytone72dfb32012-02-24 01:59:29 +00004493 }
Johnny Chen82e5a262012-08-22 00:18:43 +00004494 else
4495 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004496 result.AppendError ("frame has no module");
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004497 error_set = true;
Johnny Chen82e5a262012-08-22 00:18:43 +00004498 }
Greg Claytone72dfb32012-02-24 01:59:29 +00004499 }
4500 else
4501 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004502 result.AppendError ("invalid current frame");
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004503 error_set = true;
Greg Claytone72dfb32012-02-24 01:59:29 +00004504 }
Greg Claytone72dfb32012-02-24 01:59:29 +00004505 }
4506 else
4507 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004508 result.AppendErrorWithFormat ("process is not stopped: %s", StateAsCString(process_state));
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004509 error_set = true;
4510 }
4511 }
4512 else
4513 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004514 result.AppendError ("a process must exist in order to use the --frame option");
4515 error_set = true;
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004516 }
4517 }
4518 else
4519 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004520 if (uuid_option_set)
4521 {
4522 module_spec.GetUUID() = m_uuid_option_group.GetOptionValue().GetCurrentValue();
4523 success |= module_spec.GetUUID().IsValid();
4524 }
4525 else if (file_option_set)
4526 {
4527 module_spec.GetFileSpec() = m_file_option.GetOptionValue().GetCurrentValue();
4528 ModuleSP module_sp (target->GetImages().FindFirstModule(module_spec));
4529 if (module_sp)
4530 {
4531 module_spec.GetFileSpec() = module_sp->GetFileSpec();
4532 module_spec.GetPlatformFileSpec() = module_sp->GetPlatformFileSpec();
4533 module_spec.GetUUID() = module_sp->GetUUID();
4534 module_spec.GetArchitecture() = module_sp->GetArchitecture();
4535 }
4536 else
4537 {
4538 module_spec.GetArchitecture() = target->GetArchitecture();
4539 }
4540 success |= module_spec.GetFileSpec().Exists();
4541 }
4542 }
4543
4544 if (success)
4545 {
4546 if (Symbols::DownloadObjectAndSymbolFile (module_spec))
4547 {
4548 if (module_spec.GetSymbolFileSpec())
4549 success = AddModuleSymbols (target, module_spec, flush, result);
4550 }
4551 }
4552
4553 if (!success && !error_set)
4554 {
4555 StreamString error_strm;
4556 if (uuid_option_set)
4557 {
4558 error_strm.PutCString("unable to find debug symbols for UUID ");
4559 module_spec.GetUUID().Dump (&error_strm);
4560 }
4561 else if (file_option_set)
4562 {
4563 error_strm.PutCString("unable to find debug symbols for the executable file ");
4564 error_strm << module_spec.GetFileSpec();
4565 }
4566 else if (frame_option_set)
4567 {
4568 error_strm.PutCString("unable to find debug symbols for the current frame");
4569 }
4570 result.AppendError (error_strm.GetData());
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004571 }
4572 }
4573 else
4574 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004575 result.AppendError ("one or more symbol file paths must be specified, or options must be specified");
4576 }
4577 }
4578 else
4579 {
4580 if (uuid_option_set)
4581 {
4582 result.AppendError ("specify either one or more paths to symbol files or use the --uuid option without arguments");
4583 }
4584 else if (file_option_set)
4585 {
4586 result.AppendError ("specify either one or more paths to symbol files or use the --file option without arguments");
4587 }
4588 else if (frame_option_set)
4589 {
4590 result.AppendError ("specify either one or more paths to symbol files or use the --frame option without arguments");
4591 }
4592 else
4593 {
4594 PlatformSP platform_sp (target->GetPlatform());
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004595
Greg Claytonf9fc6092013-01-09 19:44:40 +00004596 for (size_t i=0; i<argc; ++i)
4597 {
4598 const char *symfile_path = args.GetArgumentAtIndex(i);
4599 if (symfile_path)
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004600 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004601 module_spec.GetSymbolFileSpec().SetFile(symfile_path, true);
4602 if (platform_sp)
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004603 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00004604 FileSpec symfile_spec;
4605 if (platform_sp->ResolveSymbolFile(*target, module_spec, symfile_spec).Success())
4606 module_spec.GetSymbolFileSpec() = symfile_spec;
4607 }
4608
4609 ArchSpec arch;
4610 bool symfile_exists = module_spec.GetSymbolFileSpec().Exists();
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004611
Greg Claytonf9fc6092013-01-09 19:44:40 +00004612 if (symfile_exists)
4613 {
4614 if (!AddModuleSymbols (target, module_spec, flush, result))
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004615 break;
Greg Claytonf9fc6092013-01-09 19:44:40 +00004616 }
4617 else
4618 {
4619 char resolved_symfile_path[PATH_MAX];
4620 if (module_spec.GetSymbolFileSpec().GetPath (resolved_symfile_path, sizeof(resolved_symfile_path)))
4621 {
4622 if (strcmp (resolved_symfile_path, symfile_path) != 0)
4623 {
4624 result.AppendErrorWithFormat ("invalid module path '%s' with resolved path '%s'\n", symfile_path, resolved_symfile_path);
4625 break;
4626 }
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004627 }
Greg Claytonf9fc6092013-01-09 19:44:40 +00004628 result.AppendErrorWithFormat ("invalid module path '%s'\n", symfile_path);
4629 break;
Greg Claytone72dfb32012-02-24 01:59:29 +00004630 }
4631 }
4632 }
4633 }
Greg Claytonf9fc6092013-01-09 19:44:40 +00004634 }
Greg Claytonfa559e52012-05-18 02:38:05 +00004635
Greg Claytonf9fc6092013-01-09 19:44:40 +00004636 if (flush)
4637 {
4638 Process *process = m_exe_ctx.GetProcessPtr();
4639 if (process)
4640 process->Flush();
Greg Claytone72dfb32012-02-24 01:59:29 +00004641 }
4642 return result.Succeeded();
4643 }
4644
Greg Claytonb5f0fea2012-09-27 22:26:11 +00004645 OptionGroupOptions m_option_group;
4646 OptionGroupUUID m_uuid_option_group;
4647 OptionGroupFile m_file_option;
4648 OptionGroupBoolean m_current_frame_option;
4649
4650
Greg Claytone72dfb32012-02-24 01:59:29 +00004651};
4652
4653
4654#pragma mark CommandObjectTargetSymbols
4655
4656//-------------------------------------------------------------------------
4657// CommandObjectTargetSymbols
4658//-------------------------------------------------------------------------
4659
4660class CommandObjectTargetSymbols : public CommandObjectMultiword
4661{
4662public:
4663 //------------------------------------------------------------------
4664 // Constructors and Destructors
4665 //------------------------------------------------------------------
4666 CommandObjectTargetSymbols(CommandInterpreter &interpreter) :
4667 CommandObjectMultiword (interpreter,
4668 "target symbols",
4669 "A set of commands for adding and managing debug symbol files.",
4670 "target symbols <sub-command> ...")
4671 {
4672 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetSymbolsAdd (interpreter)));
4673
4674 }
4675 virtual
4676 ~CommandObjectTargetSymbols()
4677 {
4678 }
4679
4680private:
4681 //------------------------------------------------------------------
4682 // For CommandObjectTargetModules only
4683 //------------------------------------------------------------------
4684 DISALLOW_COPY_AND_ASSIGN (CommandObjectTargetSymbols);
4685};
4686
4687
Jim Ingham9575d842011-03-11 03:53:59 +00004688#pragma mark CommandObjectTargetStopHookAdd
4689
4690//-------------------------------------------------------------------------
4691// CommandObjectTargetStopHookAdd
4692//-------------------------------------------------------------------------
4693
Jim Ingham5a988412012-06-08 21:56:10 +00004694class CommandObjectTargetStopHookAdd : public CommandObjectParsed
Jim Ingham9575d842011-03-11 03:53:59 +00004695{
4696public:
4697
4698 class CommandOptions : public Options
4699 {
4700 public:
Greg Claytoneb0103f2011-04-07 22:46:35 +00004701 CommandOptions (CommandInterpreter &interpreter) :
4702 Options(interpreter),
Jim Ingham9575d842011-03-11 03:53:59 +00004703 m_line_start(0),
4704 m_line_end (UINT_MAX),
4705 m_func_name_type_mask (eFunctionNameTypeAuto),
4706 m_sym_ctx_specified (false),
Johnny Chenb1372c02011-05-02 23:47:55 +00004707 m_thread_specified (false),
4708 m_use_one_liner (false),
4709 m_one_liner()
Jim Ingham9575d842011-03-11 03:53:59 +00004710 {
4711 }
4712
4713 ~CommandOptions () {}
4714
Greg Claytone0d378b2011-03-24 21:19:54 +00004715 const OptionDefinition*
Jim Ingham9575d842011-03-11 03:53:59 +00004716 GetDefinitions ()
4717 {
4718 return g_option_table;
4719 }
4720
4721 virtual Error
Greg Claytonf6b8b582011-04-13 00:18:08 +00004722 SetOptionValue (uint32_t option_idx, const char *option_arg)
Jim Ingham9575d842011-03-11 03:53:59 +00004723 {
4724 Error error;
Greg Clayton3bcdfc02012-12-04 00:32:51 +00004725 const int short_option = m_getopt_table[option_idx].val;
Jim Ingham9575d842011-03-11 03:53:59 +00004726 bool success;
4727
4728 switch (short_option)
4729 {
4730 case 'c':
4731 m_class_name = option_arg;
4732 m_sym_ctx_specified = true;
4733 break;
4734
4735 case 'e':
4736 m_line_end = Args::StringToUInt32 (option_arg, UINT_MAX, 0, &success);
4737 if (!success)
4738 {
Greg Clayton86edbf42011-10-26 00:56:27 +00004739 error.SetErrorStringWithFormat ("invalid end line number: \"%s\"", option_arg);
Jim Ingham9575d842011-03-11 03:53:59 +00004740 break;
4741 }
4742 m_sym_ctx_specified = true;
4743 break;
4744
4745 case 'l':
4746 m_line_start = Args::StringToUInt32 (option_arg, 0, 0, &success);
4747 if (!success)
4748 {
Greg Clayton86edbf42011-10-26 00:56:27 +00004749 error.SetErrorStringWithFormat ("invalid start line number: \"%s\"", option_arg);
Jim Ingham9575d842011-03-11 03:53:59 +00004750 break;
4751 }
4752 m_sym_ctx_specified = true;
4753 break;
Sean Callanand4a7c122012-02-11 01:22:21 +00004754
4755 case 'i':
4756 m_no_inlines = true;
4757 break;
Jim Ingham9575d842011-03-11 03:53:59 +00004758
4759 case 'n':
4760 m_function_name = option_arg;
4761 m_func_name_type_mask |= eFunctionNameTypeAuto;
4762 m_sym_ctx_specified = true;
4763 break;
4764
4765 case 'f':
4766 m_file_name = option_arg;
4767 m_sym_ctx_specified = true;
4768 break;
4769 case 's':
4770 m_module_name = option_arg;
4771 m_sym_ctx_specified = true;
4772 break;
4773 case 't' :
4774 {
Jim Ingham0292f4a2011-03-22 01:53:33 +00004775 m_thread_id = Args::StringToUInt64(option_arg, LLDB_INVALID_THREAD_ID, 0);
Jim Ingham9575d842011-03-11 03:53:59 +00004776 if (m_thread_id == LLDB_INVALID_THREAD_ID)
Greg Clayton86edbf42011-10-26 00:56:27 +00004777 error.SetErrorStringWithFormat ("invalid thread id string '%s'", option_arg);
Jim Ingham9575d842011-03-11 03:53:59 +00004778 m_thread_specified = true;
4779 }
4780 break;
4781 case 'T':
4782 m_thread_name = option_arg;
4783 m_thread_specified = true;
4784 break;
4785 case 'q':
4786 m_queue_name = option_arg;
4787 m_thread_specified = true;
4788 break;
4789 case 'x':
4790 {
Jim Ingham0292f4a2011-03-22 01:53:33 +00004791 m_thread_index = Args::StringToUInt32(option_arg, UINT32_MAX, 0);
Jim Ingham9575d842011-03-11 03:53:59 +00004792 if (m_thread_id == UINT32_MAX)
Greg Clayton86edbf42011-10-26 00:56:27 +00004793 error.SetErrorStringWithFormat ("invalid thread index string '%s'", option_arg);
Jim Ingham9575d842011-03-11 03:53:59 +00004794 m_thread_specified = true;
4795 }
4796 break;
Johnny Chenb1372c02011-05-02 23:47:55 +00004797 case 'o':
4798 m_use_one_liner = true;
4799 m_one_liner = option_arg;
4800 break;
Jim Ingham9575d842011-03-11 03:53:59 +00004801 default:
Greg Clayton86edbf42011-10-26 00:56:27 +00004802 error.SetErrorStringWithFormat ("unrecognized option %c.", short_option);
Jim Ingham9575d842011-03-11 03:53:59 +00004803 break;
4804 }
4805 return error;
4806 }
4807
4808 void
Greg Claytonf6b8b582011-04-13 00:18:08 +00004809 OptionParsingStarting ()
Jim Ingham9575d842011-03-11 03:53:59 +00004810 {
4811 m_class_name.clear();
4812 m_function_name.clear();
4813 m_line_start = 0;
4814 m_line_end = UINT_MAX;
4815 m_file_name.clear();
4816 m_module_name.clear();
4817 m_func_name_type_mask = eFunctionNameTypeAuto;
4818 m_thread_id = LLDB_INVALID_THREAD_ID;
4819 m_thread_index = UINT32_MAX;
4820 m_thread_name.clear();
4821 m_queue_name.clear();
Sean Callanand4a7c122012-02-11 01:22:21 +00004822
4823 m_no_inlines = false;
Jim Ingham9575d842011-03-11 03:53:59 +00004824 m_sym_ctx_specified = false;
4825 m_thread_specified = false;
Johnny Chenb1372c02011-05-02 23:47:55 +00004826
4827 m_use_one_liner = false;
4828 m_one_liner.clear();
Jim Ingham9575d842011-03-11 03:53:59 +00004829 }
4830
4831
Greg Claytone0d378b2011-03-24 21:19:54 +00004832 static OptionDefinition g_option_table[];
Jim Ingham9575d842011-03-11 03:53:59 +00004833
4834 std::string m_class_name;
4835 std::string m_function_name;
4836 uint32_t m_line_start;
4837 uint32_t m_line_end;
4838 std::string m_file_name;
4839 std::string m_module_name;
4840 uint32_t m_func_name_type_mask; // A pick from lldb::FunctionNameType.
4841 lldb::tid_t m_thread_id;
4842 uint32_t m_thread_index;
4843 std::string m_thread_name;
4844 std::string m_queue_name;
4845 bool m_sym_ctx_specified;
Sean Callanand4a7c122012-02-11 01:22:21 +00004846 bool m_no_inlines;
Jim Ingham9575d842011-03-11 03:53:59 +00004847 bool m_thread_specified;
Johnny Chenb1372c02011-05-02 23:47:55 +00004848 // Instance variables to hold the values for one_liner options.
4849 bool m_use_one_liner;
4850 std::string m_one_liner;
Jim Ingham9575d842011-03-11 03:53:59 +00004851 };
4852
4853 Options *
4854 GetOptions ()
4855 {
4856 return &m_options;
4857 }
4858
4859 CommandObjectTargetStopHookAdd (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00004860 CommandObjectParsed (interpreter,
4861 "target stop-hook add ",
4862 "Add a hook to be executed when the target stops.",
4863 "target stop-hook add"),
Greg Claytoneb0103f2011-04-07 22:46:35 +00004864 m_options (interpreter)
Jim Ingham9575d842011-03-11 03:53:59 +00004865 {
4866 }
4867
4868 ~CommandObjectTargetStopHookAdd ()
4869 {
4870 }
4871
4872 static size_t
4873 ReadCommandsCallbackFunction (void *baton,
4874 InputReader &reader,
4875 lldb::InputReaderAction notification,
4876 const char *bytes,
4877 size_t bytes_len)
4878 {
Caroline Ticed61c10b2011-06-16 16:27:19 +00004879 StreamSP out_stream = reader.GetDebugger().GetAsyncOutputStream();
Jim Ingham9575d842011-03-11 03:53:59 +00004880 Target::StopHook *new_stop_hook = ((Target::StopHook *) baton);
Jim Inghamc60695a2011-05-05 01:03:36 +00004881 static bool got_interrupted;
Caroline Ticed61c10b2011-06-16 16:27:19 +00004882 bool batch_mode = reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode();
Jim Ingham9575d842011-03-11 03:53:59 +00004883
4884 switch (notification)
4885 {
4886 case eInputReaderActivate:
Caroline Ticed61c10b2011-06-16 16:27:19 +00004887 if (!batch_mode)
4888 {
4889 out_stream->Printf ("%s\n", "Enter your stop hook command(s). Type 'DONE' to end.");
4890 if (reader.GetPrompt())
4891 out_stream->Printf ("%s", reader.GetPrompt());
4892 out_stream->Flush();
4893 }
Jim Inghamc60695a2011-05-05 01:03:36 +00004894 got_interrupted = false;
Jim Ingham9575d842011-03-11 03:53:59 +00004895 break;
4896
4897 case eInputReaderDeactivate:
4898 break;
4899
4900 case eInputReaderReactivate:
Caroline Ticed61c10b2011-06-16 16:27:19 +00004901 if (reader.GetPrompt() && !batch_mode)
Jim Ingham9575d842011-03-11 03:53:59 +00004902 {
Caroline Ticed61c10b2011-06-16 16:27:19 +00004903 out_stream->Printf ("%s", reader.GetPrompt());
4904 out_stream->Flush();
Jim Ingham9575d842011-03-11 03:53:59 +00004905 }
Jim Inghamc60695a2011-05-05 01:03:36 +00004906 got_interrupted = false;
Jim Ingham9575d842011-03-11 03:53:59 +00004907 break;
4908
Caroline Tice969ed3d2011-05-02 20:41:46 +00004909 case eInputReaderAsynchronousOutputWritten:
4910 break;
4911
Jim Ingham9575d842011-03-11 03:53:59 +00004912 case eInputReaderGotToken:
4913 if (bytes && bytes_len && baton)
4914 {
4915 StringList *commands = new_stop_hook->GetCommandPointer();
4916 if (commands)
4917 {
4918 commands->AppendString (bytes, bytes_len);
4919 }
4920 }
Caroline Ticed61c10b2011-06-16 16:27:19 +00004921 if (!reader.IsDone() && reader.GetPrompt() && !batch_mode)
Jim Ingham9575d842011-03-11 03:53:59 +00004922 {
Caroline Ticed61c10b2011-06-16 16:27:19 +00004923 out_stream->Printf ("%s", reader.GetPrompt());
4924 out_stream->Flush();
Jim Ingham9575d842011-03-11 03:53:59 +00004925 }
4926 break;
4927
4928 case eInputReaderInterrupt:
4929 {
4930 // Finish, and cancel the stop hook.
4931 new_stop_hook->GetTarget()->RemoveStopHookByID(new_stop_hook->GetID());
Caroline Ticed61c10b2011-06-16 16:27:19 +00004932 if (!batch_mode)
4933 {
4934 out_stream->Printf ("Stop hook cancelled.\n");
4935 out_stream->Flush();
4936 }
4937
Jim Ingham9575d842011-03-11 03:53:59 +00004938 reader.SetIsDone (true);
4939 }
Jim Inghamc60695a2011-05-05 01:03:36 +00004940 got_interrupted = true;
Jim Ingham9575d842011-03-11 03:53:59 +00004941 break;
4942
4943 case eInputReaderEndOfFile:
4944 reader.SetIsDone (true);
4945 break;
4946
4947 case eInputReaderDone:
Caroline Ticed61c10b2011-06-16 16:27:19 +00004948 if (!got_interrupted && !batch_mode)
4949 {
Daniel Malead01b2952012-11-29 21:49:15 +00004950 out_stream->Printf ("Stop hook #%" PRIu64 " added.\n", new_stop_hook->GetID());
Caroline Ticed61c10b2011-06-16 16:27:19 +00004951 out_stream->Flush();
4952 }
Jim Ingham9575d842011-03-11 03:53:59 +00004953 break;
4954 }
4955
4956 return bytes_len;
4957 }
4958
Jim Ingham5a988412012-06-08 21:56:10 +00004959protected:
Jim Ingham9575d842011-03-11 03:53:59 +00004960 bool
Jim Ingham5a988412012-06-08 21:56:10 +00004961 DoExecute (Args& command, CommandReturnObject &result)
Jim Ingham9575d842011-03-11 03:53:59 +00004962 {
4963 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
4964 if (target)
4965 {
4966 Target::StopHookSP new_hook_sp;
4967 target->AddStopHook (new_hook_sp);
4968
4969 // First step, make the specifier.
Greg Clayton7b0992d2013-04-18 22:45:39 +00004970 std::unique_ptr<SymbolContextSpecifier> specifier_ap;
Jim Ingham9575d842011-03-11 03:53:59 +00004971 if (m_options.m_sym_ctx_specified)
4972 {
4973 specifier_ap.reset(new SymbolContextSpecifier(m_interpreter.GetDebugger().GetSelectedTarget()));
4974
4975 if (!m_options.m_module_name.empty())
4976 {
4977 specifier_ap->AddSpecification (m_options.m_module_name.c_str(), SymbolContextSpecifier::eModuleSpecified);
4978 }
4979
4980 if (!m_options.m_class_name.empty())
4981 {
4982 specifier_ap->AddSpecification (m_options.m_class_name.c_str(), SymbolContextSpecifier::eClassOrNamespaceSpecified);
4983 }
4984
4985 if (!m_options.m_file_name.empty())
4986 {
4987 specifier_ap->AddSpecification (m_options.m_file_name.c_str(), SymbolContextSpecifier::eFileSpecified);
4988 }
4989
4990 if (m_options.m_line_start != 0)
4991 {
4992 specifier_ap->AddLineSpecification (m_options.m_line_start, SymbolContextSpecifier::eLineStartSpecified);
4993 }
4994
4995 if (m_options.m_line_end != UINT_MAX)
4996 {
4997 specifier_ap->AddLineSpecification (m_options.m_line_end, SymbolContextSpecifier::eLineEndSpecified);
4998 }
4999
5000 if (!m_options.m_function_name.empty())
5001 {
5002 specifier_ap->AddSpecification (m_options.m_function_name.c_str(), SymbolContextSpecifier::eFunctionSpecified);
5003 }
5004 }
5005
5006 if (specifier_ap.get())
5007 new_hook_sp->SetSpecifier (specifier_ap.release());
5008
5009 // Next see if any of the thread options have been entered:
5010
5011 if (m_options.m_thread_specified)
5012 {
5013 ThreadSpec *thread_spec = new ThreadSpec();
5014
5015 if (m_options.m_thread_id != LLDB_INVALID_THREAD_ID)
5016 {
5017 thread_spec->SetTID (m_options.m_thread_id);
5018 }
5019
5020 if (m_options.m_thread_index != UINT32_MAX)
5021 thread_spec->SetIndex (m_options.m_thread_index);
5022
5023 if (!m_options.m_thread_name.empty())
5024 thread_spec->SetName (m_options.m_thread_name.c_str());
5025
5026 if (!m_options.m_queue_name.empty())
5027 thread_spec->SetQueueName (m_options.m_queue_name.c_str());
5028
5029 new_hook_sp->SetThreadSpecifier (thread_spec);
5030
5031 }
Johnny Chenb1372c02011-05-02 23:47:55 +00005032 if (m_options.m_use_one_liner)
Jim Ingham9575d842011-03-11 03:53:59 +00005033 {
Johnny Chenb1372c02011-05-02 23:47:55 +00005034 // Use one-liner.
5035 new_hook_sp->GetCommandPointer()->AppendString (m_options.m_one_liner.c_str());
Daniel Malead01b2952012-11-29 21:49:15 +00005036 result.AppendMessageWithFormat("Stop hook #%" PRIu64 " added.\n", new_hook_sp->GetID());
Jim Ingham9575d842011-03-11 03:53:59 +00005037 }
Johnny Chenb1372c02011-05-02 23:47:55 +00005038 else
Jim Ingham9575d842011-03-11 03:53:59 +00005039 {
Johnny Chenb1372c02011-05-02 23:47:55 +00005040 // Otherwise gather up the command list, we'll push an input reader and suck the data from that directly into
5041 // the new stop hook's command string.
5042 InputReaderSP reader_sp (new InputReader(m_interpreter.GetDebugger()));
5043 if (!reader_sp)
5044 {
5045 result.AppendError("out of memory\n");
5046 result.SetStatus (eReturnStatusFailed);
5047 target->RemoveStopHookByID (new_hook_sp->GetID());
5048 return false;
5049 }
5050
5051 Error err (reader_sp->Initialize (CommandObjectTargetStopHookAdd::ReadCommandsCallbackFunction,
5052 new_hook_sp.get(), // baton
5053 eInputReaderGranularityLine, // token size, to pass to callback function
5054 "DONE", // end token
5055 "> ", // prompt
5056 true)); // echo input
5057 if (!err.Success())
5058 {
5059 result.AppendError (err.AsCString());
5060 result.SetStatus (eReturnStatusFailed);
5061 target->RemoveStopHookByID (new_hook_sp->GetID());
5062 return false;
5063 }
5064 m_interpreter.GetDebugger().PushInputReader (reader_sp);
Jim Ingham9575d842011-03-11 03:53:59 +00005065 }
Jim Ingham9575d842011-03-11 03:53:59 +00005066 result.SetStatus (eReturnStatusSuccessFinishNoResult);
5067 }
5068 else
5069 {
Greg Clayton7260f622011-04-18 08:33:37 +00005070 result.AppendError ("invalid target\n");
Jim Ingham9575d842011-03-11 03:53:59 +00005071 result.SetStatus (eReturnStatusFailed);
5072 }
5073
5074 return result.Succeeded();
5075 }
5076private:
5077 CommandOptions m_options;
5078};
5079
Greg Claytone0d378b2011-03-24 21:19:54 +00005080OptionDefinition
Jim Ingham9575d842011-03-11 03:53:59 +00005081CommandObjectTargetStopHookAdd::CommandOptions::g_option_table[] =
5082{
Filipe Cabecinhasbc6e85c2012-09-11 16:09:27 +00005083 { LLDB_OPT_SET_ALL, false, "one-liner", 'o', required_argument, NULL, 0, eArgTypeOneLiner,
Johnny Chenb1372c02011-05-02 23:47:55 +00005084 "Specify a one-line breakpoint command inline. Be sure to surround it with quotes." },
Jim Ingham9575d842011-03-11 03:53:59 +00005085 { LLDB_OPT_SET_ALL, false, "shlib", 's', required_argument, NULL, CommandCompletions::eModuleCompletion, eArgTypeShlibName,
5086 "Set the module within which the stop-hook is to be run."},
Filipe Cabecinhasbc6e85c2012-09-11 16:09:27 +00005087 { LLDB_OPT_SET_ALL, false, "thread-index", 'x', required_argument, NULL, 0, eArgTypeThreadIndex,
Jim Ingham9575d842011-03-11 03:53:59 +00005088 "The stop hook is run only for the thread whose index matches this argument."},
Filipe Cabecinhasbc6e85c2012-09-11 16:09:27 +00005089 { LLDB_OPT_SET_ALL, false, "thread-id", 't', required_argument, NULL, 0, eArgTypeThreadID,
Jim Ingham9575d842011-03-11 03:53:59 +00005090 "The stop hook is run only for the thread whose TID matches this argument."},
Filipe Cabecinhasbc6e85c2012-09-11 16:09:27 +00005091 { LLDB_OPT_SET_ALL, false, "thread-name", 'T', required_argument, NULL, 0, eArgTypeThreadName,
Jim Ingham9575d842011-03-11 03:53:59 +00005092 "The stop hook is run only for the thread whose thread name matches this argument."},
Filipe Cabecinhasbc6e85c2012-09-11 16:09:27 +00005093 { LLDB_OPT_SET_ALL, false, "queue-name", 'q', required_argument, NULL, 0, eArgTypeQueueName,
Jim Ingham9575d842011-03-11 03:53:59 +00005094 "The stop hook is run only for threads in the queue whose name is given by this argument."},
5095 { LLDB_OPT_SET_1, false, "file", 'f', required_argument, NULL, CommandCompletions::eSourceFileCompletion, eArgTypeFilename,
5096 "Specify the source file within which the stop-hook is to be run." },
5097 { LLDB_OPT_SET_1, false, "start-line", 'l', required_argument, NULL, 0, eArgTypeLineNum,
5098 "Set the start of the line range for which the stop-hook is to be run."},
5099 { LLDB_OPT_SET_1, false, "end-line", 'e', required_argument, NULL, 0, eArgTypeLineNum,
5100 "Set the end of the line range for which the stop-hook is to be run."},
Filipe Cabecinhasbc6e85c2012-09-11 16:09:27 +00005101 { LLDB_OPT_SET_2, false, "classname", 'c', required_argument, NULL, 0, eArgTypeClassName,
Jim Ingham9575d842011-03-11 03:53:59 +00005102 "Specify the class within which the stop-hook is to be run." },
5103 { LLDB_OPT_SET_3, false, "name", 'n', required_argument, NULL, CommandCompletions::eSymbolCompletion, eArgTypeFunctionName,
5104 "Set the function name within which the stop hook will be run." },
5105 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
5106};
5107
5108#pragma mark CommandObjectTargetStopHookDelete
5109
5110//-------------------------------------------------------------------------
5111// CommandObjectTargetStopHookDelete
5112//-------------------------------------------------------------------------
5113
Jim Ingham5a988412012-06-08 21:56:10 +00005114class CommandObjectTargetStopHookDelete : public CommandObjectParsed
Jim Ingham9575d842011-03-11 03:53:59 +00005115{
5116public:
5117
5118 CommandObjectTargetStopHookDelete (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00005119 CommandObjectParsed (interpreter,
5120 "target stop-hook delete",
5121 "Delete a stop-hook.",
5122 "target stop-hook delete [<idx>]")
Jim Ingham9575d842011-03-11 03:53:59 +00005123 {
5124 }
5125
5126 ~CommandObjectTargetStopHookDelete ()
5127 {
5128 }
5129
Jim Ingham5a988412012-06-08 21:56:10 +00005130protected:
Jim Ingham9575d842011-03-11 03:53:59 +00005131 bool
Jim Ingham5a988412012-06-08 21:56:10 +00005132 DoExecute (Args& command, CommandReturnObject &result)
Jim Ingham9575d842011-03-11 03:53:59 +00005133 {
5134 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
5135 if (target)
5136 {
5137 // FIXME: see if we can use the breakpoint id style parser?
5138 size_t num_args = command.GetArgumentCount();
5139 if (num_args == 0)
5140 {
5141 if (!m_interpreter.Confirm ("Delete all stop hooks?", true))
5142 {
5143 result.SetStatus (eReturnStatusFailed);
5144 return false;
5145 }
5146 else
5147 {
5148 target->RemoveAllStopHooks();
5149 }
5150 }
5151 else
5152 {
5153 bool success;
5154 for (size_t i = 0; i < num_args; i++)
5155 {
5156 lldb::user_id_t user_id = Args::StringToUInt32 (command.GetArgumentAtIndex(i), 0, 0, &success);
5157 if (!success)
5158 {
Greg Clayton7260f622011-04-18 08:33:37 +00005159 result.AppendErrorWithFormat ("invalid stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Ingham9575d842011-03-11 03:53:59 +00005160 result.SetStatus(eReturnStatusFailed);
5161 return false;
5162 }
5163 success = target->RemoveStopHookByID (user_id);
5164 if (!success)
5165 {
Greg Clayton7260f622011-04-18 08:33:37 +00005166 result.AppendErrorWithFormat ("unknown stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Ingham9575d842011-03-11 03:53:59 +00005167 result.SetStatus(eReturnStatusFailed);
5168 return false;
5169 }
5170 }
5171 }
5172 result.SetStatus (eReturnStatusSuccessFinishNoResult);
5173 }
5174 else
5175 {
Greg Clayton7260f622011-04-18 08:33:37 +00005176 result.AppendError ("invalid target\n");
Jim Ingham9575d842011-03-11 03:53:59 +00005177 result.SetStatus (eReturnStatusFailed);
5178 }
5179
5180 return result.Succeeded();
5181 }
5182};
5183#pragma mark CommandObjectTargetStopHookEnableDisable
5184
5185//-------------------------------------------------------------------------
5186// CommandObjectTargetStopHookEnableDisable
5187//-------------------------------------------------------------------------
5188
Jim Ingham5a988412012-06-08 21:56:10 +00005189class CommandObjectTargetStopHookEnableDisable : public CommandObjectParsed
Jim Ingham9575d842011-03-11 03:53:59 +00005190{
5191public:
5192
5193 CommandObjectTargetStopHookEnableDisable (CommandInterpreter &interpreter, bool enable, const char *name, const char *help, const char *syntax) :
Jim Ingham5a988412012-06-08 21:56:10 +00005194 CommandObjectParsed (interpreter,
5195 name,
5196 help,
5197 syntax),
Jim Ingham9575d842011-03-11 03:53:59 +00005198 m_enable (enable)
5199 {
5200 }
5201
5202 ~CommandObjectTargetStopHookEnableDisable ()
5203 {
5204 }
5205
Jim Ingham5a988412012-06-08 21:56:10 +00005206protected:
Jim Ingham9575d842011-03-11 03:53:59 +00005207 bool
Jim Ingham5a988412012-06-08 21:56:10 +00005208 DoExecute (Args& command, CommandReturnObject &result)
Jim Ingham9575d842011-03-11 03:53:59 +00005209 {
5210 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
5211 if (target)
5212 {
5213 // FIXME: see if we can use the breakpoint id style parser?
5214 size_t num_args = command.GetArgumentCount();
5215 bool success;
5216
5217 if (num_args == 0)
5218 {
5219 target->SetAllStopHooksActiveState (m_enable);
5220 }
5221 else
5222 {
5223 for (size_t i = 0; i < num_args; i++)
5224 {
5225 lldb::user_id_t user_id = Args::StringToUInt32 (command.GetArgumentAtIndex(i), 0, 0, &success);
5226 if (!success)
5227 {
Greg Clayton7260f622011-04-18 08:33:37 +00005228 result.AppendErrorWithFormat ("invalid stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Ingham9575d842011-03-11 03:53:59 +00005229 result.SetStatus(eReturnStatusFailed);
5230 return false;
5231 }
5232 success = target->SetStopHookActiveStateByID (user_id, m_enable);
5233 if (!success)
5234 {
Greg Clayton7260f622011-04-18 08:33:37 +00005235 result.AppendErrorWithFormat ("unknown stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Ingham9575d842011-03-11 03:53:59 +00005236 result.SetStatus(eReturnStatusFailed);
5237 return false;
5238 }
5239 }
5240 }
5241 result.SetStatus (eReturnStatusSuccessFinishNoResult);
5242 }
5243 else
5244 {
Greg Clayton7260f622011-04-18 08:33:37 +00005245 result.AppendError ("invalid target\n");
Jim Ingham9575d842011-03-11 03:53:59 +00005246 result.SetStatus (eReturnStatusFailed);
5247 }
5248 return result.Succeeded();
5249 }
5250private:
5251 bool m_enable;
5252};
5253
5254#pragma mark CommandObjectTargetStopHookList
5255
5256//-------------------------------------------------------------------------
5257// CommandObjectTargetStopHookList
5258//-------------------------------------------------------------------------
5259
Jim Ingham5a988412012-06-08 21:56:10 +00005260class CommandObjectTargetStopHookList : public CommandObjectParsed
Jim Ingham9575d842011-03-11 03:53:59 +00005261{
5262public:
5263
5264 CommandObjectTargetStopHookList (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +00005265 CommandObjectParsed (interpreter,
5266 "target stop-hook list",
5267 "List all stop-hooks.",
5268 "target stop-hook list [<type>]")
Jim Ingham9575d842011-03-11 03:53:59 +00005269 {
5270 }
5271
5272 ~CommandObjectTargetStopHookList ()
5273 {
5274 }
5275
Jim Ingham5a988412012-06-08 21:56:10 +00005276protected:
Jim Ingham9575d842011-03-11 03:53:59 +00005277 bool
Jim Ingham5a988412012-06-08 21:56:10 +00005278 DoExecute (Args& command, CommandReturnObject &result)
Jim Ingham9575d842011-03-11 03:53:59 +00005279 {
5280 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Johnny Chenfaa5c132011-11-29 23:56:14 +00005281 if (!target)
Jim Ingham9575d842011-03-11 03:53:59 +00005282 {
Greg Clayton7260f622011-04-18 08:33:37 +00005283 result.AppendError ("invalid target\n");
Jim Ingham9575d842011-03-11 03:53:59 +00005284 result.SetStatus (eReturnStatusFailed);
Jason Molendaeffcd2a2011-09-23 21:15:42 +00005285 return result.Succeeded();
Jim Ingham9575d842011-03-11 03:53:59 +00005286 }
5287
5288 size_t num_hooks = target->GetNumStopHooks ();
5289 if (num_hooks == 0)
5290 {
5291 result.GetOutputStream().PutCString ("No stop hooks.\n");
5292 }
5293 else
5294 {
5295 for (size_t i = 0; i < num_hooks; i++)
5296 {
5297 Target::StopHookSP this_hook = target->GetStopHookAtIndex (i);
5298 if (i > 0)
5299 result.GetOutputStream().PutCString ("\n");
5300 this_hook->GetDescription (&(result.GetOutputStream()), eDescriptionLevelFull);
5301 }
5302 }
Johnny Chend0cff1e2011-11-30 19:09:20 +00005303 result.SetStatus (eReturnStatusSuccessFinishResult);
Jim Ingham9575d842011-03-11 03:53:59 +00005304 return result.Succeeded();
5305 }
5306};
5307
5308#pragma mark CommandObjectMultiwordTargetStopHooks
5309//-------------------------------------------------------------------------
5310// CommandObjectMultiwordTargetStopHooks
5311//-------------------------------------------------------------------------
5312
5313class CommandObjectMultiwordTargetStopHooks : public CommandObjectMultiword
5314{
5315public:
5316
5317 CommandObjectMultiwordTargetStopHooks (CommandInterpreter &interpreter) :
5318 CommandObjectMultiword (interpreter,
5319 "target stop-hook",
5320 "A set of commands for operating on debugger target stop-hooks.",
5321 "target stop-hook <subcommand> [<subcommand-options>]")
5322 {
5323 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetStopHookAdd (interpreter)));
5324 LoadSubCommand ("delete", CommandObjectSP (new CommandObjectTargetStopHookDelete (interpreter)));
5325 LoadSubCommand ("disable", CommandObjectSP (new CommandObjectTargetStopHookEnableDisable (interpreter,
5326 false,
5327 "target stop-hook disable [<id>]",
5328 "Disable a stop-hook.",
5329 "target stop-hook disable")));
5330 LoadSubCommand ("enable", CommandObjectSP (new CommandObjectTargetStopHookEnableDisable (interpreter,
5331 true,
5332 "target stop-hook enable [<id>]",
5333 "Enable a stop-hook.",
5334 "target stop-hook enable")));
5335 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetStopHookList (interpreter)));
5336 }
5337
5338 ~CommandObjectMultiwordTargetStopHooks()
5339 {
5340 }
5341};
5342
5343
Chris Lattner30fdc8d2010-06-08 16:52:24 +00005344
5345#pragma mark CommandObjectMultiwordTarget
5346
5347//-------------------------------------------------------------------------
5348// CommandObjectMultiwordTarget
5349//-------------------------------------------------------------------------
5350
Greg Clayton66111032010-06-23 01:19:29 +00005351CommandObjectMultiwordTarget::CommandObjectMultiwordTarget (CommandInterpreter &interpreter) :
Greg Claytona7015092010-09-18 01:14:36 +00005352 CommandObjectMultiword (interpreter,
5353 "target",
Chris Lattner30fdc8d2010-06-08 16:52:24 +00005354 "A set of commands for operating on debugger targets.",
5355 "target <subcommand> [<subcommand-options>]")
5356{
Greg Clayton7260f622011-04-18 08:33:37 +00005357
5358 LoadSubCommand ("create", CommandObjectSP (new CommandObjectTargetCreate (interpreter)));
Greg Clayton3418c852011-08-10 02:10:13 +00005359 LoadSubCommand ("delete", CommandObjectSP (new CommandObjectTargetDelete (interpreter)));
Greg Clayton7260f622011-04-18 08:33:37 +00005360 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetList (interpreter)));
5361 LoadSubCommand ("select", CommandObjectSP (new CommandObjectTargetSelect (interpreter)));
Jim Ingham9575d842011-03-11 03:53:59 +00005362 LoadSubCommand ("stop-hook", CommandObjectSP (new CommandObjectMultiwordTargetStopHooks (interpreter)));
Greg Claytoneffe5c92011-05-03 22:09:39 +00005363 LoadSubCommand ("modules", CommandObjectSP (new CommandObjectTargetModules (interpreter)));
Greg Claytone72dfb32012-02-24 01:59:29 +00005364 LoadSubCommand ("symbols", CommandObjectSP (new CommandObjectTargetSymbols (interpreter)));
Greg Clayton644247c2011-07-07 01:59:51 +00005365 LoadSubCommand ("variable", CommandObjectSP (new CommandObjectTargetVariable (interpreter)));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00005366}
5367
5368CommandObjectMultiwordTarget::~CommandObjectMultiwordTarget ()
5369{
5370}
5371
Greg Clayton7260f622011-04-18 08:33:37 +00005372