blob: ec48de6960d46fe5ef506af6b6c64fa996dfb4d6 [file] [log] [blame]
Chris Lattner24943d22010-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
10#include "CommandObjectTarget.h"
11
12// C Includes
13#include <errno.h>
Greg Clayton81040f42011-02-01 01:13:32 +000014
Chris Lattner24943d22010-06-08 16:52:24 +000015// C++ Includes
16// Other libraries and framework includes
17// Project includes
Jim Ingham84cdc152010-06-15 19:49:27 +000018#include "lldb/Interpreter/Args.h"
Chris Lattner24943d22010-06-08 16:52:24 +000019#include "lldb/Core/Debugger.h"
Jim Inghamd60d94a2011-03-11 03:53:59 +000020#include "lldb/Core/InputReader.h"
Greg Claytone1f50b92011-05-03 22:09:39 +000021#include "lldb/Core/Section.h"
Greg Claytonabe0fed2011-04-18 08:33:37 +000022#include "lldb/Core/State.h"
Chris Lattner24943d22010-06-08 16:52:24 +000023#include "lldb/Core/Timer.h"
Greg Clayton801417e2011-07-07 01:59:51 +000024#include "lldb/Core/ValueObjectVariable.h"
Chris Lattner24943d22010-06-08 16:52:24 +000025#include "lldb/Interpreter/CommandInterpreter.h"
26#include "lldb/Interpreter/CommandReturnObject.h"
Greg Claytone1f50b92011-05-03 22:09:39 +000027#include "lldb/Interpreter/Options.h"
Greg Claytonabe0fed2011-04-18 08:33:37 +000028#include "lldb/Interpreter/OptionGroupArchitecture.h"
Greg Clayton5beb99d2011-08-11 02:48:45 +000029#include "lldb/Interpreter/OptionGroupBoolean.h"
Greg Claytone1f50b92011-05-03 22:09:39 +000030#include "lldb/Interpreter/OptionGroupFile.h"
Greg Claytona42880a2011-10-25 06:44:01 +000031#include "lldb/Interpreter/OptionGroupFormat.h"
Greg Clayton368f8222011-07-07 04:38:25 +000032#include "lldb/Interpreter/OptionGroupVariable.h"
Greg Claytonabe0fed2011-04-18 08:33:37 +000033#include "lldb/Interpreter/OptionGroupPlatform.h"
Greg Claytone1f50b92011-05-03 22:09:39 +000034#include "lldb/Interpreter/OptionGroupUInt64.h"
35#include "lldb/Interpreter/OptionGroupUUID.h"
Greg Clayton801417e2011-07-07 01:59:51 +000036#include "lldb/Interpreter/OptionGroupValueObjectDisplay.h"
Greg Claytone1f50b92011-05-03 22:09:39 +000037#include "lldb/Symbol/LineTable.h"
38#include "lldb/Symbol/ObjectFile.h"
39#include "lldb/Symbol/SymbolFile.h"
40#include "lldb/Symbol/SymbolVendor.h"
Greg Clayton801417e2011-07-07 01:59:51 +000041#include "lldb/Symbol/VariableList.h"
Chris Lattner24943d22010-06-08 16:52:24 +000042#include "lldb/Target/Process.h"
43#include "lldb/Target/StackFrame.h"
44#include "lldb/Target/Thread.h"
Jim Inghamd60d94a2011-03-11 03:53:59 +000045#include "lldb/Target/ThreadSpec.h"
Chris Lattner24943d22010-06-08 16:52:24 +000046
47using namespace lldb;
48using namespace lldb_private;
49
Greg Claytonabe0fed2011-04-18 08:33:37 +000050
51
52static void
53DumpTargetInfo (uint32_t target_idx, Target *target, const char *prefix_cstr, bool show_stopped_process_status, Stream &strm)
54{
Greg Clayton52c8b6e2011-04-19 04:19:37 +000055 const ArchSpec &target_arch = target->GetArchitecture();
Greg Claytonabe0fed2011-04-18 08:33:37 +000056
Greg Clayton5beb99d2011-08-11 02:48:45 +000057 Module *exe_module = target->GetExecutableModulePointer();
Greg Claytonabe0fed2011-04-18 08:33:37 +000058 char exe_path[PATH_MAX];
59 bool exe_valid = false;
Greg Clayton5beb99d2011-08-11 02:48:45 +000060 if (exe_module)
61 exe_valid = exe_module->GetFileSpec().GetPath (exe_path, sizeof(exe_path));
Greg Claytonabe0fed2011-04-18 08:33:37 +000062
63 if (!exe_valid)
64 ::strcpy (exe_path, "<none>");
65
66 strm.Printf ("%starget #%u: %s", prefix_cstr ? prefix_cstr : "", target_idx, exe_path);
67
68 uint32_t properties = 0;
69 if (target_arch.IsValid())
70 {
71 strm.Printf ("%sarch=%s", properties++ > 0 ? ", " : " ( ", target_arch.GetTriple().str().c_str());
72 properties++;
73 }
74 PlatformSP platform_sp (target->GetPlatform());
75 if (platform_sp)
76 strm.Printf ("%splatform=%s", properties++ > 0 ? ", " : " ( ", platform_sp->GetName());
77
78 ProcessSP process_sp (target->GetProcessSP());
79 bool show_process_status = false;
80 if (process_sp)
81 {
82 lldb::pid_t pid = process_sp->GetID();
83 StateType state = process_sp->GetState();
84 if (show_stopped_process_status)
Greg Clayton20206082011-11-17 01:23:07 +000085 show_process_status = StateIsStoppedState(state, true);
Greg Claytonabe0fed2011-04-18 08:33:37 +000086 const char *state_cstr = StateAsCString (state);
87 if (pid != LLDB_INVALID_PROCESS_ID)
Greg Claytond9919d32011-12-01 23:28:38 +000088 strm.Printf ("%spid=%llu", properties++ > 0 ? ", " : " ( ", pid);
Greg Claytonabe0fed2011-04-18 08:33:37 +000089 strm.Printf ("%sstate=%s", properties++ > 0 ? ", " : " ( ", state_cstr);
90 }
91 if (properties > 0)
92 strm.PutCString (" )\n");
93 else
94 strm.EOL();
95 if (show_process_status)
96 {
97 const bool only_threads_with_stop_reason = true;
98 const uint32_t start_frame = 0;
99 const uint32_t num_frames = 1;
100 const uint32_t num_frames_with_source = 1;
101 process_sp->GetStatus (strm);
102 process_sp->GetThreadStatus (strm,
103 only_threads_with_stop_reason,
104 start_frame,
105 num_frames,
106 num_frames_with_source);
107
108 }
109}
110
111static uint32_t
112DumpTargetList (TargetList &target_list, bool show_stopped_process_status, Stream &strm)
113{
114 const uint32_t num_targets = target_list.GetNumTargets();
115 if (num_targets)
116 {
117 TargetSP selected_target_sp (target_list.GetSelectedTarget());
118 strm.PutCString ("Current targets:\n");
119 for (uint32_t i=0; i<num_targets; ++i)
120 {
121 TargetSP target_sp (target_list.GetTargetAtIndex (i));
122 if (target_sp)
123 {
124 bool is_selected = target_sp.get() == selected_target_sp.get();
125 DumpTargetInfo (i,
126 target_sp.get(),
127 is_selected ? "* " : " ",
128 show_stopped_process_status,
129 strm);
130 }
131 }
132 }
133 return num_targets;
134}
135#pragma mark CommandObjectTargetCreate
136
137//-------------------------------------------------------------------------
138// "target create"
139//-------------------------------------------------------------------------
140
141class CommandObjectTargetCreate : public CommandObject
142{
143public:
144 CommandObjectTargetCreate(CommandInterpreter &interpreter) :
145 CommandObject (interpreter,
146 "target create",
147 "Create a target using the argument as the main executable.",
148 NULL),
149 m_option_group (interpreter),
Greg Clayton801417e2011-07-07 01:59:51 +0000150 m_arch_option (),
Greg Clayton46c9a352012-02-09 06:16:32 +0000151 m_platform_options(true), // Do include the "--platform" option in the platform settings by passing true
152 m_core_file (LLDB_OPT_SET_1, false, "core-file", 'c', 0, eArgTypePath, "Fullpath to a core file to use for this target.")
Greg Claytonabe0fed2011-04-18 08:33:37 +0000153 {
154 CommandArgumentEntry arg;
155 CommandArgumentData file_arg;
156
157 // Define the first (and only) variant of this arg.
158 file_arg.arg_type = eArgTypeFilename;
159 file_arg.arg_repetition = eArgRepeatPlain;
160
161 // There is only one variant this argument could be; put it into the argument entry.
162 arg.push_back (file_arg);
163
164 // Push the data for the first argument into the m_arguments vector.
165 m_arguments.push_back (arg);
166
Greg Clayton801417e2011-07-07 01:59:51 +0000167 m_option_group.Append (&m_arch_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Claytonabe0fed2011-04-18 08:33:37 +0000168 m_option_group.Append (&m_platform_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton46c9a352012-02-09 06:16:32 +0000169 m_option_group.Append (&m_core_file, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Claytonabe0fed2011-04-18 08:33:37 +0000170 m_option_group.Finalize();
171 }
172
173 ~CommandObjectTargetCreate ()
174 {
175 }
176
177 Options *
178 GetOptions ()
179 {
180 return &m_option_group;
181 }
182
183 bool
184 Execute (Args& command, CommandReturnObject &result)
185 {
186 const int argc = command.GetArgumentCount();
Greg Clayton46c9a352012-02-09 06:16:32 +0000187 FileSpec core_file (m_core_file.GetOptionValue().GetCurrentValue());
188
189 if (argc == 1 || core_file)
Greg Claytonabe0fed2011-04-18 08:33:37 +0000190 {
191 const char *file_path = command.GetArgumentAtIndex(0);
192 Timer scoped_timer(__PRETTY_FUNCTION__, "(lldb) target create '%s'", file_path);
Greg Clayton46c9a352012-02-09 06:16:32 +0000193 FileSpec file_spec;
194
195 if (file_path)
196 file_spec.SetFile (file_path, true);
Greg Clayton3e8c25f2011-09-24 00:52:29 +0000197
Greg Claytonabe0fed2011-04-18 08:33:37 +0000198 TargetSP target_sp;
199 Debugger &debugger = m_interpreter.GetDebugger();
Greg Clayton3e8c25f2011-09-24 00:52:29 +0000200 const char *arch_cstr = m_arch_option.GetArchitectureName();
201 const bool get_dependent_files = true;
202 Error error (debugger.GetTargetList().CreateTarget (debugger,
203 file_spec,
204 arch_cstr,
205 get_dependent_files,
206 &m_platform_options,
207 target_sp));
208
Greg Claytonabe0fed2011-04-18 08:33:37 +0000209 if (target_sp)
210 {
211 debugger.GetTargetList().SetSelectedTarget(target_sp.get());
Greg Clayton46c9a352012-02-09 06:16:32 +0000212 if (core_file)
213 {
Greg Clayton46c9a352012-02-09 06:16:32 +0000214 char core_path[PATH_MAX];
215 core_file.GetPath(core_path, sizeof(core_path));
Greg Clayton9ce95382012-02-13 23:10:39 +0000216 if (core_file.Exists())
Greg Clayton46c9a352012-02-09 06:16:32 +0000217 {
Greg Clayton9ce95382012-02-13 23:10:39 +0000218 FileSpec core_file_dir;
219 core_file_dir.GetDirectory() = core_file.GetDirectory();
220 target_sp->GetExecutableSearchPaths ().Append (core_file_dir);
Greg Clayton46c9a352012-02-09 06:16:32 +0000221
Greg Clayton9ce95382012-02-13 23:10:39 +0000222 ProcessSP process_sp (target_sp->CreateProcess (m_interpreter.GetDebugger().GetListener(), NULL, &core_file));
223
224 if (process_sp)
Greg Clayton46c9a352012-02-09 06:16:32 +0000225 {
Greg Clayton9ce95382012-02-13 23:10:39 +0000226 // Seems wierd that we Launch a core file, but that is
227 // what we do!
228 error = process_sp->LoadCore();
229
230 if (error.Fail())
231 {
232 result.AppendError(error.AsCString("can't find plug-in for core file"));
233 result.SetStatus (eReturnStatusFailed);
234 return false;
235 }
236 else
237 {
238 result.AppendMessageWithFormat ("Core file '%s' (%s) was loaded.\n", core_path, target_sp->GetArchitecture().GetArchitectureName());
239 result.SetStatus (eReturnStatusSuccessFinishNoResult);
240 }
Greg Clayton46c9a352012-02-09 06:16:32 +0000241 }
242 else
243 {
Greg Clayton9ce95382012-02-13 23:10:39 +0000244 result.AppendErrorWithFormat ("Unable to find process plug-in for core file '%s'\n", core_path);
245 result.SetStatus (eReturnStatusFailed);
Greg Clayton46c9a352012-02-09 06:16:32 +0000246 }
247 }
248 else
249 {
Greg Clayton9ce95382012-02-13 23:10:39 +0000250 result.AppendErrorWithFormat ("Core file '%s' does not exist\n", core_path);
Greg Clayton46c9a352012-02-09 06:16:32 +0000251 result.SetStatus (eReturnStatusFailed);
252 }
253 }
254 else
255 {
256 result.AppendMessageWithFormat ("Current executable set to '%s' (%s).\n", file_path, target_sp->GetArchitecture().GetArchitectureName());
257 result.SetStatus (eReturnStatusSuccessFinishNoResult);
258 }
Greg Claytonabe0fed2011-04-18 08:33:37 +0000259 }
260 else
261 {
262 result.AppendError(error.AsCString());
263 result.SetStatus (eReturnStatusFailed);
264 }
265 }
266 else
267 {
Greg Clayton46c9a352012-02-09 06:16:32 +0000268 result.AppendErrorWithFormat("'%s' takes exactly one executable path argument, or use the --core-file option.\n", m_cmd_name.c_str());
Greg Claytonabe0fed2011-04-18 08:33:37 +0000269 result.SetStatus (eReturnStatusFailed);
270 }
271 return result.Succeeded();
272
273 }
274
275 int
276 HandleArgumentCompletion (Args &input,
277 int &cursor_index,
278 int &cursor_char_position,
279 OptionElementVector &opt_element_vector,
280 int match_start_point,
281 int max_return_elements,
282 bool &word_complete,
283 StringList &matches)
284 {
285 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
286 completion_str.erase (cursor_char_position);
287
288 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
289 CommandCompletions::eDiskFileCompletion,
290 completion_str.c_str(),
291 match_start_point,
292 max_return_elements,
293 NULL,
294 word_complete,
295 matches);
296 return matches.GetSize();
297 }
298private:
299 OptionGroupOptions m_option_group;
Greg Clayton801417e2011-07-07 01:59:51 +0000300 OptionGroupArchitecture m_arch_option;
Greg Claytonabe0fed2011-04-18 08:33:37 +0000301 OptionGroupPlatform m_platform_options;
Greg Clayton46c9a352012-02-09 06:16:32 +0000302 OptionGroupFile m_core_file;
Greg Claytonabe0fed2011-04-18 08:33:37 +0000303
304};
305
306#pragma mark CommandObjectTargetList
307
308//----------------------------------------------------------------------
309// "target list"
310//----------------------------------------------------------------------
311
312class CommandObjectTargetList : public CommandObject
313{
314public:
315 CommandObjectTargetList (CommandInterpreter &interpreter) :
316 CommandObject (interpreter,
317 "target list",
318 "List all current targets in the current debug session.",
319 NULL,
320 0)
321 {
322 }
323
324 virtual
325 ~CommandObjectTargetList ()
326 {
327 }
328
329 virtual bool
330 Execute (Args& args, CommandReturnObject &result)
331 {
332 if (args.GetArgumentCount() == 0)
333 {
334 Stream &strm = result.GetOutputStream();
335
336 bool show_stopped_process_status = false;
337 if (DumpTargetList (m_interpreter.GetDebugger().GetTargetList(), show_stopped_process_status, strm) == 0)
338 {
339 strm.PutCString ("No targets.\n");
340 }
Johnny Chen44dc9d32011-04-18 21:08:05 +0000341 result.SetStatus (eReturnStatusSuccessFinishResult);
Greg Claytonabe0fed2011-04-18 08:33:37 +0000342 }
343 else
344 {
345 result.AppendError ("the 'target list' command takes no arguments\n");
346 result.SetStatus (eReturnStatusFailed);
347 }
348 return result.Succeeded();
349 }
350};
351
352
353#pragma mark CommandObjectTargetSelect
354
355//----------------------------------------------------------------------
356// "target select"
357//----------------------------------------------------------------------
358
359class CommandObjectTargetSelect : public CommandObject
360{
361public:
362 CommandObjectTargetSelect (CommandInterpreter &interpreter) :
363 CommandObject (interpreter,
364 "target select",
365 "Select a target as the current target by target index.",
366 NULL,
367 0)
368 {
369 }
370
371 virtual
372 ~CommandObjectTargetSelect ()
373 {
374 }
375
376 virtual bool
377 Execute (Args& args, CommandReturnObject &result)
378 {
379 if (args.GetArgumentCount() == 1)
380 {
381 bool success = false;
382 const char *target_idx_arg = args.GetArgumentAtIndex(0);
383 uint32_t target_idx = Args::StringToUInt32 (target_idx_arg, UINT32_MAX, 0, &success);
384 if (success)
385 {
386 TargetList &target_list = m_interpreter.GetDebugger().GetTargetList();
387 const uint32_t num_targets = target_list.GetNumTargets();
388 if (target_idx < num_targets)
389 {
390 TargetSP target_sp (target_list.GetTargetAtIndex (target_idx));
391 if (target_sp)
392 {
393 Stream &strm = result.GetOutputStream();
394 target_list.SetSelectedTarget (target_sp.get());
395 bool show_stopped_process_status = false;
396 DumpTargetList (target_list, show_stopped_process_status, strm);
Johnny Chen44dc9d32011-04-18 21:08:05 +0000397 result.SetStatus (eReturnStatusSuccessFinishResult);
Greg Claytonabe0fed2011-04-18 08:33:37 +0000398 }
399 else
400 {
401 result.AppendErrorWithFormat ("target #%u is NULL in target list\n", target_idx);
402 result.SetStatus (eReturnStatusFailed);
403 }
404 }
405 else
406 {
407 result.AppendErrorWithFormat ("index %u is out of range, valid target indexes are 0 - %u\n",
408 target_idx,
409 num_targets - 1);
410 result.SetStatus (eReturnStatusFailed);
411 }
412 }
413 else
414 {
415 result.AppendErrorWithFormat("invalid index string value '%s'\n", target_idx_arg);
416 result.SetStatus (eReturnStatusFailed);
417 }
418 }
419 else
420 {
421 result.AppendError ("'target select' takes a single argument: a target index\n");
422 result.SetStatus (eReturnStatusFailed);
423 }
424 return result.Succeeded();
425 }
426};
427
Greg Clayton153ccd72011-08-10 02:10:13 +0000428#pragma mark CommandObjectTargetSelect
429
430//----------------------------------------------------------------------
431// "target delete"
432//----------------------------------------------------------------------
433
434class CommandObjectTargetDelete : public CommandObject
435{
436public:
437 CommandObjectTargetDelete (CommandInterpreter &interpreter) :
Greg Clayton5beb99d2011-08-11 02:48:45 +0000438 CommandObject (interpreter,
439 "target delete",
440 "Delete one or more targets by target index.",
441 NULL,
442 0),
443 m_option_group (interpreter),
444 m_cleanup_option (LLDB_OPT_SET_1, false, "clean", 'c', 0, eArgTypeNone, "Perform extra cleanup to minimize memory consumption after deleting the target.", false)
Greg Clayton153ccd72011-08-10 02:10:13 +0000445 {
Greg Clayton5beb99d2011-08-11 02:48:45 +0000446 m_option_group.Append (&m_cleanup_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
447 m_option_group.Finalize();
Greg Clayton153ccd72011-08-10 02:10:13 +0000448 }
449
450 virtual
451 ~CommandObjectTargetDelete ()
452 {
453 }
454
455 virtual bool
456 Execute (Args& args, CommandReturnObject &result)
457 {
458 const size_t argc = args.GetArgumentCount();
459 std::vector<TargetSP> delete_target_list;
460 TargetList &target_list = m_interpreter.GetDebugger().GetTargetList();
461 bool success = true;
462 TargetSP target_sp;
463 if (argc > 0)
464 {
465 const uint32_t num_targets = target_list.GetNumTargets();
466 for (uint32_t arg_idx = 0; success && arg_idx < argc; ++arg_idx)
467 {
468 const char *target_idx_arg = args.GetArgumentAtIndex(arg_idx);
469 uint32_t target_idx = Args::StringToUInt32 (target_idx_arg, UINT32_MAX, 0, &success);
470 if (success)
471 {
472 if (target_idx < num_targets)
473 {
474 target_sp = target_list.GetTargetAtIndex (target_idx);
475 if (target_sp)
476 {
477 delete_target_list.push_back (target_sp);
478 continue;
479 }
480 }
481 result.AppendErrorWithFormat ("target index %u is out of range, valid target indexes are 0 - %u\n",
482 target_idx,
483 num_targets - 1);
484 result.SetStatus (eReturnStatusFailed);
485 success = false;
486 }
487 else
488 {
489 result.AppendErrorWithFormat("invalid target index '%s'\n", target_idx_arg);
490 result.SetStatus (eReturnStatusFailed);
491 success = false;
492 }
493 }
494
495 }
496 else
497 {
498 target_sp = target_list.GetSelectedTarget();
499 if (target_sp)
500 {
501 delete_target_list.push_back (target_sp);
502 }
503 else
504 {
505 result.AppendErrorWithFormat("no target is currently selected\n");
506 result.SetStatus (eReturnStatusFailed);
507 success = false;
508 }
509 }
510 if (success)
511 {
512 const size_t num_targets_to_delete = delete_target_list.size();
513 for (size_t idx = 0; idx < num_targets_to_delete; ++idx)
514 {
515 target_sp = delete_target_list[idx];
516 target_list.DeleteTarget(target_sp);
517 target_sp->Destroy();
518 }
Greg Clayton5beb99d2011-08-11 02:48:45 +0000519 // If "--clean" was specified, prune any orphaned shared modules from
520 // the global shared module list
521 if (m_cleanup_option.GetOptionValue ())
522 {
Greg Clayton860b9ea2012-04-09 20:22:01 +0000523 const bool mandatory = true;
524 ModuleList::RemoveOrphanSharedModules(mandatory);
Greg Clayton5beb99d2011-08-11 02:48:45 +0000525 }
Greg Clayton153ccd72011-08-10 02:10:13 +0000526 result.GetOutputStream().Printf("%u targets deleted.\n", (uint32_t)num_targets_to_delete);
527 result.SetStatus(eReturnStatusSuccessFinishResult);
528 }
529
530 return result.Succeeded();
531 }
Greg Clayton5beb99d2011-08-11 02:48:45 +0000532
533 Options *
534 GetOptions ()
535 {
536 return &m_option_group;
537 }
538
539protected:
540 OptionGroupOptions m_option_group;
541 OptionGroupBoolean m_cleanup_option;
Greg Clayton153ccd72011-08-10 02:10:13 +0000542};
543
Greg Claytonabe0fed2011-04-18 08:33:37 +0000544
Greg Clayton801417e2011-07-07 01:59:51 +0000545#pragma mark CommandObjectTargetVariable
546
547//----------------------------------------------------------------------
548// "target variable"
549//----------------------------------------------------------------------
550
551class CommandObjectTargetVariable : public CommandObject
552{
553public:
554 CommandObjectTargetVariable (CommandInterpreter &interpreter) :
555 CommandObject (interpreter,
Johnny Chen34bfa4f2011-07-12 22:34:30 +0000556 "target variable",
557 "Read global variable(s) prior to running your binary.",
Greg Clayton801417e2011-07-07 01:59:51 +0000558 NULL,
559 0),
560 m_option_group (interpreter),
Greg Clayton368f8222011-07-07 04:38:25 +0000561 m_option_variable (false), // Don't include frame options
Greg Claytona42880a2011-10-25 06:44:01 +0000562 m_option_format (eFormatDefault),
Greg Clayton801417e2011-07-07 01:59:51 +0000563 m_option_compile_units (LLDB_OPT_SET_1, false, "file", 'f', 0, eArgTypePath, "A basename or fullpath to a file that contains global variables. This option can be specified multiple times."),
564 m_option_shared_libraries (LLDB_OPT_SET_1, false, "shlib",'s', 0, eArgTypePath, "A basename or fullpath to a shared library to use in the search for global variables. This option can be specified multiple times."),
565 m_varobj_options()
566 {
Johnny Chen24b81e32011-08-22 22:22:00 +0000567 CommandArgumentEntry arg;
568 CommandArgumentData var_name_arg;
569
570 // Define the first (and only) variant of this arg.
571 var_name_arg.arg_type = eArgTypeVarName;
572 var_name_arg.arg_repetition = eArgRepeatPlus;
573
574 // There is only one variant this argument could be; put it into the argument entry.
575 arg.push_back (var_name_arg);
576
577 // Push the data for the first argument into the m_arguments vector.
578 m_arguments.push_back (arg);
579
Greg Clayton801417e2011-07-07 01:59:51 +0000580 m_option_group.Append (&m_varobj_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton368f8222011-07-07 04:38:25 +0000581 m_option_group.Append (&m_option_variable, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton24a6bd92011-10-27 17:55:14 +0000582 m_option_group.Append (&m_option_format, OptionGroupFormat::OPTION_GROUP_FORMAT | OptionGroupFormat::OPTION_GROUP_GDB_FMT, LLDB_OPT_SET_1);
Greg Clayton801417e2011-07-07 01:59:51 +0000583 m_option_group.Append (&m_option_compile_units, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
584 m_option_group.Append (&m_option_shared_libraries, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
585 m_option_group.Finalize();
586 }
587
588 virtual
589 ~CommandObjectTargetVariable ()
590 {
591 }
Greg Clayton5d81f492011-07-08 21:46:14 +0000592
593 void
594 DumpValueObject (Stream &s, VariableSP &var_sp, ValueObjectSP &valobj_sp, const char *root_name)
595 {
Enrico Granata19030d82011-08-15 18:01:31 +0000596 ValueObject::DumpValueObjectOptions options;
597
Enrico Granata3069c622012-03-01 04:24:26 +0000598 options.SetMaximumPointerDepth(m_varobj_options.ptr_depth)
Enrico Granata19030d82011-08-15 18:01:31 +0000599 .SetMaximumDepth(m_varobj_options.max_depth)
600 .SetShowTypes(m_varobj_options.show_types)
601 .SetShowLocation(m_varobj_options.show_location)
602 .SetUseObjectiveC(m_varobj_options.use_objc)
603 .SetUseDynamicType(m_varobj_options.use_dynamic)
Enrico Granatacf09f882012-03-19 22:58:49 +0000604 .SetUseSyntheticValue(m_varobj_options.use_synth)
Enrico Granata19030d82011-08-15 18:01:31 +0000605 .SetFlatOutput(m_varobj_options.flat_output)
606 .SetOmitSummaryDepth(m_varobj_options.no_summary_depth)
607 .SetIgnoreCap(m_varobj_options.ignore_cap);
608
Greg Clayton5d81f492011-07-08 21:46:14 +0000609 switch (var_sp->GetScope())
610 {
611 case eValueTypeVariableGlobal:
612 if (m_option_variable.show_scope)
613 s.PutCString("GLOBAL: ");
614 break;
615
616 case eValueTypeVariableStatic:
617 if (m_option_variable.show_scope)
618 s.PutCString("STATIC: ");
619 break;
620
621 case eValueTypeVariableArgument:
622 if (m_option_variable.show_scope)
623 s.PutCString(" ARG: ");
624 break;
625
626 case eValueTypeVariableLocal:
627 if (m_option_variable.show_scope)
628 s.PutCString(" LOCAL: ");
629 break;
630
631 default:
632 break;
633 }
634
Greg Claytonfb816422011-07-10 19:21:23 +0000635 if (m_option_variable.show_decl)
Greg Clayton5d81f492011-07-08 21:46:14 +0000636 {
Greg Claytonfb816422011-07-10 19:21:23 +0000637 bool show_fullpaths = false;
638 bool show_module = true;
639 if (var_sp->DumpDeclaration(&s, show_fullpaths, show_module))
640 s.PutCString (": ");
Greg Clayton5d81f492011-07-08 21:46:14 +0000641 }
642
Greg Claytona42880a2011-10-25 06:44:01 +0000643 const Format format = m_option_format.GetFormat();
Greg Clayton5d81f492011-07-08 21:46:14 +0000644 if (format != eFormatDefault)
Enrico Granata3069c622012-03-01 04:24:26 +0000645 options.SetFormat(format);
646
647 options.SetRootValueObjectName(root_name);
Greg Clayton5d81f492011-07-08 21:46:14 +0000648
649 ValueObject::DumpValueObject (s,
650 valobj_sp.get(),
Enrico Granata3069c622012-03-01 04:24:26 +0000651 options);
Greg Clayton5d81f492011-07-08 21:46:14 +0000652
653 }
Greg Clayton801417e2011-07-07 01:59:51 +0000654
Greg Clayton5d81f492011-07-08 21:46:14 +0000655
656 static uint32_t GetVariableCallback (void *baton,
657 const char *name,
658 VariableList &variable_list)
659 {
660 Target *target = static_cast<Target *>(baton);
661 if (target)
662 {
663 return target->GetImages().FindGlobalVariables (ConstString(name),
664 true,
665 UINT32_MAX,
666 variable_list);
667 }
668 return 0;
669 }
670
671
672
Greg Clayton801417e2011-07-07 01:59:51 +0000673 virtual bool
674 Execute (Args& args, CommandReturnObject &result)
675 {
676 ExecutionContext exe_ctx (m_interpreter.GetExecutionContext());
Greg Clayton567e7f32011-09-22 04:58:26 +0000677 Target *target = exe_ctx.GetTargetPtr();
678 if (target)
Greg Clayton801417e2011-07-07 01:59:51 +0000679 {
680 const size_t argc = args.GetArgumentCount();
Greg Claytonfac93882011-10-05 22:17:32 +0000681 Stream &s = result.GetOutputStream();
Greg Clayton801417e2011-07-07 01:59:51 +0000682 if (argc > 0)
683 {
Greg Clayton5d81f492011-07-08 21:46:14 +0000684
Greg Clayton801417e2011-07-07 01:59:51 +0000685 for (size_t idx = 0; idx < argc; ++idx)
686 {
Greg Clayton5d81f492011-07-08 21:46:14 +0000687 VariableList variable_list;
688 ValueObjectList valobj_list;
689
Greg Clayton368f8222011-07-07 04:38:25 +0000690 const char *arg = args.GetArgumentAtIndex(idx);
691 uint32_t matches = 0;
Greg Claytonfb816422011-07-10 19:21:23 +0000692 bool use_var_name = false;
Greg Clayton368f8222011-07-07 04:38:25 +0000693 if (m_option_variable.use_regex)
Greg Clayton801417e2011-07-07 01:59:51 +0000694 {
Greg Clayton368f8222011-07-07 04:38:25 +0000695 RegularExpression regex(arg);
696 if (!regex.IsValid ())
697 {
698 result.GetErrorStream().Printf ("error: invalid regular expression: '%s'\n", arg);
699 result.SetStatus (eReturnStatusFailed);
700 return false;
701 }
Greg Claytonfb816422011-07-10 19:21:23 +0000702 use_var_name = true;
Greg Clayton567e7f32011-09-22 04:58:26 +0000703 matches = target->GetImages().FindGlobalVariables (regex,
704 true,
705 UINT32_MAX,
706 variable_list);
Greg Clayton801417e2011-07-07 01:59:51 +0000707 }
708 else
709 {
Greg Clayton5d81f492011-07-08 21:46:14 +0000710 Error error (Variable::GetValuesForVariableExpressionPath (arg,
Greg Clayton24b03102011-07-09 20:12:33 +0000711 exe_ctx.GetBestExecutionContextScope(),
Greg Clayton5d81f492011-07-08 21:46:14 +0000712 GetVariableCallback,
Greg Clayton567e7f32011-09-22 04:58:26 +0000713 target,
Greg Clayton5d81f492011-07-08 21:46:14 +0000714 variable_list,
715 valobj_list));
Greg Clayton5d81f492011-07-08 21:46:14 +0000716 matches = variable_list.GetSize();
Greg Clayton368f8222011-07-07 04:38:25 +0000717 }
718
719 if (matches == 0)
720 {
721 result.GetErrorStream().Printf ("error: can't find global variable '%s'\n", arg);
722 result.SetStatus (eReturnStatusFailed);
723 return false;
724 }
725 else
726 {
Greg Clayton801417e2011-07-07 01:59:51 +0000727 for (uint32_t global_idx=0; global_idx<matches; ++global_idx)
728 {
Greg Clayton5d81f492011-07-08 21:46:14 +0000729 VariableSP var_sp (variable_list.GetVariableAtIndex(global_idx));
Greg Clayton801417e2011-07-07 01:59:51 +0000730 if (var_sp)
731 {
Greg Clayton5d81f492011-07-08 21:46:14 +0000732 ValueObjectSP valobj_sp (valobj_list.GetValueObjectAtIndex(global_idx));
733 if (!valobj_sp)
Greg Claytonfb816422011-07-10 19:21:23 +0000734 valobj_sp = ValueObjectVariable::Create (exe_ctx.GetBestExecutionContextScope(), var_sp);
Greg Clayton801417e2011-07-07 01:59:51 +0000735
736 if (valobj_sp)
Greg Claytonb304a742011-10-13 18:31:02 +0000737 DumpValueObject (s, var_sp, valobj_sp, use_var_name ? var_sp->GetName().GetCString() : arg);
Greg Clayton801417e2011-07-07 01:59:51 +0000738 }
739 }
740 }
741 }
742 }
743 else
744 {
Greg Claytonfac93882011-10-05 22:17:32 +0000745 bool success = false;
746 StackFrame *frame = exe_ctx.GetFramePtr();
747 CompileUnit *comp_unit = NULL;
748 if (frame)
749 {
750 comp_unit = frame->GetSymbolContext (eSymbolContextCompUnit).comp_unit;
751 if (comp_unit)
752 {
753 const bool can_create = true;
754 VariableListSP comp_unit_varlist_sp (comp_unit->GetVariableList(can_create));
755 if (comp_unit_varlist_sp)
756 {
757 size_t count = comp_unit_varlist_sp->GetSize();
758 if (count > 0)
759 {
Greg Claytona1b9a902011-11-13 04:15:56 +0000760 s.Printf ("Global variables for %s/%s:\n",
Greg Claytonfac93882011-10-05 22:17:32 +0000761 comp_unit->GetDirectory().GetCString(),
762 comp_unit->GetFilename().GetCString());
763
764 success = true;
765 for (uint32_t i=0; i<count; ++i)
766 {
767 VariableSP var_sp (comp_unit_varlist_sp->GetVariableAtIndex(i));
768 if (var_sp)
769 {
770 ValueObjectSP valobj_sp (ValueObjectVariable::Create (exe_ctx.GetBestExecutionContextScope(), var_sp));
771
772 if (valobj_sp)
773 DumpValueObject (s, var_sp, valobj_sp, var_sp->GetName().GetCString());
774 }
775 }
776 }
777 }
778 }
779 }
780 if (!success)
781 {
782 if (frame)
783 {
784 if (comp_unit)
785 result.AppendErrorWithFormat ("no global variables in current compile unit: %s/%s\n",
786 comp_unit->GetDirectory().GetCString(),
787 comp_unit->GetFilename().GetCString());
788 else
789 result.AppendError ("no debug information for frame %u\n", frame->GetFrameIndex());
790 }
791 else
792 result.AppendError ("'target variable' takes one or more global variable names as arguments\n");
793 result.SetStatus (eReturnStatusFailed);
794 }
Greg Clayton801417e2011-07-07 01:59:51 +0000795 }
796 }
797 else
798 {
799 result.AppendError ("invalid target, create a debug target using the 'target create' command");
800 result.SetStatus (eReturnStatusFailed);
801 return false;
802 }
Enrico Granatadb64d952011-08-12 16:42:31 +0000803
804 if (m_interpreter.TruncationWarningNecessary())
805 {
806 result.GetOutputStream().Printf(m_interpreter.TruncationWarningText(),
807 m_cmd_name.c_str());
808 m_interpreter.TruncationWarningGiven();
809 }
810
Greg Clayton801417e2011-07-07 01:59:51 +0000811 return result.Succeeded();
812 }
813
814 Options *
815 GetOptions ()
816 {
817 return &m_option_group;
818 }
819
820protected:
821 OptionGroupOptions m_option_group;
Greg Clayton368f8222011-07-07 04:38:25 +0000822 OptionGroupVariable m_option_variable;
Greg Claytona42880a2011-10-25 06:44:01 +0000823 OptionGroupFormat m_option_format;
Greg Clayton801417e2011-07-07 01:59:51 +0000824 OptionGroupFileList m_option_compile_units;
825 OptionGroupFileList m_option_shared_libraries;
826 OptionGroupValueObjectDisplay m_varobj_options;
827
828};
829
830
Greg Claytone1f50b92011-05-03 22:09:39 +0000831#pragma mark CommandObjectTargetModulesSearchPathsAdd
Chris Lattner24943d22010-06-08 16:52:24 +0000832
Greg Claytone1f50b92011-05-03 22:09:39 +0000833class CommandObjectTargetModulesSearchPathsAdd : public CommandObject
Chris Lattner24943d22010-06-08 16:52:24 +0000834{
835public:
836
Greg Claytone1f50b92011-05-03 22:09:39 +0000837 CommandObjectTargetModulesSearchPathsAdd (CommandInterpreter &interpreter) :
Greg Clayton238c0a12010-09-18 01:14:36 +0000838 CommandObject (interpreter,
Greg Claytone1f50b92011-05-03 22:09:39 +0000839 "target modules search-paths add",
Chris Lattner24943d22010-06-08 16:52:24 +0000840 "Add new image search paths substitution pairs to the current target.",
Caroline Tice43b014a2010-10-04 22:28:36 +0000841 NULL)
Chris Lattner24943d22010-06-08 16:52:24 +0000842 {
Caroline Tice43b014a2010-10-04 22:28:36 +0000843 CommandArgumentEntry arg;
844 CommandArgumentData old_prefix_arg;
845 CommandArgumentData new_prefix_arg;
846
847 // Define the first variant of this arg pair.
848 old_prefix_arg.arg_type = eArgTypeOldPathPrefix;
849 old_prefix_arg.arg_repetition = eArgRepeatPairPlus;
850
851 // Define the first variant of this arg pair.
852 new_prefix_arg.arg_type = eArgTypeNewPathPrefix;
853 new_prefix_arg.arg_repetition = eArgRepeatPairPlus;
854
855 // There are two required arguments that must always occur together, i.e. an argument "pair". Because they
856 // must always occur together, they are treated as two variants of one argument rather than two independent
857 // arguments. Push them both into the first argument position for m_arguments...
858
859 arg.push_back (old_prefix_arg);
860 arg.push_back (new_prefix_arg);
861
862 m_arguments.push_back (arg);
Chris Lattner24943d22010-06-08 16:52:24 +0000863 }
864
Greg Claytone1f50b92011-05-03 22:09:39 +0000865 ~CommandObjectTargetModulesSearchPathsAdd ()
Chris Lattner24943d22010-06-08 16:52:24 +0000866 {
867 }
868
869 bool
Greg Clayton238c0a12010-09-18 01:14:36 +0000870 Execute (Args& command,
Chris Lattner24943d22010-06-08 16:52:24 +0000871 CommandReturnObject &result)
872 {
Greg Clayton238c0a12010-09-18 01:14:36 +0000873 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Chris Lattner24943d22010-06-08 16:52:24 +0000874 if (target)
875 {
876 uint32_t argc = command.GetArgumentCount();
877 if (argc & 1)
878 {
Greg Claytonabe0fed2011-04-18 08:33:37 +0000879 result.AppendError ("add requires an even number of arguments\n");
Chris Lattner24943d22010-06-08 16:52:24 +0000880 result.SetStatus (eReturnStatusFailed);
881 }
882 else
883 {
884 for (uint32_t i=0; i<argc; i+=2)
885 {
886 const char *from = command.GetArgumentAtIndex(i);
887 const char *to = command.GetArgumentAtIndex(i+1);
888
889 if (from[0] && to[0])
890 {
891 bool last_pair = ((argc - i) == 2);
Greg Clayton63094e02010-06-23 01:19:29 +0000892 target->GetImageSearchPathList().Append (ConstString(from),
893 ConstString(to),
894 last_pair); // Notify if this is the last pair
Johnny Chen4d661352011-02-03 00:30:19 +0000895 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Chris Lattner24943d22010-06-08 16:52:24 +0000896 }
897 else
898 {
899 if (from[0])
Greg Claytonabe0fed2011-04-18 08:33:37 +0000900 result.AppendError ("<path-prefix> can't be empty\n");
Chris Lattner24943d22010-06-08 16:52:24 +0000901 else
Greg Claytonabe0fed2011-04-18 08:33:37 +0000902 result.AppendError ("<new-path-prefix> can't be empty\n");
Chris Lattner24943d22010-06-08 16:52:24 +0000903 result.SetStatus (eReturnStatusFailed);
904 }
905 }
906 }
907 }
908 else
909 {
Greg Claytonabe0fed2011-04-18 08:33:37 +0000910 result.AppendError ("invalid target\n");
Chris Lattner24943d22010-06-08 16:52:24 +0000911 result.SetStatus (eReturnStatusFailed);
912 }
913 return result.Succeeded();
914 }
915};
916
Greg Claytone1f50b92011-05-03 22:09:39 +0000917#pragma mark CommandObjectTargetModulesSearchPathsClear
918
919class CommandObjectTargetModulesSearchPathsClear : public CommandObject
Chris Lattner24943d22010-06-08 16:52:24 +0000920{
921public:
922
Greg Claytone1f50b92011-05-03 22:09:39 +0000923 CommandObjectTargetModulesSearchPathsClear (CommandInterpreter &interpreter) :
Greg Clayton238c0a12010-09-18 01:14:36 +0000924 CommandObject (interpreter,
Greg Claytone1f50b92011-05-03 22:09:39 +0000925 "target modules search-paths clear",
Caroline Ticeabb507a2010-09-08 21:06:11 +0000926 "Clear all current image search path substitution pairs from the current target.",
Greg Claytone1f50b92011-05-03 22:09:39 +0000927 "target modules search-paths clear")
Chris Lattner24943d22010-06-08 16:52:24 +0000928 {
929 }
930
Greg Claytone1f50b92011-05-03 22:09:39 +0000931 ~CommandObjectTargetModulesSearchPathsClear ()
Chris Lattner24943d22010-06-08 16:52:24 +0000932 {
933 }
934
935 bool
Greg Clayton238c0a12010-09-18 01:14:36 +0000936 Execute (Args& command,
Chris Lattner24943d22010-06-08 16:52:24 +0000937 CommandReturnObject &result)
938 {
Greg Clayton238c0a12010-09-18 01:14:36 +0000939 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Chris Lattner24943d22010-06-08 16:52:24 +0000940 if (target)
941 {
942 bool notify = true;
943 target->GetImageSearchPathList().Clear(notify);
Johnny Chen4d661352011-02-03 00:30:19 +0000944 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Chris Lattner24943d22010-06-08 16:52:24 +0000945 }
946 else
947 {
Greg Claytonabe0fed2011-04-18 08:33:37 +0000948 result.AppendError ("invalid target\n");
Chris Lattner24943d22010-06-08 16:52:24 +0000949 result.SetStatus (eReturnStatusFailed);
950 }
951 return result.Succeeded();
952 }
953};
954
Greg Claytone1f50b92011-05-03 22:09:39 +0000955#pragma mark CommandObjectTargetModulesSearchPathsInsert
956
957class CommandObjectTargetModulesSearchPathsInsert : public CommandObject
Chris Lattner24943d22010-06-08 16:52:24 +0000958{
959public:
960
Greg Claytone1f50b92011-05-03 22:09:39 +0000961 CommandObjectTargetModulesSearchPathsInsert (CommandInterpreter &interpreter) :
Greg Clayton238c0a12010-09-18 01:14:36 +0000962 CommandObject (interpreter,
Greg Claytone1f50b92011-05-03 22:09:39 +0000963 "target modules search-paths insert",
Caroline Ticeabb507a2010-09-08 21:06:11 +0000964 "Insert a new image search path substitution pair into the current target at the specified index.",
Caroline Tice43b014a2010-10-04 22:28:36 +0000965 NULL)
Chris Lattner24943d22010-06-08 16:52:24 +0000966 {
Caroline Tice43b014a2010-10-04 22:28:36 +0000967 CommandArgumentEntry arg1;
968 CommandArgumentEntry arg2;
969 CommandArgumentData index_arg;
970 CommandArgumentData old_prefix_arg;
971 CommandArgumentData new_prefix_arg;
972
973 // Define the first and only variant of this arg.
974 index_arg.arg_type = eArgTypeIndex;
975 index_arg.arg_repetition = eArgRepeatPlain;
976
977 // Put the one and only variant into the first arg for m_arguments:
978 arg1.push_back (index_arg);
979
980 // Define the first variant of this arg pair.
981 old_prefix_arg.arg_type = eArgTypeOldPathPrefix;
982 old_prefix_arg.arg_repetition = eArgRepeatPairPlus;
983
984 // Define the first variant of this arg pair.
985 new_prefix_arg.arg_type = eArgTypeNewPathPrefix;
986 new_prefix_arg.arg_repetition = eArgRepeatPairPlus;
987
988 // There are two required arguments that must always occur together, i.e. an argument "pair". Because they
989 // must always occur together, they are treated as two variants of one argument rather than two independent
990 // arguments. Push them both into the same argument position for m_arguments...
991
992 arg2.push_back (old_prefix_arg);
993 arg2.push_back (new_prefix_arg);
994
995 // Add arguments to m_arguments.
996 m_arguments.push_back (arg1);
997 m_arguments.push_back (arg2);
Chris Lattner24943d22010-06-08 16:52:24 +0000998 }
999
Greg Claytone1f50b92011-05-03 22:09:39 +00001000 ~CommandObjectTargetModulesSearchPathsInsert ()
Chris Lattner24943d22010-06-08 16:52:24 +00001001 {
1002 }
1003
1004 bool
Greg Clayton238c0a12010-09-18 01:14:36 +00001005 Execute (Args& command,
Chris Lattner24943d22010-06-08 16:52:24 +00001006 CommandReturnObject &result)
1007 {
Greg Clayton238c0a12010-09-18 01:14:36 +00001008 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Chris Lattner24943d22010-06-08 16:52:24 +00001009 if (target)
1010 {
1011 uint32_t argc = command.GetArgumentCount();
1012 // check for at least 3 arguments and an odd nubmer of parameters
1013 if (argc >= 3 && argc & 1)
1014 {
1015 bool success = false;
1016
1017 uint32_t insert_idx = Args::StringToUInt32(command.GetArgumentAtIndex(0), UINT32_MAX, 0, &success);
1018
1019 if (!success)
1020 {
1021 result.AppendErrorWithFormat("<index> parameter is not an integer: '%s'.\n", command.GetArgumentAtIndex(0));
1022 result.SetStatus (eReturnStatusFailed);
1023 return result.Succeeded();
1024 }
1025
1026 // shift off the index
1027 command.Shift();
1028 argc = command.GetArgumentCount();
1029
1030 for (uint32_t i=0; i<argc; i+=2, ++insert_idx)
1031 {
1032 const char *from = command.GetArgumentAtIndex(i);
1033 const char *to = command.GetArgumentAtIndex(i+1);
1034
1035 if (from[0] && to[0])
1036 {
1037 bool last_pair = ((argc - i) == 2);
1038 target->GetImageSearchPathList().Insert (ConstString(from),
1039 ConstString(to),
1040 insert_idx,
1041 last_pair);
Johnny Chen4d661352011-02-03 00:30:19 +00001042 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Chris Lattner24943d22010-06-08 16:52:24 +00001043 }
1044 else
1045 {
1046 if (from[0])
Greg Claytonabe0fed2011-04-18 08:33:37 +00001047 result.AppendError ("<path-prefix> can't be empty\n");
Chris Lattner24943d22010-06-08 16:52:24 +00001048 else
Greg Claytonabe0fed2011-04-18 08:33:37 +00001049 result.AppendError ("<new-path-prefix> can't be empty\n");
Chris Lattner24943d22010-06-08 16:52:24 +00001050 result.SetStatus (eReturnStatusFailed);
1051 return false;
1052 }
1053 }
1054 }
1055 else
1056 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00001057 result.AppendError ("insert requires at least three arguments\n");
Chris Lattner24943d22010-06-08 16:52:24 +00001058 result.SetStatus (eReturnStatusFailed);
1059 return result.Succeeded();
1060 }
1061
1062 }
1063 else
1064 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00001065 result.AppendError ("invalid target\n");
Chris Lattner24943d22010-06-08 16:52:24 +00001066 result.SetStatus (eReturnStatusFailed);
1067 }
1068 return result.Succeeded();
1069 }
1070};
1071
Greg Claytone1f50b92011-05-03 22:09:39 +00001072
1073#pragma mark CommandObjectTargetModulesSearchPathsList
1074
1075
1076class CommandObjectTargetModulesSearchPathsList : public CommandObject
Chris Lattner24943d22010-06-08 16:52:24 +00001077{
1078public:
1079
Greg Claytone1f50b92011-05-03 22:09:39 +00001080 CommandObjectTargetModulesSearchPathsList (CommandInterpreter &interpreter) :
Greg Clayton238c0a12010-09-18 01:14:36 +00001081 CommandObject (interpreter,
Greg Claytone1f50b92011-05-03 22:09:39 +00001082 "target modules search-paths list",
Caroline Ticeabb507a2010-09-08 21:06:11 +00001083 "List all current image search path substitution pairs in the current target.",
Greg Claytone1f50b92011-05-03 22:09:39 +00001084 "target modules search-paths list")
Chris Lattner24943d22010-06-08 16:52:24 +00001085 {
1086 }
1087
Greg Claytone1f50b92011-05-03 22:09:39 +00001088 ~CommandObjectTargetModulesSearchPathsList ()
Chris Lattner24943d22010-06-08 16:52:24 +00001089 {
1090 }
1091
1092 bool
Greg Clayton238c0a12010-09-18 01:14:36 +00001093 Execute (Args& command,
Chris Lattner24943d22010-06-08 16:52:24 +00001094 CommandReturnObject &result)
1095 {
Greg Clayton238c0a12010-09-18 01:14:36 +00001096 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Chris Lattner24943d22010-06-08 16:52:24 +00001097 if (target)
1098 {
1099 if (command.GetArgumentCount() != 0)
1100 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00001101 result.AppendError ("list takes no arguments\n");
Chris Lattner24943d22010-06-08 16:52:24 +00001102 result.SetStatus (eReturnStatusFailed);
1103 return result.Succeeded();
1104 }
1105
1106 target->GetImageSearchPathList().Dump(&result.GetOutputStream());
Johnny Chen4d661352011-02-03 00:30:19 +00001107 result.SetStatus (eReturnStatusSuccessFinishResult);
Chris Lattner24943d22010-06-08 16:52:24 +00001108 }
1109 else
1110 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00001111 result.AppendError ("invalid target\n");
Chris Lattner24943d22010-06-08 16:52:24 +00001112 result.SetStatus (eReturnStatusFailed);
1113 }
1114 return result.Succeeded();
1115 }
1116};
1117
Greg Claytone1f50b92011-05-03 22:09:39 +00001118#pragma mark CommandObjectTargetModulesSearchPathsQuery
1119
1120class CommandObjectTargetModulesSearchPathsQuery : public CommandObject
Chris Lattner24943d22010-06-08 16:52:24 +00001121{
1122public:
1123
Greg Claytone1f50b92011-05-03 22:09:39 +00001124 CommandObjectTargetModulesSearchPathsQuery (CommandInterpreter &interpreter) :
Greg Clayton238c0a12010-09-18 01:14:36 +00001125 CommandObject (interpreter,
Greg Claytone1f50b92011-05-03 22:09:39 +00001126 "target modules search-paths query",
Caroline Ticeabb507a2010-09-08 21:06:11 +00001127 "Transform a path using the first applicable image search path.",
Caroline Tice43b014a2010-10-04 22:28:36 +00001128 NULL)
Chris Lattner24943d22010-06-08 16:52:24 +00001129 {
Caroline Tice43b014a2010-10-04 22:28:36 +00001130 CommandArgumentEntry arg;
1131 CommandArgumentData path_arg;
1132
1133 // Define the first (and only) variant of this arg.
1134 path_arg.arg_type = eArgTypePath;
1135 path_arg.arg_repetition = eArgRepeatPlain;
1136
1137 // There is only one variant this argument could be; put it into the argument entry.
1138 arg.push_back (path_arg);
1139
1140 // Push the data for the first argument into the m_arguments vector.
1141 m_arguments.push_back (arg);
Chris Lattner24943d22010-06-08 16:52:24 +00001142 }
1143
Greg Claytone1f50b92011-05-03 22:09:39 +00001144 ~CommandObjectTargetModulesSearchPathsQuery ()
Chris Lattner24943d22010-06-08 16:52:24 +00001145 {
1146 }
1147
1148 bool
Greg Clayton238c0a12010-09-18 01:14:36 +00001149 Execute (Args& command,
Chris Lattner24943d22010-06-08 16:52:24 +00001150 CommandReturnObject &result)
1151 {
Greg Clayton238c0a12010-09-18 01:14:36 +00001152 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Chris Lattner24943d22010-06-08 16:52:24 +00001153 if (target)
1154 {
1155 if (command.GetArgumentCount() != 1)
1156 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00001157 result.AppendError ("query requires one argument\n");
Chris Lattner24943d22010-06-08 16:52:24 +00001158 result.SetStatus (eReturnStatusFailed);
1159 return result.Succeeded();
1160 }
1161
1162 ConstString orig(command.GetArgumentAtIndex(0));
1163 ConstString transformed;
1164 if (target->GetImageSearchPathList().RemapPath(orig, transformed))
1165 result.GetOutputStream().Printf("%s\n", transformed.GetCString());
1166 else
1167 result.GetOutputStream().Printf("%s\n", orig.GetCString());
Johnny Chen4d661352011-02-03 00:30:19 +00001168
1169 result.SetStatus (eReturnStatusSuccessFinishResult);
Chris Lattner24943d22010-06-08 16:52:24 +00001170 }
1171 else
1172 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00001173 result.AppendError ("invalid target\n");
Chris Lattner24943d22010-06-08 16:52:24 +00001174 result.SetStatus (eReturnStatusFailed);
1175 }
1176 return result.Succeeded();
1177 }
1178};
1179
Greg Claytone1f50b92011-05-03 22:09:39 +00001180//----------------------------------------------------------------------
1181// Static Helper functions
1182//----------------------------------------------------------------------
1183static void
1184DumpModuleArchitecture (Stream &strm, Module *module, bool full_triple, uint32_t width)
1185{
1186 if (module)
1187 {
1188 const char *arch_cstr;
1189 if (full_triple)
1190 arch_cstr = module->GetArchitecture().GetTriple().str().c_str();
1191 else
1192 arch_cstr = module->GetArchitecture().GetArchitectureName();
1193 if (width)
1194 strm.Printf("%-*s", width, arch_cstr);
1195 else
1196 strm.PutCString(arch_cstr);
1197 }
1198}
1199
1200static void
1201DumpModuleUUID (Stream &strm, Module *module)
1202{
Greg Clayton153ccd72011-08-10 02:10:13 +00001203 if (module->GetUUID().IsValid())
1204 module->GetUUID().Dump (&strm);
1205 else
1206 strm.PutCString(" ");
Greg Claytone1f50b92011-05-03 22:09:39 +00001207}
1208
1209static uint32_t
1210DumpCompileUnitLineTable
1211(
1212 CommandInterpreter &interpreter,
1213 Stream &strm,
1214 Module *module,
1215 const FileSpec &file_spec,
1216 bool load_addresses
1217 )
1218{
1219 uint32_t num_matches = 0;
1220 if (module)
1221 {
1222 SymbolContextList sc_list;
1223 num_matches = module->ResolveSymbolContextsForFileSpec (file_spec,
1224 0,
1225 false,
1226 eSymbolContextCompUnit,
1227 sc_list);
1228
1229 for (uint32_t i=0; i<num_matches; ++i)
1230 {
1231 SymbolContext sc;
1232 if (sc_list.GetContextAtIndex(i, sc))
1233 {
1234 if (i > 0)
1235 strm << "\n\n";
1236
1237 strm << "Line table for " << *static_cast<FileSpec*> (sc.comp_unit) << " in `"
1238 << module->GetFileSpec().GetFilename() << "\n";
1239 LineTable *line_table = sc.comp_unit->GetLineTable();
1240 if (line_table)
1241 line_table->GetDescription (&strm,
Greg Clayton567e7f32011-09-22 04:58:26 +00001242 interpreter.GetExecutionContext().GetTargetPtr(),
Greg Claytone1f50b92011-05-03 22:09:39 +00001243 lldb::eDescriptionLevelBrief);
1244 else
1245 strm << "No line table";
1246 }
1247 }
1248 }
1249 return num_matches;
1250}
1251
1252static void
1253DumpFullpath (Stream &strm, const FileSpec *file_spec_ptr, uint32_t width)
1254{
1255 if (file_spec_ptr)
1256 {
1257 if (width > 0)
1258 {
1259 char fullpath[PATH_MAX];
1260 if (file_spec_ptr->GetPath(fullpath, sizeof(fullpath)))
1261 {
1262 strm.Printf("%-*s", width, fullpath);
1263 return;
1264 }
1265 }
1266 else
1267 {
1268 file_spec_ptr->Dump(&strm);
1269 return;
1270 }
1271 }
1272 // Keep the width spacing correct if things go wrong...
1273 if (width > 0)
1274 strm.Printf("%-*s", width, "");
1275}
1276
1277static void
1278DumpDirectory (Stream &strm, const FileSpec *file_spec_ptr, uint32_t width)
1279{
1280 if (file_spec_ptr)
1281 {
1282 if (width > 0)
1283 strm.Printf("%-*s", width, file_spec_ptr->GetDirectory().AsCString(""));
1284 else
1285 file_spec_ptr->GetDirectory().Dump(&strm);
1286 return;
1287 }
1288 // Keep the width spacing correct if things go wrong...
1289 if (width > 0)
1290 strm.Printf("%-*s", width, "");
1291}
1292
1293static void
1294DumpBasename (Stream &strm, const FileSpec *file_spec_ptr, uint32_t width)
1295{
1296 if (file_spec_ptr)
1297 {
1298 if (width > 0)
1299 strm.Printf("%-*s", width, file_spec_ptr->GetFilename().AsCString(""));
1300 else
1301 file_spec_ptr->GetFilename().Dump(&strm);
1302 return;
1303 }
1304 // Keep the width spacing correct if things go wrong...
1305 if (width > 0)
1306 strm.Printf("%-*s", width, "");
1307}
1308
1309
1310static void
1311DumpModuleSymtab (CommandInterpreter &interpreter, Stream &strm, Module *module, SortOrder sort_order)
1312{
1313 if (module)
1314 {
1315 ObjectFile *objfile = module->GetObjectFile ();
1316 if (objfile)
1317 {
1318 Symtab *symtab = objfile->GetSymtab();
1319 if (symtab)
Greg Clayton567e7f32011-09-22 04:58:26 +00001320 symtab->Dump(&strm, interpreter.GetExecutionContext().GetTargetPtr(), sort_order);
Greg Claytone1f50b92011-05-03 22:09:39 +00001321 }
1322 }
1323}
1324
1325static void
1326DumpModuleSections (CommandInterpreter &interpreter, Stream &strm, Module *module)
1327{
1328 if (module)
1329 {
1330 ObjectFile *objfile = module->GetObjectFile ();
1331 if (objfile)
1332 {
1333 SectionList *section_list = objfile->GetSectionList();
1334 if (section_list)
1335 {
1336 strm.PutCString ("Sections for '");
1337 strm << module->GetFileSpec();
1338 if (module->GetObjectName())
1339 strm << '(' << module->GetObjectName() << ')';
1340 strm.Printf ("' (%s):\n", module->GetArchitecture().GetArchitectureName());
1341 strm.IndentMore();
Greg Clayton567e7f32011-09-22 04:58:26 +00001342 section_list->Dump(&strm, interpreter.GetExecutionContext().GetTargetPtr(), true, UINT32_MAX);
Greg Claytone1f50b92011-05-03 22:09:39 +00001343 strm.IndentLess();
1344 }
1345 }
1346 }
1347}
1348
1349static bool
1350DumpModuleSymbolVendor (Stream &strm, Module *module)
1351{
1352 if (module)
1353 {
1354 SymbolVendor *symbol_vendor = module->GetSymbolVendor(true);
1355 if (symbol_vendor)
1356 {
1357 symbol_vendor->Dump(&strm);
1358 return true;
1359 }
1360 }
1361 return false;
1362}
1363
1364static bool
Greg Clayton3508c382012-02-24 01:59:29 +00001365LookupAddressInModule (CommandInterpreter &interpreter,
1366 Stream &strm,
1367 Module *module,
1368 uint32_t resolve_mask,
1369 lldb::addr_t raw_addr,
1370 lldb::addr_t offset,
1371 bool verbose)
Greg Claytone1f50b92011-05-03 22:09:39 +00001372{
1373 if (module)
1374 {
1375 lldb::addr_t addr = raw_addr - offset;
1376 Address so_addr;
1377 SymbolContext sc;
Greg Clayton567e7f32011-09-22 04:58:26 +00001378 Target *target = interpreter.GetExecutionContext().GetTargetPtr();
Greg Claytone1f50b92011-05-03 22:09:39 +00001379 if (target && !target->GetSectionLoadList().IsEmpty())
1380 {
1381 if (!target->GetSectionLoadList().ResolveLoadAddress (addr, so_addr))
1382 return false;
Greg Clayton3508c382012-02-24 01:59:29 +00001383 else if (so_addr.GetModule().get() != module)
Greg Claytone1f50b92011-05-03 22:09:39 +00001384 return false;
1385 }
1386 else
1387 {
1388 if (!module->ResolveFileAddress (addr, so_addr))
1389 return false;
1390 }
1391
Greg Claytone1f50b92011-05-03 22:09:39 +00001392 ExecutionContextScope *exe_scope = interpreter.GetExecutionContext().GetBestExecutionContextScope();
1393 strm.IndentMore();
1394 strm.Indent (" Address: ");
Greg Clayton00b11c32012-01-10 00:25:18 +00001395 so_addr.Dump (&strm, exe_scope, Address::DumpStyleModuleWithFileAddress);
1396 strm.PutCString (" (");
Greg Claytone1f50b92011-05-03 22:09:39 +00001397 so_addr.Dump (&strm, exe_scope, Address::DumpStyleSectionNameOffset);
Greg Clayton00b11c32012-01-10 00:25:18 +00001398 strm.PutCString (")\n");
Greg Claytone1f50b92011-05-03 22:09:39 +00001399 strm.Indent (" Summary: ");
1400 const uint32_t save_indent = strm.GetIndentLevel ();
Greg Clayton2f57db02011-10-01 00:45:15 +00001401 strm.SetIndentLevel (save_indent + 13);
Greg Claytone1f50b92011-05-03 22:09:39 +00001402 so_addr.Dump (&strm, exe_scope, Address::DumpStyleResolvedDescription);
1403 strm.SetIndentLevel (save_indent);
Greg Claytone1f50b92011-05-03 22:09:39 +00001404 // Print out detailed address information when verbose is enabled
1405 if (verbose)
1406 {
Greg Clayton2f57db02011-10-01 00:45:15 +00001407 strm.EOL();
Jason Molendafb66bb52011-09-23 00:27:44 +00001408 so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext);
Greg Claytone1f50b92011-05-03 22:09:39 +00001409 }
1410 strm.IndentLess();
1411 return true;
1412 }
1413
1414 return false;
1415}
1416
1417static uint32_t
1418LookupSymbolInModule (CommandInterpreter &interpreter, Stream &strm, Module *module, const char *name, bool name_is_regex)
1419{
1420 if (module)
1421 {
1422 SymbolContext sc;
1423
1424 ObjectFile *objfile = module->GetObjectFile ();
1425 if (objfile)
1426 {
1427 Symtab *symtab = objfile->GetSymtab();
1428 if (symtab)
1429 {
1430 uint32_t i;
1431 std::vector<uint32_t> match_indexes;
1432 ConstString symbol_name (name);
1433 uint32_t num_matches = 0;
1434 if (name_is_regex)
1435 {
1436 RegularExpression name_regexp(name);
1437 num_matches = symtab->AppendSymbolIndexesMatchingRegExAndType (name_regexp,
1438 eSymbolTypeAny,
1439 match_indexes);
1440 }
1441 else
1442 {
1443 num_matches = symtab->AppendSymbolIndexesWithName (symbol_name, match_indexes);
1444 }
1445
1446
1447 if (num_matches > 0)
1448 {
1449 strm.Indent ();
1450 strm.Printf("%u symbols match %s'%s' in ", num_matches,
1451 name_is_regex ? "the regular expression " : "", name);
1452 DumpFullpath (strm, &module->GetFileSpec(), 0);
1453 strm.PutCString(":\n");
1454 strm.IndentMore ();
1455 Symtab::DumpSymbolHeader (&strm);
1456 for (i=0; i < num_matches; ++i)
1457 {
1458 Symbol *symbol = symtab->SymbolAtIndex(match_indexes[i]);
1459 strm.Indent ();
Greg Clayton567e7f32011-09-22 04:58:26 +00001460 symbol->Dump (&strm, interpreter.GetExecutionContext().GetTargetPtr(), i);
Greg Claytone1f50b92011-05-03 22:09:39 +00001461 }
1462 strm.IndentLess ();
1463 return num_matches;
1464 }
1465 }
1466 }
1467 }
1468 return 0;
1469}
1470
1471
1472static void
1473DumpSymbolContextList (CommandInterpreter &interpreter, Stream &strm, SymbolContextList &sc_list, bool prepend_addr, bool verbose)
1474{
1475 strm.IndentMore ();
1476 uint32_t i;
1477 const uint32_t num_matches = sc_list.GetSize();
1478
1479 for (i=0; i<num_matches; ++i)
1480 {
1481 SymbolContext sc;
1482 if (sc_list.GetContextAtIndex(i, sc))
1483 {
1484 strm.Indent();
1485 ExecutionContextScope *exe_scope = interpreter.GetExecutionContext().GetBestExecutionContextScope ();
1486
1487 if (prepend_addr)
1488 {
1489 if (sc.line_entry.range.GetBaseAddress().IsValid())
1490 {
1491 sc.line_entry.range.GetBaseAddress().Dump (&strm,
1492 exe_scope,
1493 Address::DumpStyleLoadAddress,
1494 Address::DumpStyleModuleWithFileAddress);
1495 strm.PutCString(" in ");
1496 }
1497 }
Sean Callanand7793d22012-02-11 00:24:04 +00001498
1499 AddressRange range;
1500
1501 sc.GetAddressRange(eSymbolContextEverything,
1502 0,
1503 true,
1504 range);
1505
Greg Claytone1f50b92011-05-03 22:09:39 +00001506 sc.DumpStopContext(&strm,
1507 exe_scope,
Sean Callanand7793d22012-02-11 00:24:04 +00001508 range.GetBaseAddress(),
Greg Claytone1f50b92011-05-03 22:09:39 +00001509 true,
1510 true,
1511 false);
Sean Callanand7793d22012-02-11 00:24:04 +00001512
Greg Claytone1f50b92011-05-03 22:09:39 +00001513 strm.EOL();
1514 if (verbose)
1515 {
1516 if (sc.line_entry.range.GetBaseAddress().IsValid())
1517 {
1518 if (sc.line_entry.range.GetBaseAddress().Dump (&strm,
1519 exe_scope,
1520 Address::DumpStyleDetailedSymbolContext))
1521 strm.PutCString("\n\n");
1522 }
1523 else if (sc.function->GetAddressRange().GetBaseAddress().IsValid())
1524 {
1525 if (sc.function->GetAddressRange().GetBaseAddress().Dump (&strm,
1526 exe_scope,
1527 Address::DumpStyleDetailedSymbolContext))
1528 strm.PutCString("\n\n");
1529 }
1530 }
1531 }
1532 }
1533 strm.IndentLess ();
1534}
1535
1536static uint32_t
Sean Callanan9ad19532012-02-11 01:22:21 +00001537LookupFunctionInModule (CommandInterpreter &interpreter, Stream &strm, Module *module, const char *name, bool name_is_regex, bool include_inlines, bool verbose)
Greg Claytone1f50b92011-05-03 22:09:39 +00001538{
1539 if (module && name && name[0])
1540 {
1541 SymbolContextList sc_list;
1542 const bool include_symbols = false;
1543 const bool append = true;
1544 uint32_t num_matches = 0;
1545 if (name_is_regex)
1546 {
1547 RegularExpression function_name_regex (name);
1548 num_matches = module->FindFunctions (function_name_regex,
1549 include_symbols,
Sean Callanan302d78c2012-02-10 22:52:19 +00001550 include_inlines,
Greg Claytone1f50b92011-05-03 22:09:39 +00001551 append,
1552 sc_list);
1553 }
1554 else
1555 {
1556 ConstString function_name (name);
Sean Callanan3e80cd92011-10-12 02:08:07 +00001557 num_matches = module->FindFunctions (function_name,
1558 NULL,
Greg Claytone1f50b92011-05-03 22:09:39 +00001559 eFunctionNameTypeBase | eFunctionNameTypeFull | eFunctionNameTypeMethod | eFunctionNameTypeSelector,
1560 include_symbols,
Sean Callanan302d78c2012-02-10 22:52:19 +00001561 include_inlines,
Greg Claytone1f50b92011-05-03 22:09:39 +00001562 append,
1563 sc_list);
1564 }
1565
1566 if (num_matches)
1567 {
1568 strm.Indent ();
1569 strm.Printf("%u match%s found in ", num_matches, num_matches > 1 ? "es" : "");
1570 DumpFullpath (strm, &module->GetFileSpec(), 0);
1571 strm.PutCString(":\n");
1572 DumpSymbolContextList (interpreter, strm, sc_list, true, verbose);
1573 }
1574 return num_matches;
1575 }
1576 return 0;
1577}
1578
1579static uint32_t
Greg Clayton801417e2011-07-07 01:59:51 +00001580LookupTypeInModule (CommandInterpreter &interpreter,
1581 Stream &strm,
1582 Module *module,
1583 const char *name_cstr,
1584 bool name_is_regex)
Greg Claytone1f50b92011-05-03 22:09:39 +00001585{
1586 if (module && name_cstr && name_cstr[0])
1587 {
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001588 TypeList type_list;
Greg Claytondc0a38c2012-03-26 23:03:23 +00001589 const uint32_t max_num_matches = UINT32_MAX;
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001590 uint32_t num_matches = 0;
Greg Claytondc0a38c2012-03-26 23:03:23 +00001591 bool name_is_fully_qualified = false;
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001592 SymbolContext sc;
1593
1594 ConstString name(name_cstr);
Greg Claytondc0a38c2012-03-26 23:03:23 +00001595 num_matches = module->FindTypes(sc, name, name_is_fully_qualified, max_num_matches, type_list);
Greg Claytone1f50b92011-05-03 22:09:39 +00001596
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001597 if (num_matches)
1598 {
1599 strm.Indent ();
1600 strm.Printf("%u match%s found in ", num_matches, num_matches > 1 ? "es" : "");
1601 DumpFullpath (strm, &module->GetFileSpec(), 0);
1602 strm.PutCString(":\n");
1603 const uint32_t num_types = type_list.GetSize();
1604 for (uint32_t i=0; i<num_types; ++i)
Greg Claytone1f50b92011-05-03 22:09:39 +00001605 {
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001606 TypeSP type_sp (type_list.GetTypeAtIndex(i));
1607 if (type_sp)
Greg Claytone1f50b92011-05-03 22:09:39 +00001608 {
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001609 // Resolve the clang type so that any forward references
1610 // to types that haven't yet been parsed will get parsed.
1611 type_sp->GetClangFullType ();
1612 type_sp->GetDescription (&strm, eDescriptionLevelFull, true);
Greg Claytone1f50b92011-05-03 22:09:39 +00001613 }
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001614 strm.EOL();
Greg Claytone1f50b92011-05-03 22:09:39 +00001615 }
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001616 }
1617 return num_matches;
Greg Claytone1f50b92011-05-03 22:09:39 +00001618 }
1619 return 0;
1620}
1621
1622static uint32_t
1623LookupFileAndLineInModule (CommandInterpreter &interpreter,
1624 Stream &strm,
1625 Module *module,
1626 const FileSpec &file_spec,
1627 uint32_t line,
1628 bool check_inlines,
1629 bool verbose)
1630{
1631 if (module && file_spec)
1632 {
1633 SymbolContextList sc_list;
1634 const uint32_t num_matches = module->ResolveSymbolContextsForFileSpec(file_spec, line, check_inlines,
1635 eSymbolContextEverything, sc_list);
1636 if (num_matches > 0)
1637 {
1638 strm.Indent ();
1639 strm.Printf("%u match%s found in ", num_matches, num_matches > 1 ? "es" : "");
1640 strm << file_spec;
1641 if (line > 0)
1642 strm.Printf (":%u", line);
1643 strm << " in ";
1644 DumpFullpath (strm, &module->GetFileSpec(), 0);
1645 strm.PutCString(":\n");
1646 DumpSymbolContextList (interpreter, strm, sc_list, true, verbose);
1647 return num_matches;
1648 }
1649 }
1650 return 0;
1651
1652}
1653
Greg Clayton91048ef2011-11-10 01:18:58 +00001654
1655static size_t
1656FindModulesByName (Target *target,
1657 const char *module_name,
1658 ModuleList &module_list,
1659 bool check_global_list)
1660{
1661// Dump specified images (by basename or fullpath)
1662 FileSpec module_file_spec(module_name, false);
Greg Clayton444fe992012-02-26 05:51:37 +00001663 ModuleSpec module_spec (module_file_spec);
Greg Clayton91048ef2011-11-10 01:18:58 +00001664
1665 const size_t initial_size = module_list.GetSize ();
1666
1667 size_t num_matches = 0;
1668
1669 if (target)
1670 {
Greg Clayton444fe992012-02-26 05:51:37 +00001671 num_matches = target->GetImages().FindModules (module_spec, module_list);
Greg Clayton91048ef2011-11-10 01:18:58 +00001672
1673 // Not found in our module list for our target, check the main
1674 // shared module list in case it is a extra file used somewhere
1675 // else
1676 if (num_matches == 0)
Greg Clayton444fe992012-02-26 05:51:37 +00001677 {
1678 module_spec.GetArchitecture() = target->GetArchitecture();
1679 num_matches = ModuleList::FindSharedModules (module_spec, module_list);
1680 }
Greg Clayton91048ef2011-11-10 01:18:58 +00001681 }
1682 else
1683 {
Greg Clayton444fe992012-02-26 05:51:37 +00001684 num_matches = ModuleList::FindSharedModules (module_spec,module_list);
Greg Clayton91048ef2011-11-10 01:18:58 +00001685 }
1686
1687 if (check_global_list && num_matches == 0)
1688 {
1689 // Check the global list
Greg Claytonc149c8b2012-01-27 18:08:35 +00001690 Mutex::Locker locker(Module::GetAllocationModuleCollectionMutex());
Greg Clayton91048ef2011-11-10 01:18:58 +00001691 const uint32_t num_modules = Module::GetNumberAllocatedModules();
1692 ModuleSP module_sp;
1693 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
1694 {
1695 Module *module = Module::GetAllocatedModuleAtIndex(image_idx);
1696
1697 if (module)
1698 {
Greg Clayton444fe992012-02-26 05:51:37 +00001699 if (module->MatchesModuleSpec (module_spec))
Greg Clayton91048ef2011-11-10 01:18:58 +00001700 {
Greg Clayton13d24fb2012-01-29 20:56:30 +00001701 module_sp = module->shared_from_this();
Greg Clayton91048ef2011-11-10 01:18:58 +00001702 module_list.AppendIfNeeded(module_sp);
1703 }
1704 }
1705 }
1706 }
1707 return module_list.GetSize () - initial_size;
1708}
1709
Greg Claytone1f50b92011-05-03 22:09:39 +00001710#pragma mark CommandObjectTargetModulesModuleAutoComplete
1711
1712//----------------------------------------------------------------------
1713// A base command object class that can auto complete with module file
1714// paths
1715//----------------------------------------------------------------------
1716
1717class CommandObjectTargetModulesModuleAutoComplete : public CommandObject
1718{
1719public:
1720
1721 CommandObjectTargetModulesModuleAutoComplete (CommandInterpreter &interpreter,
1722 const char *name,
1723 const char *help,
1724 const char *syntax) :
1725 CommandObject (interpreter, name, help, syntax)
1726 {
1727 CommandArgumentEntry arg;
1728 CommandArgumentData file_arg;
1729
1730 // Define the first (and only) variant of this arg.
1731 file_arg.arg_type = eArgTypeFilename;
1732 file_arg.arg_repetition = eArgRepeatStar;
1733
1734 // There is only one variant this argument could be; put it into the argument entry.
1735 arg.push_back (file_arg);
1736
1737 // Push the data for the first argument into the m_arguments vector.
1738 m_arguments.push_back (arg);
1739 }
1740
1741 virtual
1742 ~CommandObjectTargetModulesModuleAutoComplete ()
1743 {
1744 }
1745
1746 virtual int
1747 HandleArgumentCompletion (Args &input,
1748 int &cursor_index,
1749 int &cursor_char_position,
1750 OptionElementVector &opt_element_vector,
1751 int match_start_point,
1752 int max_return_elements,
1753 bool &word_complete,
1754 StringList &matches)
1755 {
1756 // Arguments are the standard module completer.
1757 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
1758 completion_str.erase (cursor_char_position);
1759
1760 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
1761 CommandCompletions::eModuleCompletion,
1762 completion_str.c_str(),
1763 match_start_point,
1764 max_return_elements,
1765 NULL,
1766 word_complete,
1767 matches);
1768 return matches.GetSize();
1769 }
1770};
1771
1772#pragma mark CommandObjectTargetModulesSourceFileAutoComplete
1773
1774//----------------------------------------------------------------------
1775// A base command object class that can auto complete with module source
1776// file paths
1777//----------------------------------------------------------------------
1778
1779class CommandObjectTargetModulesSourceFileAutoComplete : public CommandObject
1780{
1781public:
1782
1783 CommandObjectTargetModulesSourceFileAutoComplete (CommandInterpreter &interpreter,
1784 const char *name,
1785 const char *help,
1786 const char *syntax) :
1787 CommandObject (interpreter, name, help, syntax)
1788 {
1789 CommandArgumentEntry arg;
1790 CommandArgumentData source_file_arg;
1791
1792 // Define the first (and only) variant of this arg.
1793 source_file_arg.arg_type = eArgTypeSourceFile;
1794 source_file_arg.arg_repetition = eArgRepeatPlus;
1795
1796 // There is only one variant this argument could be; put it into the argument entry.
1797 arg.push_back (source_file_arg);
1798
1799 // Push the data for the first argument into the m_arguments vector.
1800 m_arguments.push_back (arg);
1801 }
1802
1803 virtual
1804 ~CommandObjectTargetModulesSourceFileAutoComplete ()
1805 {
1806 }
1807
1808 virtual int
1809 HandleArgumentCompletion (Args &input,
1810 int &cursor_index,
1811 int &cursor_char_position,
1812 OptionElementVector &opt_element_vector,
1813 int match_start_point,
1814 int max_return_elements,
1815 bool &word_complete,
1816 StringList &matches)
1817 {
1818 // Arguments are the standard source file completer.
1819 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
1820 completion_str.erase (cursor_char_position);
1821
1822 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
1823 CommandCompletions::eSourceFileCompletion,
1824 completion_str.c_str(),
1825 match_start_point,
1826 max_return_elements,
1827 NULL,
1828 word_complete,
1829 matches);
1830 return matches.GetSize();
1831 }
1832};
1833
1834
1835#pragma mark CommandObjectTargetModulesDumpSymtab
1836
1837
1838class CommandObjectTargetModulesDumpSymtab : public CommandObjectTargetModulesModuleAutoComplete
1839{
1840public:
1841 CommandObjectTargetModulesDumpSymtab (CommandInterpreter &interpreter) :
1842 CommandObjectTargetModulesModuleAutoComplete (interpreter,
1843 "target modules dump symtab",
1844 "Dump the symbol table from one or more target modules.",
1845 NULL),
1846 m_options (interpreter)
1847 {
1848 }
1849
1850 virtual
1851 ~CommandObjectTargetModulesDumpSymtab ()
1852 {
1853 }
1854
1855 virtual bool
1856 Execute (Args& command,
1857 CommandReturnObject &result)
1858 {
1859 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
1860 if (target == NULL)
1861 {
1862 result.AppendError ("invalid target, create a debug target using the 'target create' command");
1863 result.SetStatus (eReturnStatusFailed);
1864 return false;
1865 }
1866 else
1867 {
1868 uint32_t num_dumped = 0;
1869
1870 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
1871 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
1872 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
1873
1874 if (command.GetArgumentCount() == 0)
1875 {
1876 // Dump all sections for all modules images
1877 const uint32_t num_modules = target->GetImages().GetSize();
1878 if (num_modules > 0)
1879 {
1880 result.GetOutputStream().Printf("Dumping symbol table for %u modules.\n", num_modules);
1881 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
1882 {
1883 if (num_dumped > 0)
1884 {
1885 result.GetOutputStream().EOL();
1886 result.GetOutputStream().EOL();
1887 }
1888 num_dumped++;
1889 DumpModuleSymtab (m_interpreter, result.GetOutputStream(), target->GetImages().GetModulePointerAtIndex(image_idx), m_options.m_sort_order);
1890 }
1891 }
1892 else
1893 {
1894 result.AppendError ("the target has no associated executable images");
1895 result.SetStatus (eReturnStatusFailed);
1896 return false;
1897 }
1898 }
1899 else
1900 {
1901 // Dump specified images (by basename or fullpath)
1902 const char *arg_cstr;
1903 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
1904 {
Greg Clayton91048ef2011-11-10 01:18:58 +00001905 ModuleList module_list;
1906 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true);
1907 if (num_matches > 0)
Greg Claytone1f50b92011-05-03 22:09:39 +00001908 {
Greg Clayton91048ef2011-11-10 01:18:58 +00001909 for (size_t i=0; i<num_matches; ++i)
Greg Claytone1f50b92011-05-03 22:09:39 +00001910 {
Greg Clayton91048ef2011-11-10 01:18:58 +00001911 Module *module = module_list.GetModulePointerAtIndex(i);
1912 if (module)
Greg Claytone1f50b92011-05-03 22:09:39 +00001913 {
1914 if (num_dumped > 0)
1915 {
1916 result.GetOutputStream().EOL();
1917 result.GetOutputStream().EOL();
1918 }
1919 num_dumped++;
Greg Clayton91048ef2011-11-10 01:18:58 +00001920 DumpModuleSymtab (m_interpreter, result.GetOutputStream(), module, m_options.m_sort_order);
Greg Claytone1f50b92011-05-03 22:09:39 +00001921 }
1922 }
1923 }
1924 else
1925 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
1926 }
1927 }
1928
1929 if (num_dumped > 0)
1930 result.SetStatus (eReturnStatusSuccessFinishResult);
1931 else
1932 {
1933 result.AppendError ("no matching executable images found");
1934 result.SetStatus (eReturnStatusFailed);
1935 }
1936 }
1937 return result.Succeeded();
1938 }
1939
1940 virtual Options *
1941 GetOptions ()
1942 {
1943 return &m_options;
1944 }
1945
1946 class CommandOptions : public Options
1947 {
1948 public:
1949
1950 CommandOptions (CommandInterpreter &interpreter) :
1951 Options(interpreter),
1952 m_sort_order (eSortOrderNone)
1953 {
1954 }
1955
1956 virtual
1957 ~CommandOptions ()
1958 {
1959 }
1960
1961 virtual Error
1962 SetOptionValue (uint32_t option_idx, const char *option_arg)
1963 {
1964 Error error;
1965 char short_option = (char) m_getopt_table[option_idx].val;
1966
1967 switch (short_option)
1968 {
1969 case 's':
Greg Claytone1f50b92011-05-03 22:09:39 +00001970 m_sort_order = (SortOrder) Args::StringToOptionEnum (option_arg,
1971 g_option_table[option_idx].enum_values,
1972 eSortOrderNone,
Greg Clayton61aca5d2011-10-07 18:58:12 +00001973 error);
Greg Claytone1f50b92011-05-03 22:09:39 +00001974 break;
1975
1976 default:
Greg Clayton9c236732011-10-26 00:56:27 +00001977 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
Greg Claytone1f50b92011-05-03 22:09:39 +00001978 break;
1979
1980 }
1981 return error;
1982 }
1983
1984 void
1985 OptionParsingStarting ()
1986 {
1987 m_sort_order = eSortOrderNone;
1988 }
1989
1990 const OptionDefinition*
1991 GetDefinitions ()
1992 {
1993 return g_option_table;
1994 }
1995
1996 // Options table: Required for subclasses of Options.
1997 static OptionDefinition g_option_table[];
1998
1999 SortOrder m_sort_order;
2000 };
2001
2002protected:
2003
2004 CommandOptions m_options;
2005};
2006
2007static OptionEnumValueElement
2008g_sort_option_enumeration[4] =
2009{
2010 { eSortOrderNone, "none", "No sorting, use the original symbol table order."},
2011 { eSortOrderByAddress, "address", "Sort output by symbol address."},
2012 { eSortOrderByName, "name", "Sort output by symbol name."},
2013 { 0, NULL, NULL }
2014};
2015
2016
2017OptionDefinition
2018CommandObjectTargetModulesDumpSymtab::CommandOptions::g_option_table[] =
2019{
2020 { LLDB_OPT_SET_1, false, "sort", 's', required_argument, g_sort_option_enumeration, 0, eArgTypeSortOrder, "Supply a sort order when dumping the symbol table."},
2021 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
2022};
2023
2024#pragma mark CommandObjectTargetModulesDumpSections
2025
2026//----------------------------------------------------------------------
2027// Image section dumping command
2028//----------------------------------------------------------------------
2029
2030class CommandObjectTargetModulesDumpSections : public CommandObjectTargetModulesModuleAutoComplete
2031{
2032public:
2033 CommandObjectTargetModulesDumpSections (CommandInterpreter &interpreter) :
2034 CommandObjectTargetModulesModuleAutoComplete (interpreter,
2035 "target modules dump sections",
2036 "Dump the sections from one or more target modules.",
2037 //"target modules dump sections [<file1> ...]")
2038 NULL)
2039 {
2040 }
2041
2042 virtual
2043 ~CommandObjectTargetModulesDumpSections ()
2044 {
2045 }
2046
2047 virtual bool
2048 Execute (Args& command,
2049 CommandReturnObject &result)
2050 {
2051 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2052 if (target == NULL)
2053 {
2054 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2055 result.SetStatus (eReturnStatusFailed);
2056 return false;
2057 }
2058 else
2059 {
2060 uint32_t num_dumped = 0;
2061
2062 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2063 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2064 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2065
2066 if (command.GetArgumentCount() == 0)
2067 {
2068 // Dump all sections for all modules images
2069 const uint32_t num_modules = target->GetImages().GetSize();
2070 if (num_modules > 0)
2071 {
2072 result.GetOutputStream().Printf("Dumping sections for %u modules.\n", num_modules);
2073 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
2074 {
2075 num_dumped++;
2076 DumpModuleSections (m_interpreter, result.GetOutputStream(), target->GetImages().GetModulePointerAtIndex(image_idx));
2077 }
2078 }
2079 else
2080 {
2081 result.AppendError ("the target has no associated executable images");
2082 result.SetStatus (eReturnStatusFailed);
2083 return false;
2084 }
2085 }
2086 else
2087 {
2088 // Dump specified images (by basename or fullpath)
2089 const char *arg_cstr;
2090 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
2091 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002092 ModuleList module_list;
2093 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true);
2094 if (num_matches > 0)
Greg Claytone1f50b92011-05-03 22:09:39 +00002095 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002096 for (size_t i=0; i<num_matches; ++i)
Greg Claytone1f50b92011-05-03 22:09:39 +00002097 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002098 Module *module = module_list.GetModulePointerAtIndex(i);
2099 if (module)
Greg Claytone1f50b92011-05-03 22:09:39 +00002100 {
2101 num_dumped++;
Greg Clayton91048ef2011-11-10 01:18:58 +00002102 DumpModuleSections (m_interpreter, result.GetOutputStream(), module);
Greg Claytone1f50b92011-05-03 22:09:39 +00002103 }
2104 }
2105 }
2106 else
Greg Clayton91048ef2011-11-10 01:18:58 +00002107 {
2108 // Check the global list
Greg Claytonc149c8b2012-01-27 18:08:35 +00002109 Mutex::Locker locker(Module::GetAllocationModuleCollectionMutex());
Greg Clayton91048ef2011-11-10 01:18:58 +00002110
Greg Claytone1f50b92011-05-03 22:09:39 +00002111 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
Greg Clayton91048ef2011-11-10 01:18:58 +00002112 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002113 }
2114 }
2115
2116 if (num_dumped > 0)
2117 result.SetStatus (eReturnStatusSuccessFinishResult);
2118 else
2119 {
2120 result.AppendError ("no matching executable images found");
2121 result.SetStatus (eReturnStatusFailed);
2122 }
2123 }
2124 return result.Succeeded();
2125 }
2126};
2127
2128
2129#pragma mark CommandObjectTargetModulesDumpSymfile
2130
2131//----------------------------------------------------------------------
2132// Image debug symbol dumping command
2133//----------------------------------------------------------------------
2134
2135class CommandObjectTargetModulesDumpSymfile : public CommandObjectTargetModulesModuleAutoComplete
2136{
2137public:
2138 CommandObjectTargetModulesDumpSymfile (CommandInterpreter &interpreter) :
2139 CommandObjectTargetModulesModuleAutoComplete (interpreter,
2140 "target modules dump symfile",
2141 "Dump the debug symbol file for one or more target modules.",
2142 //"target modules dump symfile [<file1> ...]")
2143 NULL)
2144 {
2145 }
2146
2147 virtual
2148 ~CommandObjectTargetModulesDumpSymfile ()
2149 {
2150 }
2151
2152 virtual bool
2153 Execute (Args& command,
2154 CommandReturnObject &result)
2155 {
2156 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2157 if (target == NULL)
2158 {
2159 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2160 result.SetStatus (eReturnStatusFailed);
2161 return false;
2162 }
2163 else
2164 {
2165 uint32_t num_dumped = 0;
2166
2167 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2168 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2169 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2170
2171 if (command.GetArgumentCount() == 0)
2172 {
2173 // Dump all sections for all modules images
2174 const uint32_t num_modules = target->GetImages().GetSize();
2175 if (num_modules > 0)
2176 {
2177 result.GetOutputStream().Printf("Dumping debug symbols for %u modules.\n", num_modules);
2178 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
2179 {
2180 if (DumpModuleSymbolVendor (result.GetOutputStream(), target->GetImages().GetModulePointerAtIndex(image_idx)))
2181 num_dumped++;
2182 }
2183 }
2184 else
2185 {
2186 result.AppendError ("the target has no associated executable images");
2187 result.SetStatus (eReturnStatusFailed);
2188 return false;
2189 }
2190 }
2191 else
2192 {
2193 // Dump specified images (by basename or fullpath)
2194 const char *arg_cstr;
2195 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
2196 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002197 ModuleList module_list;
2198 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true);
2199 if (num_matches > 0)
Greg Claytone1f50b92011-05-03 22:09:39 +00002200 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002201 for (size_t i=0; i<num_matches; ++i)
Greg Claytone1f50b92011-05-03 22:09:39 +00002202 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002203 Module *module = module_list.GetModulePointerAtIndex(i);
2204 if (module)
Greg Claytone1f50b92011-05-03 22:09:39 +00002205 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002206 if (DumpModuleSymbolVendor (result.GetOutputStream(), module))
Greg Claytone1f50b92011-05-03 22:09:39 +00002207 num_dumped++;
2208 }
2209 }
2210 }
2211 else
2212 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
2213 }
2214 }
2215
2216 if (num_dumped > 0)
2217 result.SetStatus (eReturnStatusSuccessFinishResult);
2218 else
2219 {
2220 result.AppendError ("no matching executable images found");
2221 result.SetStatus (eReturnStatusFailed);
2222 }
2223 }
2224 return result.Succeeded();
2225 }
2226};
2227
2228
2229#pragma mark CommandObjectTargetModulesDumpLineTable
2230
2231//----------------------------------------------------------------------
2232// Image debug line table dumping command
2233//----------------------------------------------------------------------
2234
2235class CommandObjectTargetModulesDumpLineTable : public CommandObjectTargetModulesSourceFileAutoComplete
2236{
2237public:
2238 CommandObjectTargetModulesDumpLineTable (CommandInterpreter &interpreter) :
2239 CommandObjectTargetModulesSourceFileAutoComplete (interpreter,
2240 "target modules dump line-table",
2241 "Dump the debug symbol file for one or more target modules.",
2242 NULL)
2243 {
2244 }
2245
2246 virtual
2247 ~CommandObjectTargetModulesDumpLineTable ()
2248 {
2249 }
2250
2251 virtual bool
2252 Execute (Args& command,
2253 CommandReturnObject &result)
2254 {
2255 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2256 if (target == NULL)
2257 {
2258 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2259 result.SetStatus (eReturnStatusFailed);
2260 return false;
2261 }
2262 else
2263 {
2264 ExecutionContext exe_ctx(m_interpreter.GetExecutionContext());
2265 uint32_t total_num_dumped = 0;
2266
2267 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2268 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2269 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2270
2271 if (command.GetArgumentCount() == 0)
2272 {
2273 result.AppendErrorWithFormat ("\nSyntax: %s\n", m_cmd_syntax.c_str());
2274 result.SetStatus (eReturnStatusFailed);
2275 }
2276 else
2277 {
2278 // Dump specified images (by basename or fullpath)
2279 const char *arg_cstr;
2280 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
2281 {
2282 FileSpec file_spec(arg_cstr, false);
2283 const uint32_t num_modules = target->GetImages().GetSize();
2284 if (num_modules > 0)
2285 {
2286 uint32_t num_dumped = 0;
2287 for (uint32_t i = 0; i<num_modules; ++i)
2288 {
2289 if (DumpCompileUnitLineTable (m_interpreter,
2290 result.GetOutputStream(),
2291 target->GetImages().GetModulePointerAtIndex(i),
2292 file_spec,
Greg Clayton567e7f32011-09-22 04:58:26 +00002293 exe_ctx.GetProcessPtr() && exe_ctx.GetProcessRef().IsAlive()))
Greg Claytone1f50b92011-05-03 22:09:39 +00002294 num_dumped++;
2295 }
2296 if (num_dumped == 0)
2297 result.AppendWarningWithFormat ("No source filenames matched '%s'.\n", arg_cstr);
2298 else
2299 total_num_dumped += num_dumped;
2300 }
2301 }
2302 }
2303
2304 if (total_num_dumped > 0)
2305 result.SetStatus (eReturnStatusSuccessFinishResult);
2306 else
2307 {
2308 result.AppendError ("no source filenames matched any command arguments");
2309 result.SetStatus (eReturnStatusFailed);
2310 }
2311 }
2312 return result.Succeeded();
2313 }
2314};
2315
2316
2317#pragma mark CommandObjectTargetModulesDump
2318
2319//----------------------------------------------------------------------
2320// Dump multi-word command for target modules
2321//----------------------------------------------------------------------
2322
2323class CommandObjectTargetModulesDump : public CommandObjectMultiword
2324{
2325public:
2326
2327 //------------------------------------------------------------------
2328 // Constructors and Destructors
2329 //------------------------------------------------------------------
2330 CommandObjectTargetModulesDump(CommandInterpreter &interpreter) :
2331 CommandObjectMultiword (interpreter,
2332 "target modules dump",
2333 "A set of commands for dumping information about one or more target modules.",
2334 "target modules dump [symtab|sections|symfile|line-table] [<file1> <file2> ...]")
2335 {
2336 LoadSubCommand ("symtab", CommandObjectSP (new CommandObjectTargetModulesDumpSymtab (interpreter)));
2337 LoadSubCommand ("sections", CommandObjectSP (new CommandObjectTargetModulesDumpSections (interpreter)));
2338 LoadSubCommand ("symfile", CommandObjectSP (new CommandObjectTargetModulesDumpSymfile (interpreter)));
2339 LoadSubCommand ("line-table", CommandObjectSP (new CommandObjectTargetModulesDumpLineTable (interpreter)));
2340 }
2341
2342 virtual
2343 ~CommandObjectTargetModulesDump()
2344 {
2345 }
2346};
2347
2348class CommandObjectTargetModulesAdd : public CommandObject
2349{
2350public:
2351 CommandObjectTargetModulesAdd (CommandInterpreter &interpreter) :
2352 CommandObject (interpreter,
2353 "target modules add",
2354 "Add a new module to the current target's modules.",
2355 "target modules add [<module>]")
2356 {
2357 }
2358
2359 virtual
2360 ~CommandObjectTargetModulesAdd ()
2361 {
2362 }
2363
2364 virtual bool
2365 Execute (Args& args,
2366 CommandReturnObject &result)
2367 {
2368 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2369 if (target == NULL)
2370 {
2371 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2372 result.SetStatus (eReturnStatusFailed);
2373 return false;
2374 }
2375 else
2376 {
2377 const size_t argc = args.GetArgumentCount();
2378 if (argc == 0)
2379 {
2380 result.AppendError ("one or more executable image paths must be specified");
2381 result.SetStatus (eReturnStatusFailed);
2382 return false;
2383 }
2384 else
2385 {
2386 for (size_t i=0; i<argc; ++i)
2387 {
2388 const char *path = args.GetArgumentAtIndex(i);
2389 if (path)
2390 {
2391 FileSpec file_spec(path, true);
Greg Claytone1f50b92011-05-03 22:09:39 +00002392 if (file_spec.Exists())
2393 {
Greg Clayton444fe992012-02-26 05:51:37 +00002394 ModuleSpec module_spec (file_spec);
2395 ModuleSP module_sp (target->GetSharedModule (module_spec));
Greg Claytone1f50b92011-05-03 22:09:39 +00002396 if (!module_sp)
2397 {
2398 result.AppendError ("one or more executable image paths must be specified");
2399 result.SetStatus (eReturnStatusFailed);
2400 return false;
2401 }
Jason Molenda36f6fb92011-08-02 23:28:55 +00002402 result.SetStatus (eReturnStatusSuccessFinishResult);
Greg Claytone1f50b92011-05-03 22:09:39 +00002403 }
2404 else
2405 {
2406 char resolved_path[PATH_MAX];
2407 result.SetStatus (eReturnStatusFailed);
2408 if (file_spec.GetPath (resolved_path, sizeof(resolved_path)))
2409 {
2410 if (strcmp (resolved_path, path) != 0)
2411 {
2412 result.AppendErrorWithFormat ("invalid module path '%s' with resolved path '%s'\n", path, resolved_path);
2413 break;
2414 }
2415 }
2416 result.AppendErrorWithFormat ("invalid module path '%s'\n", path);
2417 break;
2418 }
2419 }
2420 }
2421 }
2422 }
2423 return result.Succeeded();
2424 }
2425
2426 int
2427 HandleArgumentCompletion (Args &input,
2428 int &cursor_index,
2429 int &cursor_char_position,
2430 OptionElementVector &opt_element_vector,
2431 int match_start_point,
2432 int max_return_elements,
2433 bool &word_complete,
2434 StringList &matches)
2435 {
2436 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
2437 completion_str.erase (cursor_char_position);
2438
2439 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
2440 CommandCompletions::eDiskFileCompletion,
2441 completion_str.c_str(),
2442 match_start_point,
2443 max_return_elements,
2444 NULL,
2445 word_complete,
2446 matches);
2447 return matches.GetSize();
2448 }
2449
2450};
2451
2452class CommandObjectTargetModulesLoad : public CommandObjectTargetModulesModuleAutoComplete
2453{
2454public:
2455 CommandObjectTargetModulesLoad (CommandInterpreter &interpreter) :
2456 CommandObjectTargetModulesModuleAutoComplete (interpreter,
2457 "target modules load",
2458 "Set the load addresses for one or more sections in a target module.",
2459 "target modules load [--file <module> --uuid <uuid>] <sect-name> <address> [<sect-name> <address> ....]"),
2460 m_option_group (interpreter),
2461 m_file_option (LLDB_OPT_SET_1, false, "file", 'f', 0, eArgTypePath, "Fullpath or basename for module to load."),
2462 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)
2463 {
2464 m_option_group.Append (&m_uuid_option_group, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
2465 m_option_group.Append (&m_file_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
2466 m_option_group.Append (&m_slide_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
2467 m_option_group.Finalize();
2468 }
2469
2470 virtual
2471 ~CommandObjectTargetModulesLoad ()
2472 {
2473 }
2474
2475 virtual bool
2476 Execute (Args& args,
2477 CommandReturnObject &result)
2478 {
2479 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2480 if (target == NULL)
2481 {
2482 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2483 result.SetStatus (eReturnStatusFailed);
2484 return false;
2485 }
2486 else
2487 {
2488 const size_t argc = args.GetArgumentCount();
Greg Clayton444fe992012-02-26 05:51:37 +00002489 ModuleSpec module_spec;
2490 bool search_using_module_spec = false;
Greg Claytone1f50b92011-05-03 22:09:39 +00002491 if (m_file_option.GetOptionValue().OptionWasSet())
Greg Clayton444fe992012-02-26 05:51:37 +00002492 {
2493 search_using_module_spec = true;
2494 module_spec.GetFileSpec() = m_file_option.GetOptionValue().GetCurrentValue();
2495 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002496
2497 if (m_uuid_option_group.GetOptionValue().OptionWasSet())
Greg Clayton444fe992012-02-26 05:51:37 +00002498 {
2499 search_using_module_spec = true;
2500 module_spec.GetUUID() = m_uuid_option_group.GetOptionValue().GetCurrentValue();
2501 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002502
Greg Clayton444fe992012-02-26 05:51:37 +00002503 if (search_using_module_spec)
Greg Claytone1f50b92011-05-03 22:09:39 +00002504 {
2505
2506 ModuleList matching_modules;
Greg Clayton444fe992012-02-26 05:51:37 +00002507 const size_t num_matches = target->GetImages().FindModules (module_spec, matching_modules);
Greg Claytone1f50b92011-05-03 22:09:39 +00002508
2509 char path[PATH_MAX];
2510 if (num_matches == 1)
2511 {
2512 Module *module = matching_modules.GetModulePointerAtIndex(0);
2513 if (module)
2514 {
2515 ObjectFile *objfile = module->GetObjectFile();
2516 if (objfile)
2517 {
2518 SectionList *section_list = objfile->GetSectionList();
2519 if (section_list)
2520 {
Greg Clayton9ab696e2012-03-27 21:10:07 +00002521 bool changed = false;
Greg Claytone1f50b92011-05-03 22:09:39 +00002522 if (argc == 0)
2523 {
2524 if (m_slide_option.GetOptionValue().OptionWasSet())
2525 {
Greg Clayton9ab696e2012-03-27 21:10:07 +00002526 const addr_t slide = m_slide_option.GetOptionValue().GetCurrentValue();
2527 module->SetLoadAddress (*target, slide, changed);
Greg Claytone1f50b92011-05-03 22:09:39 +00002528 }
2529 else
2530 {
2531 result.AppendError ("one or more section name + load address pair must be specified");
2532 result.SetStatus (eReturnStatusFailed);
2533 return false;
2534 }
2535 }
2536 else
2537 {
2538 if (m_slide_option.GetOptionValue().OptionWasSet())
2539 {
2540 result.AppendError ("The \"--slide <offset>\" option can't be used in conjunction with setting section load addresses.\n");
2541 result.SetStatus (eReturnStatusFailed);
2542 return false;
2543 }
2544
2545 for (size_t i=0; i<argc; i += 2)
2546 {
2547 const char *sect_name = args.GetArgumentAtIndex(i);
2548 const char *load_addr_cstr = args.GetArgumentAtIndex(i+1);
2549 if (sect_name && load_addr_cstr)
2550 {
2551 ConstString const_sect_name(sect_name);
2552 bool success = false;
2553 addr_t load_addr = Args::StringToUInt64(load_addr_cstr, LLDB_INVALID_ADDRESS, 0, &success);
2554 if (success)
2555 {
2556 SectionSP section_sp (section_list->FindSectionByName(const_sect_name));
2557 if (section_sp)
2558 {
Greg Clayton9ab696e2012-03-27 21:10:07 +00002559 if (section_sp->IsThreadSpecific())
2560 {
2561 result.AppendErrorWithFormat ("thread specific sections are not yet supported (section '%s')\n", sect_name);
2562 result.SetStatus (eReturnStatusFailed);
2563 break;
2564 }
2565 else
2566 {
2567 if (target->GetSectionLoadList().SetSectionLoadAddress (section_sp.get(), load_addr))
2568 changed = true;
2569 result.AppendMessageWithFormat("section '%s' loaded at 0x%llx\n", sect_name, load_addr);
2570 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002571 }
2572 else
2573 {
2574 result.AppendErrorWithFormat ("no section found that matches the section name '%s'\n", sect_name);
2575 result.SetStatus (eReturnStatusFailed);
2576 break;
2577 }
2578 }
2579 else
2580 {
2581 result.AppendErrorWithFormat ("invalid load address string '%s'\n", load_addr_cstr);
2582 result.SetStatus (eReturnStatusFailed);
2583 break;
2584 }
2585 }
2586 else
2587 {
2588 if (sect_name)
2589 result.AppendError ("section names must be followed by a load address.\n");
2590 else
2591 result.AppendError ("one or more section name + load address pair must be specified.\n");
2592 result.SetStatus (eReturnStatusFailed);
2593 break;
2594 }
2595 }
2596 }
Greg Clayton9ab696e2012-03-27 21:10:07 +00002597
2598 if (changed)
2599 target->ModulesDidLoad (matching_modules);
Greg Claytone1f50b92011-05-03 22:09:39 +00002600 }
2601 else
2602 {
2603 module->GetFileSpec().GetPath (path, sizeof(path));
2604 result.AppendErrorWithFormat ("no sections in object file '%s'\n", path);
2605 result.SetStatus (eReturnStatusFailed);
2606 }
2607 }
2608 else
2609 {
2610 module->GetFileSpec().GetPath (path, sizeof(path));
2611 result.AppendErrorWithFormat ("no object file for module '%s'\n", path);
2612 result.SetStatus (eReturnStatusFailed);
2613 }
2614 }
2615 else
2616 {
2617 module->GetFileSpec().GetPath (path, sizeof(path));
2618 result.AppendErrorWithFormat ("invalid module '%s'.\n", path);
2619 result.SetStatus (eReturnStatusFailed);
2620 }
2621 }
2622 else
2623 {
2624 char uuid_cstr[64];
Greg Clayton444fe992012-02-26 05:51:37 +00002625
2626 if (module_spec.GetFileSpec())
2627 module_spec.GetFileSpec().GetPath (path, sizeof(path));
Greg Claytone1f50b92011-05-03 22:09:39 +00002628 else
2629 path[0] = '\0';
2630
Greg Clayton444fe992012-02-26 05:51:37 +00002631 if (module_spec.GetUUIDPtr())
2632 module_spec.GetUUID().GetAsCString(uuid_cstr, sizeof(uuid_cstr));
Greg Claytone1f50b92011-05-03 22:09:39 +00002633 else
2634 uuid_cstr[0] = '\0';
2635 if (num_matches > 1)
2636 {
2637 result.AppendErrorWithFormat ("multiple modules match%s%s%s%s:\n",
2638 path[0] ? " file=" : "",
2639 path,
2640 uuid_cstr[0] ? " uuid=" : "",
2641 uuid_cstr);
2642 for (size_t i=0; i<num_matches; ++i)
2643 {
2644 if (matching_modules.GetModulePointerAtIndex(i)->GetFileSpec().GetPath (path, sizeof(path)))
2645 result.AppendMessageWithFormat("%s\n", path);
2646 }
2647 }
2648 else
2649 {
2650 result.AppendErrorWithFormat ("no modules were found that match%s%s%s%s.\n",
2651 path[0] ? " file=" : "",
2652 path,
2653 uuid_cstr[0] ? " uuid=" : "",
2654 uuid_cstr);
2655 }
2656 result.SetStatus (eReturnStatusFailed);
2657 }
2658 }
2659 else
2660 {
2661 result.AppendError ("either the \"--file <module>\" or the \"--uuid <uuid>\" option must be specified.\n");
2662 result.SetStatus (eReturnStatusFailed);
2663 return false;
2664 }
2665 }
2666 return result.Succeeded();
2667 }
2668
2669 virtual Options *
2670 GetOptions ()
2671 {
2672 return &m_option_group;
2673 }
2674
2675protected:
2676 OptionGroupOptions m_option_group;
2677 OptionGroupUUID m_uuid_option_group;
2678 OptionGroupFile m_file_option;
2679 OptionGroupUInt64 m_slide_option;
2680};
2681
2682//----------------------------------------------------------------------
2683// List images with associated information
2684//----------------------------------------------------------------------
2685class CommandObjectTargetModulesList : public CommandObject
2686{
2687public:
2688
2689 class CommandOptions : public Options
2690 {
2691 public:
2692
2693 CommandOptions (CommandInterpreter &interpreter) :
Greg Clayton899025f2011-08-09 00:01:09 +00002694 Options(interpreter),
Jim Ingham6bdea822011-10-24 18:36:33 +00002695 m_format_array(),
Daniel Dunbar97c89572011-10-31 22:50:49 +00002696 m_use_global_module_list (false),
Jim Ingham6bdea822011-10-24 18:36:33 +00002697 m_module_addr (LLDB_INVALID_ADDRESS)
Greg Claytone1f50b92011-05-03 22:09:39 +00002698 {
2699 }
2700
2701 virtual
2702 ~CommandOptions ()
2703 {
2704 }
2705
2706 virtual Error
2707 SetOptionValue (uint32_t option_idx, const char *option_arg)
2708 {
2709 char short_option = (char) m_getopt_table[option_idx].val;
Greg Clayton899025f2011-08-09 00:01:09 +00002710 if (short_option == 'g')
2711 {
2712 m_use_global_module_list = true;
2713 }
Jim Ingham6bdea822011-10-24 18:36:33 +00002714 else if (short_option == 'a')
2715 {
2716 bool success;
2717 m_module_addr = Args::StringToAddress(option_arg, LLDB_INVALID_ADDRESS, &success);
2718 if (!success)
2719 {
2720 Error error;
Greg Clayton9c236732011-10-26 00:56:27 +00002721 error.SetErrorStringWithFormat("invalid address: \"%s\"", option_arg);
Jim Ingham6bdea822011-10-24 18:36:33 +00002722 }
2723 }
Greg Clayton899025f2011-08-09 00:01:09 +00002724 else
2725 {
2726 uint32_t width = 0;
2727 if (option_arg)
2728 width = strtoul (option_arg, NULL, 0);
2729 m_format_array.push_back(std::make_pair(short_option, width));
2730 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002731 Error error;
2732 return error;
2733 }
2734
2735 void
2736 OptionParsingStarting ()
2737 {
2738 m_format_array.clear();
Greg Clayton899025f2011-08-09 00:01:09 +00002739 m_use_global_module_list = false;
Jim Ingham6bdea822011-10-24 18:36:33 +00002740 m_module_addr = LLDB_INVALID_ADDRESS;
Greg Claytone1f50b92011-05-03 22:09:39 +00002741 }
2742
2743 const OptionDefinition*
2744 GetDefinitions ()
2745 {
2746 return g_option_table;
2747 }
2748
2749 // Options table: Required for subclasses of Options.
2750
2751 static OptionDefinition g_option_table[];
2752
2753 // Instance variables to hold the values for command options.
2754 typedef std::vector< std::pair<char, uint32_t> > FormatWidthCollection;
2755 FormatWidthCollection m_format_array;
Greg Clayton899025f2011-08-09 00:01:09 +00002756 bool m_use_global_module_list;
Jim Ingham6bdea822011-10-24 18:36:33 +00002757 lldb::addr_t m_module_addr;
Greg Claytone1f50b92011-05-03 22:09:39 +00002758 };
2759
2760 CommandObjectTargetModulesList (CommandInterpreter &interpreter) :
2761 CommandObject (interpreter,
2762 "target modules list",
2763 "List current executable and dependent shared library images.",
2764 "target modules list [<cmd-options>]"),
2765 m_options (interpreter)
2766 {
2767 }
2768
2769 virtual
2770 ~CommandObjectTargetModulesList ()
2771 {
2772 }
2773
2774 virtual
2775 Options *
2776 GetOptions ()
2777 {
2778 return &m_options;
2779 }
2780
2781 virtual bool
2782 Execute (Args& command,
2783 CommandReturnObject &result)
2784 {
2785 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Greg Clayton153ccd72011-08-10 02:10:13 +00002786 const bool use_global_module_list = m_options.m_use_global_module_list;
2787 if (target == NULL && use_global_module_list == false)
Greg Claytone1f50b92011-05-03 22:09:39 +00002788 {
2789 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2790 result.SetStatus (eReturnStatusFailed);
2791 return false;
2792 }
2793 else
2794 {
Greg Clayton153ccd72011-08-10 02:10:13 +00002795 if (target)
2796 {
2797 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2798 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2799 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2800 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002801 // Dump all sections for all modules images
Greg Clayton899025f2011-08-09 00:01:09 +00002802 uint32_t num_modules = 0;
2803 Mutex::Locker locker;
Jim Ingham6bdea822011-10-24 18:36:33 +00002804
2805 Stream &strm = result.GetOutputStream();
2806
2807 if (m_options.m_module_addr != LLDB_INVALID_ADDRESS)
2808 {
2809 if (target)
2810 {
2811 Address module_address;
2812 if (module_address.SetLoadAddress(m_options.m_module_addr, target))
2813 {
Greg Clayton3508c382012-02-24 01:59:29 +00002814 ModuleSP module_sp (module_address.GetModule());
2815 if (module_sp)
Jim Ingham6bdea822011-10-24 18:36:33 +00002816 {
Greg Clayton3508c382012-02-24 01:59:29 +00002817 PrintModule (target, module_sp.get(), UINT32_MAX, 0, strm);
Jim Ingham6bdea822011-10-24 18:36:33 +00002818 result.SetStatus (eReturnStatusSuccessFinishResult);
2819 }
2820 else
2821 {
2822 result.AppendError ("Couldn't find module matching address: 0x%llx.", m_options.m_module_addr);
2823 result.SetStatus (eReturnStatusFailed);
2824 }
2825 }
2826 else
2827 {
2828 result.AppendError ("Couldn't find module containing address: 0x%llx.", m_options.m_module_addr);
2829 result.SetStatus (eReturnStatusFailed);
2830 }
2831 }
2832 else
2833 {
2834 result.AppendError ("Can only look up modules by address with a valid target.");
2835 result.SetStatus (eReturnStatusFailed);
2836 }
2837 return result.Succeeded();
2838 }
2839
Greg Clayton153ccd72011-08-10 02:10:13 +00002840 if (use_global_module_list)
Greg Clayton899025f2011-08-09 00:01:09 +00002841 {
Greg Claytonc149c8b2012-01-27 18:08:35 +00002842 locker.Reset (Module::GetAllocationModuleCollectionMutex()->GetMutex());
Greg Clayton899025f2011-08-09 00:01:09 +00002843 num_modules = Module::GetNumberAllocatedModules();
2844 }
2845 else
2846 num_modules = target->GetImages().GetSize();
2847
Greg Claytone1f50b92011-05-03 22:09:39 +00002848 if (num_modules > 0)
Jim Ingham6bdea822011-10-24 18:36:33 +00002849 {
Greg Claytone1f50b92011-05-03 22:09:39 +00002850 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
2851 {
Greg Clayton153ccd72011-08-10 02:10:13 +00002852 ModuleSP module_sp;
Greg Clayton899025f2011-08-09 00:01:09 +00002853 Module *module;
Greg Clayton153ccd72011-08-10 02:10:13 +00002854 if (use_global_module_list)
Greg Clayton899025f2011-08-09 00:01:09 +00002855 {
2856 module = Module::GetAllocatedModuleAtIndex(image_idx);
Greg Clayton13d24fb2012-01-29 20:56:30 +00002857 module_sp = module->shared_from_this();
Greg Clayton899025f2011-08-09 00:01:09 +00002858 }
2859 else
2860 {
Greg Clayton153ccd72011-08-10 02:10:13 +00002861 module_sp = target->GetImages().GetModuleAtIndex(image_idx);
2862 module = module_sp.get();
Greg Clayton899025f2011-08-09 00:01:09 +00002863 }
Jim Ingham6bdea822011-10-24 18:36:33 +00002864
Greg Claytonb5a8f142012-02-05 02:38:54 +00002865 int indent = strm.Printf("[%3u] ", image_idx);
2866 PrintModule (target, module, image_idx, indent, strm);
Greg Clayton153ccd72011-08-10 02:10:13 +00002867
Greg Claytone1f50b92011-05-03 22:09:39 +00002868 }
2869 result.SetStatus (eReturnStatusSuccessFinishResult);
2870 }
2871 else
2872 {
Greg Clayton153ccd72011-08-10 02:10:13 +00002873 if (use_global_module_list)
2874 result.AppendError ("the global module list is empty");
2875 else
2876 result.AppendError ("the target has no associated executable images");
Greg Claytone1f50b92011-05-03 22:09:39 +00002877 result.SetStatus (eReturnStatusFailed);
2878 return false;
2879 }
2880 }
2881 return result.Succeeded();
2882 }
2883protected:
Jim Ingham6bdea822011-10-24 18:36:33 +00002884
2885 void
Greg Claytonb5a8f142012-02-05 02:38:54 +00002886 PrintModule (Target *target, Module *module, uint32_t idx, int indent, Stream &strm)
Jim Ingham6bdea822011-10-24 18:36:33 +00002887 {
2888
2889 bool dump_object_name = false;
2890 if (m_options.m_format_array.empty())
2891 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002892 m_options.m_format_array.push_back(std::make_pair('u', 0));
2893 m_options.m_format_array.push_back(std::make_pair('h', 0));
2894 m_options.m_format_array.push_back(std::make_pair('f', 0));
2895 m_options.m_format_array.push_back(std::make_pair('S', 0));
Jim Ingham6bdea822011-10-24 18:36:33 +00002896 }
Greg Claytonb5a8f142012-02-05 02:38:54 +00002897 const size_t num_entries = m_options.m_format_array.size();
2898 bool print_space = false;
2899 for (size_t i=0; i<num_entries; ++i)
Jim Ingham6bdea822011-10-24 18:36:33 +00002900 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002901 if (print_space)
2902 strm.PutChar(' ');
2903 print_space = true;
2904 const char format_char = m_options.m_format_array[i].first;
2905 uint32_t width = m_options.m_format_array[i].second;
2906 switch (format_char)
Jim Ingham6bdea822011-10-24 18:36:33 +00002907 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002908 case 'A':
2909 DumpModuleArchitecture (strm, module, false, width);
2910 break;
2911
2912 case 't':
2913 DumpModuleArchitecture (strm, module, true, width);
2914 break;
2915
2916 case 'f':
2917 DumpFullpath (strm, &module->GetFileSpec(), width);
2918 dump_object_name = true;
2919 break;
2920
2921 case 'd':
2922 DumpDirectory (strm, &module->GetFileSpec(), width);
2923 break;
2924
2925 case 'b':
2926 DumpBasename (strm, &module->GetFileSpec(), width);
2927 dump_object_name = true;
2928 break;
2929
2930 case 'h':
2931 case 'o':
2932 // Image header address
2933 {
2934 uint32_t addr_nibble_width = target ? (target->GetArchitecture().GetAddressByteSize() * 2) : 16;
Jim Ingham6bdea822011-10-24 18:36:33 +00002935
Greg Claytonb5a8f142012-02-05 02:38:54 +00002936 ObjectFile *objfile = module->GetObjectFile ();
2937 if (objfile)
Jim Ingham6bdea822011-10-24 18:36:33 +00002938 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002939 Address header_addr(objfile->GetHeaderAddress());
2940 if (header_addr.IsValid())
Jim Ingham6bdea822011-10-24 18:36:33 +00002941 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002942 if (target && !target->GetSectionLoadList().IsEmpty())
Jim Ingham6bdea822011-10-24 18:36:33 +00002943 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002944 lldb::addr_t header_load_addr = header_addr.GetLoadAddress (target);
2945 if (header_load_addr == LLDB_INVALID_ADDRESS)
2946 {
2947 header_addr.Dump (&strm, target, Address::DumpStyleModuleWithFileAddress, Address::DumpStyleFileAddress);
2948 }
Jim Ingham6bdea822011-10-24 18:36:33 +00002949 else
Greg Claytonb5a8f142012-02-05 02:38:54 +00002950 {
2951 if (format_char == 'o')
2952 {
2953 // Show the offset of slide for the image
2954 strm.Printf ("0x%*.*llx", addr_nibble_width, addr_nibble_width, header_load_addr - header_addr.GetFileAddress());
2955 }
2956 else
2957 {
2958 // Show the load address of the image
2959 strm.Printf ("0x%*.*llx", addr_nibble_width, addr_nibble_width, header_load_addr);
2960 }
2961 }
Jim Ingham6bdea822011-10-24 18:36:33 +00002962 break;
2963 }
Greg Claytonb5a8f142012-02-05 02:38:54 +00002964 // The address was valid, but the image isn't loaded, output the address in an appropriate format
2965 header_addr.Dump (&strm, target, Address::DumpStyleFileAddress);
2966 break;
Jim Ingham6bdea822011-10-24 18:36:33 +00002967 }
Jim Ingham6bdea822011-10-24 18:36:33 +00002968 }
Greg Claytonb5a8f142012-02-05 02:38:54 +00002969 strm.Printf ("%*s", addr_nibble_width + 2, "");
2970 }
2971 break;
2972 case 'r':
2973 {
2974 uint32_t ref_count = 0;
2975 ModuleSP module_sp (module->shared_from_this());
2976 if (module_sp)
2977 {
2978 // Take one away to make sure we don't count our local "module_sp"
2979 ref_count = module_sp.use_count() - 1;
2980 }
2981 if (width)
2982 strm.Printf("{%*u}", width, ref_count);
2983 else
2984 strm.Printf("{%u}", ref_count);
2985 }
2986 break;
Jim Ingham6bdea822011-10-24 18:36:33 +00002987
Greg Claytonb5a8f142012-02-05 02:38:54 +00002988 case 's':
2989 case 'S':
2990 {
2991 SymbolVendor *symbol_vendor = module->GetSymbolVendor();
2992 if (symbol_vendor)
2993 {
2994 SymbolFile *symbol_file = symbol_vendor->GetSymbolFile();
2995 if (symbol_file)
2996 {
2997 if (format_char == 'S')
2998 {
2999 FileSpec &symfile_spec = symbol_file->GetObjectFile()->GetFileSpec();
3000 // Dump symbol file only if different from module file
3001 if (!symfile_spec || symfile_spec == module->GetFileSpec())
3002 {
3003 print_space = false;
3004 break;
3005 }
3006 // Add a newline and indent past the index
3007 strm.Printf ("\n%*s", indent, "");
3008 }
3009 DumpFullpath (strm, &symbol_file->GetObjectFile()->GetFileSpec(), width);
3010 dump_object_name = true;
3011 break;
3012 }
3013 }
3014 strm.Printf("%.*s", width, "<NONE>");
3015 }
3016 break;
3017
3018 case 'm':
3019 module->GetModificationTime().Dump(&strm, width);
3020 break;
Jim Ingham6bdea822011-10-24 18:36:33 +00003021
Greg Claytonb5a8f142012-02-05 02:38:54 +00003022 case 'p':
3023 strm.Printf("%p", module);
3024 break;
3025
3026 case 'u':
3027 DumpModuleUUID(strm, module);
3028 break;
3029
3030 default:
3031 break;
Jim Ingham6bdea822011-10-24 18:36:33 +00003032 }
Greg Claytonb5a8f142012-02-05 02:38:54 +00003033
3034 }
3035 if (dump_object_name)
3036 {
3037 const char *object_name = module->GetObjectName().GetCString();
3038 if (object_name)
3039 strm.Printf ("(%s)", object_name);
Jim Ingham6bdea822011-10-24 18:36:33 +00003040 }
3041 strm.EOL();
3042 }
3043
Greg Claytone1f50b92011-05-03 22:09:39 +00003044 CommandOptions m_options;
3045};
3046
3047OptionDefinition
3048CommandObjectTargetModulesList::CommandOptions::g_option_table[] =
3049{
Jim Ingham6bdea822011-10-24 18:36:33 +00003050 { LLDB_OPT_SET_1, false, "address", 'a', required_argument, NULL, 0, eArgTypeAddress, "Display the image at this address."},
3051 { LLDB_OPT_SET_1, false, "arch", 'A', optional_argument, NULL, 0, eArgTypeWidth, "Display the architecture when listing images."},
Greg Claytone1f50b92011-05-03 22:09:39 +00003052 { LLDB_OPT_SET_1, false, "triple", 't', optional_argument, NULL, 0, eArgTypeWidth, "Display the triple when listing images."},
Greg Claytonb5a8f142012-02-05 02:38:54 +00003053 { 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."},
3054 { 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 Claytone1f50b92011-05-03 22:09:39 +00003055 { LLDB_OPT_SET_1, false, "uuid", 'u', no_argument, NULL, 0, eArgTypeNone, "Display the UUID when listing images."},
3056 { LLDB_OPT_SET_1, false, "fullpath", 'f', optional_argument, NULL, 0, eArgTypeWidth, "Display the fullpath to the image object file."},
3057 { LLDB_OPT_SET_1, false, "directory", 'd', optional_argument, NULL, 0, eArgTypeWidth, "Display the directory with optional width for the image object file."},
3058 { LLDB_OPT_SET_1, false, "basename", 'b', optional_argument, NULL, 0, eArgTypeWidth, "Display the basename with optional width for the image object file."},
3059 { LLDB_OPT_SET_1, false, "symfile", 's', optional_argument, NULL, 0, eArgTypeWidth, "Display the fullpath to the image symbol file with optional width."},
Greg Claytonb5a8f142012-02-05 02:38:54 +00003060 { 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 Clayton153ccd72011-08-10 02:10:13 +00003061 { LLDB_OPT_SET_1, false, "mod-time", 'm', optional_argument, NULL, 0, eArgTypeWidth, "Display the modification time with optional width of the module."},
3062 { 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."},
3063 { LLDB_OPT_SET_1, false, "pointer", 'p', optional_argument, NULL, 0, eArgTypeNone, "Display the module pointer."},
Greg Clayton899025f2011-08-09 00:01:09 +00003064 { 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 Claytone1f50b92011-05-03 22:09:39 +00003065 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
3066};
3067
3068
3069
3070//----------------------------------------------------------------------
3071// Lookup information in images
3072//----------------------------------------------------------------------
3073class CommandObjectTargetModulesLookup : public CommandObject
3074{
3075public:
3076
3077 enum
3078 {
3079 eLookupTypeInvalid = -1,
3080 eLookupTypeAddress = 0,
3081 eLookupTypeSymbol,
3082 eLookupTypeFileLine, // Line is optional
3083 eLookupTypeFunction,
3084 eLookupTypeType,
3085 kNumLookupTypes
3086 };
3087
3088 class CommandOptions : public Options
3089 {
3090 public:
3091
3092 CommandOptions (CommandInterpreter &interpreter) :
3093 Options(interpreter)
3094 {
3095 OptionParsingStarting();
3096 }
3097
3098 virtual
3099 ~CommandOptions ()
3100 {
3101 }
3102
3103 virtual Error
3104 SetOptionValue (uint32_t option_idx, const char *option_arg)
3105 {
3106 Error error;
3107
3108 char short_option = (char) m_getopt_table[option_idx].val;
3109
3110 switch (short_option)
3111 {
3112 case 'a':
3113 m_type = eLookupTypeAddress;
3114 m_addr = Args::StringToUInt64(option_arg, LLDB_INVALID_ADDRESS);
3115 if (m_addr == LLDB_INVALID_ADDRESS)
Greg Clayton9c236732011-10-26 00:56:27 +00003116 error.SetErrorStringWithFormat ("invalid address string '%s'", option_arg);
Greg Claytone1f50b92011-05-03 22:09:39 +00003117 break;
3118
3119 case 'o':
3120 m_offset = Args::StringToUInt64(option_arg, LLDB_INVALID_ADDRESS);
3121 if (m_offset == LLDB_INVALID_ADDRESS)
Greg Clayton9c236732011-10-26 00:56:27 +00003122 error.SetErrorStringWithFormat ("invalid offset string '%s'", option_arg);
Greg Claytone1f50b92011-05-03 22:09:39 +00003123 break;
3124
3125 case 's':
3126 m_str = option_arg;
3127 m_type = eLookupTypeSymbol;
3128 break;
3129
3130 case 'f':
3131 m_file.SetFile (option_arg, false);
3132 m_type = eLookupTypeFileLine;
3133 break;
3134
3135 case 'i':
Sean Callanan9ad19532012-02-11 01:22:21 +00003136 m_include_inlines = false;
Greg Claytone1f50b92011-05-03 22:09:39 +00003137 break;
3138
3139 case 'l':
3140 m_line_number = Args::StringToUInt32(option_arg, UINT32_MAX);
3141 if (m_line_number == UINT32_MAX)
Greg Clayton9c236732011-10-26 00:56:27 +00003142 error.SetErrorStringWithFormat ("invalid line number string '%s'", option_arg);
Greg Claytone1f50b92011-05-03 22:09:39 +00003143 else if (m_line_number == 0)
Greg Clayton9c236732011-10-26 00:56:27 +00003144 error.SetErrorString ("zero is an invalid line number");
Greg Claytone1f50b92011-05-03 22:09:39 +00003145 m_type = eLookupTypeFileLine;
3146 break;
3147
3148 case 'n':
3149 m_str = option_arg;
3150 m_type = eLookupTypeFunction;
3151 break;
3152
3153 case 't':
3154 m_str = option_arg;
3155 m_type = eLookupTypeType;
3156 break;
3157
3158 case 'v':
3159 m_verbose = 1;
3160 break;
3161
3162 case 'r':
3163 m_use_regex = true;
3164 break;
3165 }
3166
3167 return error;
3168 }
3169
3170 void
3171 OptionParsingStarting ()
3172 {
3173 m_type = eLookupTypeInvalid;
3174 m_str.clear();
3175 m_file.Clear();
3176 m_addr = LLDB_INVALID_ADDRESS;
3177 m_offset = 0;
3178 m_line_number = 0;
3179 m_use_regex = false;
Sean Callanan9ad19532012-02-11 01:22:21 +00003180 m_include_inlines = true;
Greg Claytone1f50b92011-05-03 22:09:39 +00003181 m_verbose = false;
3182 }
3183
3184 const OptionDefinition*
3185 GetDefinitions ()
3186 {
3187 return g_option_table;
3188 }
3189
3190 // Options table: Required for subclasses of Options.
3191
3192 static OptionDefinition g_option_table[];
3193 int m_type; // Should be a eLookupTypeXXX enum after parsing options
3194 std::string m_str; // Holds name lookup
3195 FileSpec m_file; // Files for file lookups
3196 lldb::addr_t m_addr; // Holds the address to lookup
3197 lldb::addr_t m_offset; // Subtract this offset from m_addr before doing lookups.
3198 uint32_t m_line_number; // Line number for file+line lookups
3199 bool m_use_regex; // Name lookups in m_str are regular expressions.
Sean Callanan9ad19532012-02-11 01:22:21 +00003200 bool m_include_inlines;// Check for inline entries when looking up by file/line.
Greg Claytone1f50b92011-05-03 22:09:39 +00003201 bool m_verbose; // Enable verbose lookup info
3202
3203 };
3204
3205 CommandObjectTargetModulesLookup (CommandInterpreter &interpreter) :
3206 CommandObject (interpreter,
3207 "target modules lookup",
3208 "Look up information within executable and dependent shared library images.",
3209 NULL),
3210 m_options (interpreter)
3211 {
3212 CommandArgumentEntry arg;
3213 CommandArgumentData file_arg;
3214
3215 // Define the first (and only) variant of this arg.
3216 file_arg.arg_type = eArgTypeFilename;
3217 file_arg.arg_repetition = eArgRepeatStar;
3218
3219 // There is only one variant this argument could be; put it into the argument entry.
3220 arg.push_back (file_arg);
3221
3222 // Push the data for the first argument into the m_arguments vector.
3223 m_arguments.push_back (arg);
3224 }
3225
3226 virtual
3227 ~CommandObjectTargetModulesLookup ()
3228 {
3229 }
3230
3231 virtual Options *
3232 GetOptions ()
3233 {
3234 return &m_options;
3235 }
3236
3237
3238 bool
3239 LookupInModule (CommandInterpreter &interpreter, Module *module, CommandReturnObject &result, bool &syntax_error)
3240 {
3241 switch (m_options.m_type)
3242 {
3243 case eLookupTypeAddress:
3244 if (m_options.m_addr != LLDB_INVALID_ADDRESS)
3245 {
3246 if (LookupAddressInModule (m_interpreter,
3247 result.GetOutputStream(),
3248 module,
3249 eSymbolContextEverything,
3250 m_options.m_addr,
3251 m_options.m_offset,
3252 m_options.m_verbose))
3253 {
3254 result.SetStatus(eReturnStatusSuccessFinishResult);
3255 return true;
3256 }
3257 }
3258 break;
3259
3260 case eLookupTypeSymbol:
3261 if (!m_options.m_str.empty())
3262 {
3263 if (LookupSymbolInModule (m_interpreter, result.GetOutputStream(), module, m_options.m_str.c_str(), m_options.m_use_regex))
3264 {
3265 result.SetStatus(eReturnStatusSuccessFinishResult);
3266 return true;
3267 }
3268 }
3269 break;
3270
3271 case eLookupTypeFileLine:
3272 if (m_options.m_file)
3273 {
3274
3275 if (LookupFileAndLineInModule (m_interpreter,
3276 result.GetOutputStream(),
3277 module,
3278 m_options.m_file,
3279 m_options.m_line_number,
Sean Callanan9ad19532012-02-11 01:22:21 +00003280 m_options.m_include_inlines,
Greg Claytone1f50b92011-05-03 22:09:39 +00003281 m_options.m_verbose))
3282 {
3283 result.SetStatus(eReturnStatusSuccessFinishResult);
3284 return true;
3285 }
3286 }
3287 break;
3288
3289 case eLookupTypeFunction:
3290 if (!m_options.m_str.empty())
3291 {
3292 if (LookupFunctionInModule (m_interpreter,
3293 result.GetOutputStream(),
3294 module,
3295 m_options.m_str.c_str(),
3296 m_options.m_use_regex,
Sean Callanan9ad19532012-02-11 01:22:21 +00003297 m_options.m_include_inlines,
Greg Claytone1f50b92011-05-03 22:09:39 +00003298 m_options.m_verbose))
3299 {
3300 result.SetStatus(eReturnStatusSuccessFinishResult);
3301 return true;
3302 }
3303 }
3304 break;
3305
3306 case eLookupTypeType:
3307 if (!m_options.m_str.empty())
3308 {
3309 if (LookupTypeInModule (m_interpreter,
3310 result.GetOutputStream(),
3311 module,
3312 m_options.m_str.c_str(),
3313 m_options.m_use_regex))
3314 {
3315 result.SetStatus(eReturnStatusSuccessFinishResult);
3316 return true;
3317 }
3318 }
3319 break;
3320
3321 default:
3322 m_options.GenerateOptionUsage (result.GetErrorStream(), this);
3323 syntax_error = true;
3324 break;
3325 }
3326
3327 result.SetStatus (eReturnStatusFailed);
3328 return false;
3329 }
3330
3331 virtual bool
3332 Execute (Args& command,
3333 CommandReturnObject &result)
3334 {
3335 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
3336 if (target == NULL)
3337 {
3338 result.AppendError ("invalid target, create a debug target using the 'target create' command");
3339 result.SetStatus (eReturnStatusFailed);
3340 return false;
3341 }
3342 else
3343 {
3344 bool syntax_error = false;
3345 uint32_t i;
3346 uint32_t num_successful_lookups = 0;
3347 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
3348 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
3349 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
3350 // Dump all sections for all modules images
3351
3352 if (command.GetArgumentCount() == 0)
3353 {
3354 // Dump all sections for all modules images
3355 const uint32_t num_modules = target->GetImages().GetSize();
3356 if (num_modules > 0)
3357 {
3358 for (i = 0; i<num_modules && syntax_error == false; ++i)
3359 {
3360 if (LookupInModule (m_interpreter, target->GetImages().GetModulePointerAtIndex(i), result, syntax_error))
3361 {
3362 result.GetOutputStream().EOL();
3363 num_successful_lookups++;
3364 }
3365 }
3366 }
3367 else
3368 {
3369 result.AppendError ("the target has no associated executable images");
3370 result.SetStatus (eReturnStatusFailed);
3371 return false;
3372 }
3373 }
3374 else
3375 {
3376 // Dump specified images (by basename or fullpath)
3377 const char *arg_cstr;
3378 for (i = 0; (arg_cstr = command.GetArgumentAtIndex(i)) != NULL && syntax_error == false; ++i)
3379 {
Greg Clayton91048ef2011-11-10 01:18:58 +00003380 ModuleList module_list;
3381 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, false);
3382 if (num_matches > 0)
Greg Claytone1f50b92011-05-03 22:09:39 +00003383 {
Greg Clayton91048ef2011-11-10 01:18:58 +00003384 for (size_t i=0; i<num_matches; ++i)
Greg Claytone1f50b92011-05-03 22:09:39 +00003385 {
Greg Clayton91048ef2011-11-10 01:18:58 +00003386 Module *module = module_list.GetModulePointerAtIndex(i);
3387 if (module)
Greg Claytone1f50b92011-05-03 22:09:39 +00003388 {
Greg Clayton91048ef2011-11-10 01:18:58 +00003389 if (LookupInModule (m_interpreter, module, result, syntax_error))
Greg Claytone1f50b92011-05-03 22:09:39 +00003390 {
3391 result.GetOutputStream().EOL();
3392 num_successful_lookups++;
3393 }
3394 }
3395 }
3396 }
3397 else
3398 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
3399 }
3400 }
3401
3402 if (num_successful_lookups > 0)
3403 result.SetStatus (eReturnStatusSuccessFinishResult);
3404 else
3405 result.SetStatus (eReturnStatusFailed);
3406 }
3407 return result.Succeeded();
3408 }
3409protected:
3410
3411 CommandOptions m_options;
3412};
3413
3414OptionDefinition
3415CommandObjectTargetModulesLookup::CommandOptions::g_option_table[] =
3416{
3417 { LLDB_OPT_SET_1, true, "address", 'a', required_argument, NULL, 0, eArgTypeAddress, "Lookup an address in one or more target modules."},
3418 { 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."},
Jim Inghame7a91c12011-06-20 23:38:11 +00003419 { LLDB_OPT_SET_2| LLDB_OPT_SET_4
3420 /* FIXME: re-enable this for types when the LookupTypeInModule actually uses the regex option: | LLDB_OPT_SET_5 */ ,
3421 false, "regex", 'r', no_argument, NULL, 0, eArgTypeNone, "The <name> argument for name lookups are regular expressions."},
Greg Claytone1f50b92011-05-03 22:09:39 +00003422 { 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."},
Greg Claytone1f50b92011-05-03 22:09:39 +00003423 { 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."},
3424 { 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)."},
Sean Callanan9ad19532012-02-11 01:22:21 +00003425 { LLDB_OPT_SET_3|
3426 LLDB_OPT_SET_4, false, "no-inlines", 'i', no_argument, NULL, 0, eArgTypeNone, "Ignore inline entries (must be used in conjunction with --file or --function)."},
Greg Claytone1f50b92011-05-03 22:09:39 +00003427 { LLDB_OPT_SET_4, true, "function", 'n', required_argument, NULL, 0, eArgTypeFunctionName, "Lookup a function by name in the debug symbols in one or more target modules."},
3428 { LLDB_OPT_SET_5, true, "type", 't', required_argument, NULL, 0, eArgTypeName, "Lookup a type by name in the debug symbols in one or more target modules."},
3429 { LLDB_OPT_SET_ALL, false, "verbose", 'v', no_argument, NULL, 0, eArgTypeNone, "Enable verbose lookup information."},
3430 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
3431};
Chris Lattner24943d22010-06-08 16:52:24 +00003432
3433
Jim Inghamd60d94a2011-03-11 03:53:59 +00003434#pragma mark CommandObjectMultiwordImageSearchPaths
Chris Lattner24943d22010-06-08 16:52:24 +00003435
3436//-------------------------------------------------------------------------
3437// CommandObjectMultiwordImageSearchPaths
3438//-------------------------------------------------------------------------
3439
Greg Claytone1f50b92011-05-03 22:09:39 +00003440class CommandObjectTargetModulesImageSearchPaths : public CommandObjectMultiword
Chris Lattner24943d22010-06-08 16:52:24 +00003441{
3442public:
Greg Claytone1f50b92011-05-03 22:09:39 +00003443
3444 CommandObjectTargetModulesImageSearchPaths (CommandInterpreter &interpreter) :
3445 CommandObjectMultiword (interpreter,
3446 "target modules search-paths",
3447 "A set of commands for operating on debugger target image search paths.",
3448 "target modules search-paths <subcommand> [<subcommand-options>]")
Chris Lattner24943d22010-06-08 16:52:24 +00003449 {
Greg Claytone1f50b92011-05-03 22:09:39 +00003450 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetModulesSearchPathsAdd (interpreter)));
3451 LoadSubCommand ("clear", CommandObjectSP (new CommandObjectTargetModulesSearchPathsClear (interpreter)));
3452 LoadSubCommand ("insert", CommandObjectSP (new CommandObjectTargetModulesSearchPathsInsert (interpreter)));
3453 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetModulesSearchPathsList (interpreter)));
3454 LoadSubCommand ("query", CommandObjectSP (new CommandObjectTargetModulesSearchPathsQuery (interpreter)));
Chris Lattner24943d22010-06-08 16:52:24 +00003455 }
Greg Claytone1f50b92011-05-03 22:09:39 +00003456
3457 ~CommandObjectTargetModulesImageSearchPaths()
Chris Lattner24943d22010-06-08 16:52:24 +00003458 {
3459 }
3460};
3461
Greg Claytone1f50b92011-05-03 22:09:39 +00003462
3463
3464#pragma mark CommandObjectTargetModules
3465
3466//-------------------------------------------------------------------------
3467// CommandObjectTargetModules
3468//-------------------------------------------------------------------------
3469
3470class CommandObjectTargetModules : public CommandObjectMultiword
3471{
3472public:
3473 //------------------------------------------------------------------
3474 // Constructors and Destructors
3475 //------------------------------------------------------------------
3476 CommandObjectTargetModules(CommandInterpreter &interpreter) :
3477 CommandObjectMultiword (interpreter,
3478 "target modules",
3479 "A set of commands for accessing information for one or more target modules.",
3480 "target modules <sub-command> ...")
3481 {
3482 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetModulesAdd (interpreter)));
3483 LoadSubCommand ("load", CommandObjectSP (new CommandObjectTargetModulesLoad (interpreter)));
3484 //LoadSubCommand ("unload", CommandObjectSP (new CommandObjectTargetModulesUnload (interpreter)));
3485 LoadSubCommand ("dump", CommandObjectSP (new CommandObjectTargetModulesDump (interpreter)));
3486 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetModulesList (interpreter)));
3487 LoadSubCommand ("lookup", CommandObjectSP (new CommandObjectTargetModulesLookup (interpreter)));
3488 LoadSubCommand ("search-paths", CommandObjectSP (new CommandObjectTargetModulesImageSearchPaths (interpreter)));
3489
3490 }
3491 virtual
3492 ~CommandObjectTargetModules()
3493 {
3494 }
3495
3496private:
3497 //------------------------------------------------------------------
3498 // For CommandObjectTargetModules only
3499 //------------------------------------------------------------------
3500 DISALLOW_COPY_AND_ASSIGN (CommandObjectTargetModules);
3501};
3502
3503
Greg Clayton3508c382012-02-24 01:59:29 +00003504
3505class CommandObjectTargetSymbolsAdd : public CommandObject
3506{
3507public:
3508 CommandObjectTargetSymbolsAdd (CommandInterpreter &interpreter) :
3509 CommandObject (interpreter,
3510 "target symbols add",
3511 "Add a debug symbol file to one of the target's current modules.",
3512 "target symbols add [<symfile>]")
3513 {
3514 }
3515
3516 virtual
3517 ~CommandObjectTargetSymbolsAdd ()
3518 {
3519 }
3520
3521 virtual bool
3522 Execute (Args& args,
3523 CommandReturnObject &result)
3524 {
3525 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
3526 if (target == NULL)
3527 {
3528 result.AppendError ("invalid target, create a debug target using the 'target create' command");
3529 result.SetStatus (eReturnStatusFailed);
3530 return false;
3531 }
3532 else
3533 {
3534 const size_t argc = args.GetArgumentCount();
3535 if (argc == 0)
3536 {
3537 result.AppendError ("one or more symbol file paths must be specified");
3538 result.SetStatus (eReturnStatusFailed);
3539 return false;
3540 }
3541 else
3542 {
3543 for (size_t i=0; i<argc; ++i)
3544 {
3545 const char *symfile_path = args.GetArgumentAtIndex(i);
3546 if (symfile_path)
3547 {
3548 FileSpec symfile_spec(symfile_path, true);
3549 ArchSpec arch;
3550 if (symfile_spec.Exists())
3551 {
3552 ModuleSP symfile_module_sp (new Module (symfile_spec, target->GetArchitecture()));
3553 if (symfile_module_sp)
3554 {
3555 // We now have a module that represents a symbol file
3556 // that can be used for a module that might exist in the
3557 // current target, so we need to find that module in the
3558 // target
3559
3560 ModuleSP old_module_sp (target->GetImages().FindModule (symfile_module_sp->GetUUID()));
3561 if (old_module_sp)
3562 {
Greg Claytond4f16c82012-03-29 21:43:25 +00003563 // The module has not yet created its symbol vendor, we can just
3564 // give the existing target module the symfile path to use for
3565 // when it decides to create it!
3566 old_module_sp->SetSymbolFileFileSpec (symfile_module_sp->GetFileSpec());
Greg Clayton3508c382012-02-24 01:59:29 +00003567
Greg Claytond4f16c82012-03-29 21:43:25 +00003568 // Let clients know something changed in the module
3569 // if it is currently loaded
3570 ModuleList module_list;
3571 module_list.Append (old_module_sp);
3572 target->ModulesDidLoad (module_list);
Greg Clayton3508c382012-02-24 01:59:29 +00003573 }
3574 }
3575 else
3576 {
3577 result.AppendError ("one or more executable image paths must be specified");
3578 result.SetStatus (eReturnStatusFailed);
3579 return false;
3580 }
3581 result.SetStatus (eReturnStatusSuccessFinishResult);
3582 }
3583 else
3584 {
3585 char resolved_symfile_path[PATH_MAX];
3586 result.SetStatus (eReturnStatusFailed);
3587 if (symfile_spec.GetPath (resolved_symfile_path, sizeof(resolved_symfile_path)))
3588 {
3589 if (strcmp (resolved_symfile_path, symfile_path) != 0)
3590 {
3591 result.AppendErrorWithFormat ("invalid module path '%s' with resolved path '%s'\n", symfile_path, resolved_symfile_path);
3592 break;
3593 }
3594 }
3595 result.AppendErrorWithFormat ("invalid module path '%s'\n", symfile_path);
3596 break;
3597 }
3598 }
3599 }
3600 }
3601 }
3602 return result.Succeeded();
3603 }
3604
3605 int
3606 HandleArgumentCompletion (Args &input,
3607 int &cursor_index,
3608 int &cursor_char_position,
3609 OptionElementVector &opt_element_vector,
3610 int match_start_point,
3611 int max_return_elements,
3612 bool &word_complete,
3613 StringList &matches)
3614 {
3615 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
3616 completion_str.erase (cursor_char_position);
3617
3618 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
3619 CommandCompletions::eDiskFileCompletion,
3620 completion_str.c_str(),
3621 match_start_point,
3622 max_return_elements,
3623 NULL,
3624 word_complete,
3625 matches);
3626 return matches.GetSize();
3627 }
3628
3629};
3630
3631
3632#pragma mark CommandObjectTargetSymbols
3633
3634//-------------------------------------------------------------------------
3635// CommandObjectTargetSymbols
3636//-------------------------------------------------------------------------
3637
3638class CommandObjectTargetSymbols : public CommandObjectMultiword
3639{
3640public:
3641 //------------------------------------------------------------------
3642 // Constructors and Destructors
3643 //------------------------------------------------------------------
3644 CommandObjectTargetSymbols(CommandInterpreter &interpreter) :
3645 CommandObjectMultiword (interpreter,
3646 "target symbols",
3647 "A set of commands for adding and managing debug symbol files.",
3648 "target symbols <sub-command> ...")
3649 {
3650 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetSymbolsAdd (interpreter)));
3651
3652 }
3653 virtual
3654 ~CommandObjectTargetSymbols()
3655 {
3656 }
3657
3658private:
3659 //------------------------------------------------------------------
3660 // For CommandObjectTargetModules only
3661 //------------------------------------------------------------------
3662 DISALLOW_COPY_AND_ASSIGN (CommandObjectTargetSymbols);
3663};
3664
3665
Jim Inghamd60d94a2011-03-11 03:53:59 +00003666#pragma mark CommandObjectTargetStopHookAdd
3667
3668//-------------------------------------------------------------------------
3669// CommandObjectTargetStopHookAdd
3670//-------------------------------------------------------------------------
3671
3672class CommandObjectTargetStopHookAdd : public CommandObject
3673{
3674public:
3675
3676 class CommandOptions : public Options
3677 {
3678 public:
Greg Claytonf15996e2011-04-07 22:46:35 +00003679 CommandOptions (CommandInterpreter &interpreter) :
3680 Options(interpreter),
Jim Inghamd60d94a2011-03-11 03:53:59 +00003681 m_line_start(0),
3682 m_line_end (UINT_MAX),
3683 m_func_name_type_mask (eFunctionNameTypeAuto),
3684 m_sym_ctx_specified (false),
Johnny Chen60fe60e2011-05-02 23:47:55 +00003685 m_thread_specified (false),
3686 m_use_one_liner (false),
3687 m_one_liner()
Jim Inghamd60d94a2011-03-11 03:53:59 +00003688 {
3689 }
3690
3691 ~CommandOptions () {}
3692
Greg Claytonb3448432011-03-24 21:19:54 +00003693 const OptionDefinition*
Jim Inghamd60d94a2011-03-11 03:53:59 +00003694 GetDefinitions ()
3695 {
3696 return g_option_table;
3697 }
3698
3699 virtual Error
Greg Clayton143fcc32011-04-13 00:18:08 +00003700 SetOptionValue (uint32_t option_idx, const char *option_arg)
Jim Inghamd60d94a2011-03-11 03:53:59 +00003701 {
3702 Error error;
3703 char short_option = (char) m_getopt_table[option_idx].val;
3704 bool success;
3705
3706 switch (short_option)
3707 {
3708 case 'c':
3709 m_class_name = option_arg;
3710 m_sym_ctx_specified = true;
3711 break;
3712
3713 case 'e':
3714 m_line_end = Args::StringToUInt32 (option_arg, UINT_MAX, 0, &success);
3715 if (!success)
3716 {
Greg Clayton9c236732011-10-26 00:56:27 +00003717 error.SetErrorStringWithFormat ("invalid end line number: \"%s\"", option_arg);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003718 break;
3719 }
3720 m_sym_ctx_specified = true;
3721 break;
3722
3723 case 'l':
3724 m_line_start = Args::StringToUInt32 (option_arg, 0, 0, &success);
3725 if (!success)
3726 {
Greg Clayton9c236732011-10-26 00:56:27 +00003727 error.SetErrorStringWithFormat ("invalid start line number: \"%s\"", option_arg);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003728 break;
3729 }
3730 m_sym_ctx_specified = true;
3731 break;
Sean Callanan9ad19532012-02-11 01:22:21 +00003732
3733 case 'i':
3734 m_no_inlines = true;
3735 break;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003736
3737 case 'n':
3738 m_function_name = option_arg;
3739 m_func_name_type_mask |= eFunctionNameTypeAuto;
3740 m_sym_ctx_specified = true;
3741 break;
3742
3743 case 'f':
3744 m_file_name = option_arg;
3745 m_sym_ctx_specified = true;
3746 break;
3747 case 's':
3748 m_module_name = option_arg;
3749 m_sym_ctx_specified = true;
3750 break;
3751 case 't' :
3752 {
Jim Ingham7a4c8ea2011-03-22 01:53:33 +00003753 m_thread_id = Args::StringToUInt64(option_arg, LLDB_INVALID_THREAD_ID, 0);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003754 if (m_thread_id == LLDB_INVALID_THREAD_ID)
Greg Clayton9c236732011-10-26 00:56:27 +00003755 error.SetErrorStringWithFormat ("invalid thread id string '%s'", option_arg);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003756 m_thread_specified = true;
3757 }
3758 break;
3759 case 'T':
3760 m_thread_name = option_arg;
3761 m_thread_specified = true;
3762 break;
3763 case 'q':
3764 m_queue_name = option_arg;
3765 m_thread_specified = true;
3766 break;
3767 case 'x':
3768 {
Jim Ingham7a4c8ea2011-03-22 01:53:33 +00003769 m_thread_index = Args::StringToUInt32(option_arg, UINT32_MAX, 0);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003770 if (m_thread_id == UINT32_MAX)
Greg Clayton9c236732011-10-26 00:56:27 +00003771 error.SetErrorStringWithFormat ("invalid thread index string '%s'", option_arg);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003772 m_thread_specified = true;
3773 }
3774 break;
Johnny Chen60fe60e2011-05-02 23:47:55 +00003775 case 'o':
3776 m_use_one_liner = true;
3777 m_one_liner = option_arg;
3778 break;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003779 default:
Greg Clayton9c236732011-10-26 00:56:27 +00003780 error.SetErrorStringWithFormat ("unrecognized option %c.", short_option);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003781 break;
3782 }
3783 return error;
3784 }
3785
3786 void
Greg Clayton143fcc32011-04-13 00:18:08 +00003787 OptionParsingStarting ()
Jim Inghamd60d94a2011-03-11 03:53:59 +00003788 {
3789 m_class_name.clear();
3790 m_function_name.clear();
3791 m_line_start = 0;
3792 m_line_end = UINT_MAX;
3793 m_file_name.clear();
3794 m_module_name.clear();
3795 m_func_name_type_mask = eFunctionNameTypeAuto;
3796 m_thread_id = LLDB_INVALID_THREAD_ID;
3797 m_thread_index = UINT32_MAX;
3798 m_thread_name.clear();
3799 m_queue_name.clear();
Sean Callanan9ad19532012-02-11 01:22:21 +00003800
3801 m_no_inlines = false;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003802 m_sym_ctx_specified = false;
3803 m_thread_specified = false;
Johnny Chen60fe60e2011-05-02 23:47:55 +00003804
3805 m_use_one_liner = false;
3806 m_one_liner.clear();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003807 }
3808
3809
Greg Claytonb3448432011-03-24 21:19:54 +00003810 static OptionDefinition g_option_table[];
Jim Inghamd60d94a2011-03-11 03:53:59 +00003811
3812 std::string m_class_name;
3813 std::string m_function_name;
3814 uint32_t m_line_start;
3815 uint32_t m_line_end;
3816 std::string m_file_name;
3817 std::string m_module_name;
3818 uint32_t m_func_name_type_mask; // A pick from lldb::FunctionNameType.
3819 lldb::tid_t m_thread_id;
3820 uint32_t m_thread_index;
3821 std::string m_thread_name;
3822 std::string m_queue_name;
3823 bool m_sym_ctx_specified;
Sean Callanan9ad19532012-02-11 01:22:21 +00003824 bool m_no_inlines;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003825 bool m_thread_specified;
Johnny Chen60fe60e2011-05-02 23:47:55 +00003826 // Instance variables to hold the values for one_liner options.
3827 bool m_use_one_liner;
3828 std::string m_one_liner;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003829 };
3830
3831 Options *
3832 GetOptions ()
3833 {
3834 return &m_options;
3835 }
3836
3837 CommandObjectTargetStopHookAdd (CommandInterpreter &interpreter) :
3838 CommandObject (interpreter,
3839 "target stop-hook add ",
3840 "Add a hook to be executed when the target stops.",
Greg Claytonf15996e2011-04-07 22:46:35 +00003841 "target stop-hook add"),
3842 m_options (interpreter)
Jim Inghamd60d94a2011-03-11 03:53:59 +00003843 {
3844 }
3845
3846 ~CommandObjectTargetStopHookAdd ()
3847 {
3848 }
3849
3850 static size_t
3851 ReadCommandsCallbackFunction (void *baton,
3852 InputReader &reader,
3853 lldb::InputReaderAction notification,
3854 const char *bytes,
3855 size_t bytes_len)
3856 {
Caroline Tice892fadd2011-06-16 16:27:19 +00003857 StreamSP out_stream = reader.GetDebugger().GetAsyncOutputStream();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003858 Target::StopHook *new_stop_hook = ((Target::StopHook *) baton);
Jim Inghame15511a2011-05-05 01:03:36 +00003859 static bool got_interrupted;
Caroline Tice892fadd2011-06-16 16:27:19 +00003860 bool batch_mode = reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003861
3862 switch (notification)
3863 {
3864 case eInputReaderActivate:
Caroline Tice892fadd2011-06-16 16:27:19 +00003865 if (!batch_mode)
3866 {
3867 out_stream->Printf ("%s\n", "Enter your stop hook command(s). Type 'DONE' to end.");
3868 if (reader.GetPrompt())
3869 out_stream->Printf ("%s", reader.GetPrompt());
3870 out_stream->Flush();
3871 }
Jim Inghame15511a2011-05-05 01:03:36 +00003872 got_interrupted = false;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003873 break;
3874
3875 case eInputReaderDeactivate:
3876 break;
3877
3878 case eInputReaderReactivate:
Caroline Tice892fadd2011-06-16 16:27:19 +00003879 if (reader.GetPrompt() && !batch_mode)
Jim Inghamd60d94a2011-03-11 03:53:59 +00003880 {
Caroline Tice892fadd2011-06-16 16:27:19 +00003881 out_stream->Printf ("%s", reader.GetPrompt());
3882 out_stream->Flush();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003883 }
Jim Inghame15511a2011-05-05 01:03:36 +00003884 got_interrupted = false;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003885 break;
3886
Caroline Tice4a348082011-05-02 20:41:46 +00003887 case eInputReaderAsynchronousOutputWritten:
3888 break;
3889
Jim Inghamd60d94a2011-03-11 03:53:59 +00003890 case eInputReaderGotToken:
3891 if (bytes && bytes_len && baton)
3892 {
3893 StringList *commands = new_stop_hook->GetCommandPointer();
3894 if (commands)
3895 {
3896 commands->AppendString (bytes, bytes_len);
3897 }
3898 }
Caroline Tice892fadd2011-06-16 16:27:19 +00003899 if (!reader.IsDone() && reader.GetPrompt() && !batch_mode)
Jim Inghamd60d94a2011-03-11 03:53:59 +00003900 {
Caroline Tice892fadd2011-06-16 16:27:19 +00003901 out_stream->Printf ("%s", reader.GetPrompt());
3902 out_stream->Flush();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003903 }
3904 break;
3905
3906 case eInputReaderInterrupt:
3907 {
3908 // Finish, and cancel the stop hook.
3909 new_stop_hook->GetTarget()->RemoveStopHookByID(new_stop_hook->GetID());
Caroline Tice892fadd2011-06-16 16:27:19 +00003910 if (!batch_mode)
3911 {
3912 out_stream->Printf ("Stop hook cancelled.\n");
3913 out_stream->Flush();
3914 }
3915
Jim Inghamd60d94a2011-03-11 03:53:59 +00003916 reader.SetIsDone (true);
3917 }
Jim Inghame15511a2011-05-05 01:03:36 +00003918 got_interrupted = true;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003919 break;
3920
3921 case eInputReaderEndOfFile:
3922 reader.SetIsDone (true);
3923 break;
3924
3925 case eInputReaderDone:
Caroline Tice892fadd2011-06-16 16:27:19 +00003926 if (!got_interrupted && !batch_mode)
3927 {
Greg Clayton444e35b2011-10-19 18:09:39 +00003928 out_stream->Printf ("Stop hook #%llu added.\n", new_stop_hook->GetID());
Caroline Tice892fadd2011-06-16 16:27:19 +00003929 out_stream->Flush();
3930 }
Jim Inghamd60d94a2011-03-11 03:53:59 +00003931 break;
3932 }
3933
3934 return bytes_len;
3935 }
3936
3937 bool
3938 Execute (Args& command,
3939 CommandReturnObject &result)
3940 {
3941 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
3942 if (target)
3943 {
3944 Target::StopHookSP new_hook_sp;
3945 target->AddStopHook (new_hook_sp);
3946
3947 // First step, make the specifier.
3948 std::auto_ptr<SymbolContextSpecifier> specifier_ap;
3949 if (m_options.m_sym_ctx_specified)
3950 {
3951 specifier_ap.reset(new SymbolContextSpecifier(m_interpreter.GetDebugger().GetSelectedTarget()));
3952
3953 if (!m_options.m_module_name.empty())
3954 {
3955 specifier_ap->AddSpecification (m_options.m_module_name.c_str(), SymbolContextSpecifier::eModuleSpecified);
3956 }
3957
3958 if (!m_options.m_class_name.empty())
3959 {
3960 specifier_ap->AddSpecification (m_options.m_class_name.c_str(), SymbolContextSpecifier::eClassOrNamespaceSpecified);
3961 }
3962
3963 if (!m_options.m_file_name.empty())
3964 {
3965 specifier_ap->AddSpecification (m_options.m_file_name.c_str(), SymbolContextSpecifier::eFileSpecified);
3966 }
3967
3968 if (m_options.m_line_start != 0)
3969 {
3970 specifier_ap->AddLineSpecification (m_options.m_line_start, SymbolContextSpecifier::eLineStartSpecified);
3971 }
3972
3973 if (m_options.m_line_end != UINT_MAX)
3974 {
3975 specifier_ap->AddLineSpecification (m_options.m_line_end, SymbolContextSpecifier::eLineEndSpecified);
3976 }
3977
3978 if (!m_options.m_function_name.empty())
3979 {
3980 specifier_ap->AddSpecification (m_options.m_function_name.c_str(), SymbolContextSpecifier::eFunctionSpecified);
3981 }
3982 }
3983
3984 if (specifier_ap.get())
3985 new_hook_sp->SetSpecifier (specifier_ap.release());
3986
3987 // Next see if any of the thread options have been entered:
3988
3989 if (m_options.m_thread_specified)
3990 {
3991 ThreadSpec *thread_spec = new ThreadSpec();
3992
3993 if (m_options.m_thread_id != LLDB_INVALID_THREAD_ID)
3994 {
3995 thread_spec->SetTID (m_options.m_thread_id);
3996 }
3997
3998 if (m_options.m_thread_index != UINT32_MAX)
3999 thread_spec->SetIndex (m_options.m_thread_index);
4000
4001 if (!m_options.m_thread_name.empty())
4002 thread_spec->SetName (m_options.m_thread_name.c_str());
4003
4004 if (!m_options.m_queue_name.empty())
4005 thread_spec->SetQueueName (m_options.m_queue_name.c_str());
4006
4007 new_hook_sp->SetThreadSpecifier (thread_spec);
4008
4009 }
Johnny Chen60fe60e2011-05-02 23:47:55 +00004010 if (m_options.m_use_one_liner)
Jim Inghamd60d94a2011-03-11 03:53:59 +00004011 {
Johnny Chen60fe60e2011-05-02 23:47:55 +00004012 // Use one-liner.
4013 new_hook_sp->GetCommandPointer()->AppendString (m_options.m_one_liner.c_str());
Greg Clayton444e35b2011-10-19 18:09:39 +00004014 result.AppendMessageWithFormat("Stop hook #%llu added.\n", new_hook_sp->GetID());
Jim Inghamd60d94a2011-03-11 03:53:59 +00004015 }
Johnny Chen60fe60e2011-05-02 23:47:55 +00004016 else
Jim Inghamd60d94a2011-03-11 03:53:59 +00004017 {
Johnny Chen60fe60e2011-05-02 23:47:55 +00004018 // Otherwise gather up the command list, we'll push an input reader and suck the data from that directly into
4019 // the new stop hook's command string.
4020 InputReaderSP reader_sp (new InputReader(m_interpreter.GetDebugger()));
4021 if (!reader_sp)
4022 {
4023 result.AppendError("out of memory\n");
4024 result.SetStatus (eReturnStatusFailed);
4025 target->RemoveStopHookByID (new_hook_sp->GetID());
4026 return false;
4027 }
4028
4029 Error err (reader_sp->Initialize (CommandObjectTargetStopHookAdd::ReadCommandsCallbackFunction,
4030 new_hook_sp.get(), // baton
4031 eInputReaderGranularityLine, // token size, to pass to callback function
4032 "DONE", // end token
4033 "> ", // prompt
4034 true)); // echo input
4035 if (!err.Success())
4036 {
4037 result.AppendError (err.AsCString());
4038 result.SetStatus (eReturnStatusFailed);
4039 target->RemoveStopHookByID (new_hook_sp->GetID());
4040 return false;
4041 }
4042 m_interpreter.GetDebugger().PushInputReader (reader_sp);
Jim Inghamd60d94a2011-03-11 03:53:59 +00004043 }
Jim Inghamd60d94a2011-03-11 03:53:59 +00004044 result.SetStatus (eReturnStatusSuccessFinishNoResult);
4045 }
4046 else
4047 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004048 result.AppendError ("invalid target\n");
Jim Inghamd60d94a2011-03-11 03:53:59 +00004049 result.SetStatus (eReturnStatusFailed);
4050 }
4051
4052 return result.Succeeded();
4053 }
4054private:
4055 CommandOptions m_options;
4056};
4057
Greg Claytonb3448432011-03-24 21:19:54 +00004058OptionDefinition
Jim Inghamd60d94a2011-03-11 03:53:59 +00004059CommandObjectTargetStopHookAdd::CommandOptions::g_option_table[] =
4060{
Johnny Chen60fe60e2011-05-02 23:47:55 +00004061 { LLDB_OPT_SET_ALL, false, "one-liner", 'o', required_argument, NULL, NULL, eArgTypeOneLiner,
4062 "Specify a one-line breakpoint command inline. Be sure to surround it with quotes." },
Jim Inghamd60d94a2011-03-11 03:53:59 +00004063 { LLDB_OPT_SET_ALL, false, "shlib", 's', required_argument, NULL, CommandCompletions::eModuleCompletion, eArgTypeShlibName,
4064 "Set the module within which the stop-hook is to be run."},
4065 { LLDB_OPT_SET_ALL, false, "thread-index", 'x', required_argument, NULL, NULL, eArgTypeThreadIndex,
4066 "The stop hook is run only for the thread whose index matches this argument."},
4067 { LLDB_OPT_SET_ALL, false, "thread-id", 't', required_argument, NULL, NULL, eArgTypeThreadID,
4068 "The stop hook is run only for the thread whose TID matches this argument."},
4069 { LLDB_OPT_SET_ALL, false, "thread-name", 'T', required_argument, NULL, NULL, eArgTypeThreadName,
4070 "The stop hook is run only for the thread whose thread name matches this argument."},
4071 { LLDB_OPT_SET_ALL, false, "queue-name", 'q', required_argument, NULL, NULL, eArgTypeQueueName,
4072 "The stop hook is run only for threads in the queue whose name is given by this argument."},
4073 { LLDB_OPT_SET_1, false, "file", 'f', required_argument, NULL, CommandCompletions::eSourceFileCompletion, eArgTypeFilename,
4074 "Specify the source file within which the stop-hook is to be run." },
4075 { LLDB_OPT_SET_1, false, "start-line", 'l', required_argument, NULL, 0, eArgTypeLineNum,
4076 "Set the start of the line range for which the stop-hook is to be run."},
4077 { LLDB_OPT_SET_1, false, "end-line", 'e', required_argument, NULL, 0, eArgTypeLineNum,
4078 "Set the end of the line range for which the stop-hook is to be run."},
4079 { LLDB_OPT_SET_2, false, "classname", 'c', required_argument, NULL, NULL, eArgTypeClassName,
4080 "Specify the class within which the stop-hook is to be run." },
4081 { LLDB_OPT_SET_3, false, "name", 'n', required_argument, NULL, CommandCompletions::eSymbolCompletion, eArgTypeFunctionName,
4082 "Set the function name within which the stop hook will be run." },
4083 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
4084};
4085
4086#pragma mark CommandObjectTargetStopHookDelete
4087
4088//-------------------------------------------------------------------------
4089// CommandObjectTargetStopHookDelete
4090//-------------------------------------------------------------------------
4091
4092class CommandObjectTargetStopHookDelete : public CommandObject
4093{
4094public:
4095
4096 CommandObjectTargetStopHookDelete (CommandInterpreter &interpreter) :
4097 CommandObject (interpreter,
Jason Molenda3fccc902011-11-10 23:03:44 +00004098 "target stop-hook delete",
Jim Inghamd60d94a2011-03-11 03:53:59 +00004099 "Delete a stop-hook.",
Jason Molenda3fccc902011-11-10 23:03:44 +00004100 "target stop-hook delete [<idx>]")
Jim Inghamd60d94a2011-03-11 03:53:59 +00004101 {
4102 }
4103
4104 ~CommandObjectTargetStopHookDelete ()
4105 {
4106 }
4107
4108 bool
4109 Execute (Args& command,
4110 CommandReturnObject &result)
4111 {
4112 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
4113 if (target)
4114 {
4115 // FIXME: see if we can use the breakpoint id style parser?
4116 size_t num_args = command.GetArgumentCount();
4117 if (num_args == 0)
4118 {
4119 if (!m_interpreter.Confirm ("Delete all stop hooks?", true))
4120 {
4121 result.SetStatus (eReturnStatusFailed);
4122 return false;
4123 }
4124 else
4125 {
4126 target->RemoveAllStopHooks();
4127 }
4128 }
4129 else
4130 {
4131 bool success;
4132 for (size_t i = 0; i < num_args; i++)
4133 {
4134 lldb::user_id_t user_id = Args::StringToUInt32 (command.GetArgumentAtIndex(i), 0, 0, &success);
4135 if (!success)
4136 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004137 result.AppendErrorWithFormat ("invalid stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Inghamd60d94a2011-03-11 03:53:59 +00004138 result.SetStatus(eReturnStatusFailed);
4139 return false;
4140 }
4141 success = target->RemoveStopHookByID (user_id);
4142 if (!success)
4143 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004144 result.AppendErrorWithFormat ("unknown stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Inghamd60d94a2011-03-11 03:53:59 +00004145 result.SetStatus(eReturnStatusFailed);
4146 return false;
4147 }
4148 }
4149 }
4150 result.SetStatus (eReturnStatusSuccessFinishNoResult);
4151 }
4152 else
4153 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004154 result.AppendError ("invalid target\n");
Jim Inghamd60d94a2011-03-11 03:53:59 +00004155 result.SetStatus (eReturnStatusFailed);
4156 }
4157
4158 return result.Succeeded();
4159 }
4160};
4161#pragma mark CommandObjectTargetStopHookEnableDisable
4162
4163//-------------------------------------------------------------------------
4164// CommandObjectTargetStopHookEnableDisable
4165//-------------------------------------------------------------------------
4166
4167class CommandObjectTargetStopHookEnableDisable : public CommandObject
4168{
4169public:
4170
4171 CommandObjectTargetStopHookEnableDisable (CommandInterpreter &interpreter, bool enable, const char *name, const char *help, const char *syntax) :
4172 CommandObject (interpreter,
4173 name,
4174 help,
4175 syntax),
4176 m_enable (enable)
4177 {
4178 }
4179
4180 ~CommandObjectTargetStopHookEnableDisable ()
4181 {
4182 }
4183
4184 bool
4185 Execute (Args& command,
4186 CommandReturnObject &result)
4187 {
4188 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
4189 if (target)
4190 {
4191 // FIXME: see if we can use the breakpoint id style parser?
4192 size_t num_args = command.GetArgumentCount();
4193 bool success;
4194
4195 if (num_args == 0)
4196 {
4197 target->SetAllStopHooksActiveState (m_enable);
4198 }
4199 else
4200 {
4201 for (size_t i = 0; i < num_args; i++)
4202 {
4203 lldb::user_id_t user_id = Args::StringToUInt32 (command.GetArgumentAtIndex(i), 0, 0, &success);
4204 if (!success)
4205 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004206 result.AppendErrorWithFormat ("invalid stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Inghamd60d94a2011-03-11 03:53:59 +00004207 result.SetStatus(eReturnStatusFailed);
4208 return false;
4209 }
4210 success = target->SetStopHookActiveStateByID (user_id, m_enable);
4211 if (!success)
4212 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004213 result.AppendErrorWithFormat ("unknown stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Inghamd60d94a2011-03-11 03:53:59 +00004214 result.SetStatus(eReturnStatusFailed);
4215 return false;
4216 }
4217 }
4218 }
4219 result.SetStatus (eReturnStatusSuccessFinishNoResult);
4220 }
4221 else
4222 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004223 result.AppendError ("invalid target\n");
Jim Inghamd60d94a2011-03-11 03:53:59 +00004224 result.SetStatus (eReturnStatusFailed);
4225 }
4226 return result.Succeeded();
4227 }
4228private:
4229 bool m_enable;
4230};
4231
4232#pragma mark CommandObjectTargetStopHookList
4233
4234//-------------------------------------------------------------------------
4235// CommandObjectTargetStopHookList
4236//-------------------------------------------------------------------------
4237
4238class CommandObjectTargetStopHookList : public CommandObject
4239{
4240public:
4241
4242 CommandObjectTargetStopHookList (CommandInterpreter &interpreter) :
4243 CommandObject (interpreter,
Jason Molenda3fccc902011-11-10 23:03:44 +00004244 "target stop-hook list",
Jim Inghamd60d94a2011-03-11 03:53:59 +00004245 "List all stop-hooks.",
Jason Molenda3fccc902011-11-10 23:03:44 +00004246 "target stop-hook list [<type>]")
Jim Inghamd60d94a2011-03-11 03:53:59 +00004247 {
4248 }
4249
4250 ~CommandObjectTargetStopHookList ()
4251 {
4252 }
4253
4254 bool
4255 Execute (Args& command,
4256 CommandReturnObject &result)
4257 {
4258 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Johnny Chen9fc16922011-11-29 23:56:14 +00004259 if (!target)
Jim Inghamd60d94a2011-03-11 03:53:59 +00004260 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004261 result.AppendError ("invalid target\n");
Jim Inghamd60d94a2011-03-11 03:53:59 +00004262 result.SetStatus (eReturnStatusFailed);
Jason Molenda6e3a2412011-09-23 21:15:42 +00004263 return result.Succeeded();
Jim Inghamd60d94a2011-03-11 03:53:59 +00004264 }
4265
4266 size_t num_hooks = target->GetNumStopHooks ();
4267 if (num_hooks == 0)
4268 {
4269 result.GetOutputStream().PutCString ("No stop hooks.\n");
4270 }
4271 else
4272 {
4273 for (size_t i = 0; i < num_hooks; i++)
4274 {
4275 Target::StopHookSP this_hook = target->GetStopHookAtIndex (i);
4276 if (i > 0)
4277 result.GetOutputStream().PutCString ("\n");
4278 this_hook->GetDescription (&(result.GetOutputStream()), eDescriptionLevelFull);
4279 }
4280 }
Johnny Chen6c7c3902011-11-30 19:09:20 +00004281 result.SetStatus (eReturnStatusSuccessFinishResult);
Jim Inghamd60d94a2011-03-11 03:53:59 +00004282 return result.Succeeded();
4283 }
4284};
4285
4286#pragma mark CommandObjectMultiwordTargetStopHooks
4287//-------------------------------------------------------------------------
4288// CommandObjectMultiwordTargetStopHooks
4289//-------------------------------------------------------------------------
4290
4291class CommandObjectMultiwordTargetStopHooks : public CommandObjectMultiword
4292{
4293public:
4294
4295 CommandObjectMultiwordTargetStopHooks (CommandInterpreter &interpreter) :
4296 CommandObjectMultiword (interpreter,
4297 "target stop-hook",
4298 "A set of commands for operating on debugger target stop-hooks.",
4299 "target stop-hook <subcommand> [<subcommand-options>]")
4300 {
4301 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetStopHookAdd (interpreter)));
4302 LoadSubCommand ("delete", CommandObjectSP (new CommandObjectTargetStopHookDelete (interpreter)));
4303 LoadSubCommand ("disable", CommandObjectSP (new CommandObjectTargetStopHookEnableDisable (interpreter,
4304 false,
4305 "target stop-hook disable [<id>]",
4306 "Disable a stop-hook.",
4307 "target stop-hook disable")));
4308 LoadSubCommand ("enable", CommandObjectSP (new CommandObjectTargetStopHookEnableDisable (interpreter,
4309 true,
4310 "target stop-hook enable [<id>]",
4311 "Enable a stop-hook.",
4312 "target stop-hook enable")));
4313 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetStopHookList (interpreter)));
4314 }
4315
4316 ~CommandObjectMultiwordTargetStopHooks()
4317 {
4318 }
4319};
4320
4321
Chris Lattner24943d22010-06-08 16:52:24 +00004322
4323#pragma mark CommandObjectMultiwordTarget
4324
4325//-------------------------------------------------------------------------
4326// CommandObjectMultiwordTarget
4327//-------------------------------------------------------------------------
4328
Greg Clayton63094e02010-06-23 01:19:29 +00004329CommandObjectMultiwordTarget::CommandObjectMultiwordTarget (CommandInterpreter &interpreter) :
Greg Clayton238c0a12010-09-18 01:14:36 +00004330 CommandObjectMultiword (interpreter,
4331 "target",
Chris Lattner24943d22010-06-08 16:52:24 +00004332 "A set of commands for operating on debugger targets.",
4333 "target <subcommand> [<subcommand-options>]")
4334{
Greg Claytonabe0fed2011-04-18 08:33:37 +00004335
4336 LoadSubCommand ("create", CommandObjectSP (new CommandObjectTargetCreate (interpreter)));
Greg Clayton153ccd72011-08-10 02:10:13 +00004337 LoadSubCommand ("delete", CommandObjectSP (new CommandObjectTargetDelete (interpreter)));
Greg Claytonabe0fed2011-04-18 08:33:37 +00004338 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetList (interpreter)));
4339 LoadSubCommand ("select", CommandObjectSP (new CommandObjectTargetSelect (interpreter)));
Jim Inghamd60d94a2011-03-11 03:53:59 +00004340 LoadSubCommand ("stop-hook", CommandObjectSP (new CommandObjectMultiwordTargetStopHooks (interpreter)));
Greg Claytone1f50b92011-05-03 22:09:39 +00004341 LoadSubCommand ("modules", CommandObjectSP (new CommandObjectTargetModules (interpreter)));
Greg Clayton3508c382012-02-24 01:59:29 +00004342 LoadSubCommand ("symbols", CommandObjectSP (new CommandObjectTargetSymbols (interpreter)));
Greg Clayton801417e2011-07-07 01:59:51 +00004343 LoadSubCommand ("variable", CommandObjectSP (new CommandObjectTargetVariable (interpreter)));
Chris Lattner24943d22010-06-08 16:52:24 +00004344}
4345
4346CommandObjectMultiwordTarget::~CommandObjectMultiwordTarget ()
4347{
4348}
4349
Greg Claytonabe0fed2011-04-18 08:33:37 +00004350