blob: c7b644f9087d611893f9dabb0ca51e4b69d151ac [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
Greg Clayton2ad894b2012-05-15 18:43:44 +00001364static void
1365DumpAddress (ExecutionContextScope *exe_scope, const Address &so_addr, bool verbose, Stream &strm)
1366{
1367 strm.IndentMore();
1368 strm.Indent (" Address: ");
1369 so_addr.Dump (&strm, exe_scope, Address::DumpStyleModuleWithFileAddress);
1370 strm.PutCString (" (");
1371 so_addr.Dump (&strm, exe_scope, Address::DumpStyleSectionNameOffset);
1372 strm.PutCString (")\n");
1373 strm.Indent (" Summary: ");
1374 const uint32_t save_indent = strm.GetIndentLevel ();
1375 strm.SetIndentLevel (save_indent + 13);
1376 so_addr.Dump (&strm, exe_scope, Address::DumpStyleResolvedDescription);
1377 strm.SetIndentLevel (save_indent);
1378 // Print out detailed address information when verbose is enabled
1379 if (verbose)
1380 {
1381 strm.EOL();
1382 so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext);
1383 }
1384 strm.IndentLess();
1385}
1386
Greg Claytone1f50b92011-05-03 22:09:39 +00001387static bool
Greg Clayton3508c382012-02-24 01:59:29 +00001388LookupAddressInModule (CommandInterpreter &interpreter,
1389 Stream &strm,
1390 Module *module,
1391 uint32_t resolve_mask,
1392 lldb::addr_t raw_addr,
1393 lldb::addr_t offset,
1394 bool verbose)
Greg Claytone1f50b92011-05-03 22:09:39 +00001395{
1396 if (module)
1397 {
1398 lldb::addr_t addr = raw_addr - offset;
1399 Address so_addr;
1400 SymbolContext sc;
Greg Clayton567e7f32011-09-22 04:58:26 +00001401 Target *target = interpreter.GetExecutionContext().GetTargetPtr();
Greg Claytone1f50b92011-05-03 22:09:39 +00001402 if (target && !target->GetSectionLoadList().IsEmpty())
1403 {
1404 if (!target->GetSectionLoadList().ResolveLoadAddress (addr, so_addr))
1405 return false;
Greg Clayton3508c382012-02-24 01:59:29 +00001406 else if (so_addr.GetModule().get() != module)
Greg Claytone1f50b92011-05-03 22:09:39 +00001407 return false;
1408 }
1409 else
1410 {
1411 if (!module->ResolveFileAddress (addr, so_addr))
1412 return false;
1413 }
1414
Greg Claytone1f50b92011-05-03 22:09:39 +00001415 ExecutionContextScope *exe_scope = interpreter.GetExecutionContext().GetBestExecutionContextScope();
Greg Clayton2ad894b2012-05-15 18:43:44 +00001416 DumpAddress (exe_scope, so_addr, verbose, strm);
1417// strm.IndentMore();
1418// strm.Indent (" Address: ");
1419// so_addr.Dump (&strm, exe_scope, Address::DumpStyleModuleWithFileAddress);
1420// strm.PutCString (" (");
1421// so_addr.Dump (&strm, exe_scope, Address::DumpStyleSectionNameOffset);
1422// strm.PutCString (")\n");
1423// strm.Indent (" Summary: ");
1424// const uint32_t save_indent = strm.GetIndentLevel ();
1425// strm.SetIndentLevel (save_indent + 13);
1426// so_addr.Dump (&strm, exe_scope, Address::DumpStyleResolvedDescription);
1427// strm.SetIndentLevel (save_indent);
1428// // Print out detailed address information when verbose is enabled
1429// if (verbose)
1430// {
1431// strm.EOL();
1432// so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext);
1433// }
1434// strm.IndentLess();
Greg Claytone1f50b92011-05-03 22:09:39 +00001435 return true;
1436 }
1437
1438 return false;
1439}
1440
1441static uint32_t
Greg Clayton2ad894b2012-05-15 18:43:44 +00001442LookupSymbolInModule (CommandInterpreter &interpreter, Stream &strm, Module *module, const char *name, bool name_is_regex, bool verbose)
Greg Claytone1f50b92011-05-03 22:09:39 +00001443{
1444 if (module)
1445 {
1446 SymbolContext sc;
1447
1448 ObjectFile *objfile = module->GetObjectFile ();
1449 if (objfile)
1450 {
1451 Symtab *symtab = objfile->GetSymtab();
1452 if (symtab)
1453 {
1454 uint32_t i;
1455 std::vector<uint32_t> match_indexes;
1456 ConstString symbol_name (name);
1457 uint32_t num_matches = 0;
1458 if (name_is_regex)
1459 {
1460 RegularExpression name_regexp(name);
1461 num_matches = symtab->AppendSymbolIndexesMatchingRegExAndType (name_regexp,
1462 eSymbolTypeAny,
1463 match_indexes);
1464 }
1465 else
1466 {
1467 num_matches = symtab->AppendSymbolIndexesWithName (symbol_name, match_indexes);
1468 }
1469
1470
1471 if (num_matches > 0)
1472 {
1473 strm.Indent ();
1474 strm.Printf("%u symbols match %s'%s' in ", num_matches,
1475 name_is_regex ? "the regular expression " : "", name);
1476 DumpFullpath (strm, &module->GetFileSpec(), 0);
1477 strm.PutCString(":\n");
1478 strm.IndentMore ();
Greg Clayton2ad894b2012-05-15 18:43:44 +00001479 //Symtab::DumpSymbolHeader (&strm);
Greg Claytone1f50b92011-05-03 22:09:39 +00001480 for (i=0; i < num_matches; ++i)
1481 {
1482 Symbol *symbol = symtab->SymbolAtIndex(match_indexes[i]);
Greg Clayton2ad894b2012-05-15 18:43:44 +00001483 DumpAddress (interpreter.GetExecutionContext().GetBestExecutionContextScope(),
1484 symbol->GetAddress(),
1485 verbose,
1486 strm);
1487
1488// strm.Indent ();
1489// symbol->Dump (&strm, interpreter.GetExecutionContext().GetTargetPtr(), i);
Greg Claytone1f50b92011-05-03 22:09:39 +00001490 }
1491 strm.IndentLess ();
1492 return num_matches;
1493 }
1494 }
1495 }
1496 }
1497 return 0;
1498}
1499
1500
1501static void
Greg Clayton2ad894b2012-05-15 18:43:44 +00001502DumpSymbolContextList (ExecutionContextScope *exe_scope, Stream &strm, SymbolContextList &sc_list, bool verbose)
Greg Claytone1f50b92011-05-03 22:09:39 +00001503{
1504 strm.IndentMore ();
1505 uint32_t i;
1506 const uint32_t num_matches = sc_list.GetSize();
1507
1508 for (i=0; i<num_matches; ++i)
1509 {
1510 SymbolContext sc;
1511 if (sc_list.GetContextAtIndex(i, sc))
1512 {
Sean Callanand7793d22012-02-11 00:24:04 +00001513 AddressRange range;
1514
1515 sc.GetAddressRange(eSymbolContextEverything,
1516 0,
1517 true,
1518 range);
1519
Greg Clayton2ad894b2012-05-15 18:43:44 +00001520 DumpAddress (exe_scope, range.GetBaseAddress(), verbose, strm);
Greg Claytone1f50b92011-05-03 22:09:39 +00001521 }
1522 }
1523 strm.IndentLess ();
1524}
1525
1526static uint32_t
Greg Clayton2ad894b2012-05-15 18:43:44 +00001527LookupFunctionInModule (CommandInterpreter &interpreter,
1528 Stream &strm,
1529 Module *module,
1530 const char *name,
1531 bool name_is_regex,
1532 bool include_inlines,
1533 bool include_symbols,
1534 bool verbose)
Greg Claytone1f50b92011-05-03 22:09:39 +00001535{
1536 if (module && name && name[0])
1537 {
1538 SymbolContextList sc_list;
Greg Claytone1f50b92011-05-03 22:09:39 +00001539 const bool append = true;
1540 uint32_t num_matches = 0;
1541 if (name_is_regex)
1542 {
1543 RegularExpression function_name_regex (name);
1544 num_matches = module->FindFunctions (function_name_regex,
1545 include_symbols,
Sean Callanan302d78c2012-02-10 22:52:19 +00001546 include_inlines,
Greg Claytone1f50b92011-05-03 22:09:39 +00001547 append,
1548 sc_list);
1549 }
1550 else
1551 {
1552 ConstString function_name (name);
Sean Callanan3e80cd92011-10-12 02:08:07 +00001553 num_matches = module->FindFunctions (function_name,
1554 NULL,
Greg Claytone1f50b92011-05-03 22:09:39 +00001555 eFunctionNameTypeBase | eFunctionNameTypeFull | eFunctionNameTypeMethod | eFunctionNameTypeSelector,
1556 include_symbols,
Sean Callanan302d78c2012-02-10 22:52:19 +00001557 include_inlines,
Greg Claytone1f50b92011-05-03 22:09:39 +00001558 append,
1559 sc_list);
1560 }
1561
1562 if (num_matches)
1563 {
1564 strm.Indent ();
1565 strm.Printf("%u match%s found in ", num_matches, num_matches > 1 ? "es" : "");
1566 DumpFullpath (strm, &module->GetFileSpec(), 0);
1567 strm.PutCString(":\n");
Greg Clayton2ad894b2012-05-15 18:43:44 +00001568 DumpSymbolContextList (interpreter.GetExecutionContext().GetBestExecutionContextScope(), strm, sc_list, verbose);
Greg Claytone1f50b92011-05-03 22:09:39 +00001569 }
1570 return num_matches;
1571 }
1572 return 0;
1573}
1574
1575static uint32_t
Greg Clayton0cbaacd2012-05-15 19:26:12 +00001576LookupTypeInModule (CommandInterpreter &interpreter,
Greg Clayton801417e2011-07-07 01:59:51 +00001577 Stream &strm,
1578 Module *module,
1579 const char *name_cstr,
1580 bool name_is_regex)
Greg Claytone1f50b92011-05-03 22:09:39 +00001581{
1582 if (module && name_cstr && name_cstr[0])
1583 {
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001584 TypeList type_list;
Greg Claytondc0a38c2012-03-26 23:03:23 +00001585 const uint32_t max_num_matches = UINT32_MAX;
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001586 uint32_t num_matches = 0;
Greg Claytondc0a38c2012-03-26 23:03:23 +00001587 bool name_is_fully_qualified = false;
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001588 SymbolContext sc;
1589
1590 ConstString name(name_cstr);
Greg Claytondc0a38c2012-03-26 23:03:23 +00001591 num_matches = module->FindTypes(sc, name, name_is_fully_qualified, max_num_matches, type_list);
Greg Claytone1f50b92011-05-03 22:09:39 +00001592
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001593 if (num_matches)
1594 {
1595 strm.Indent ();
1596 strm.Printf("%u match%s found in ", num_matches, num_matches > 1 ? "es" : "");
1597 DumpFullpath (strm, &module->GetFileSpec(), 0);
1598 strm.PutCString(":\n");
1599 const uint32_t num_types = type_list.GetSize();
1600 for (uint32_t i=0; i<num_types; ++i)
Greg Claytone1f50b92011-05-03 22:09:39 +00001601 {
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001602 TypeSP type_sp (type_list.GetTypeAtIndex(i));
1603 if (type_sp)
Greg Claytone1f50b92011-05-03 22:09:39 +00001604 {
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001605 // Resolve the clang type so that any forward references
1606 // to types that haven't yet been parsed will get parsed.
1607 type_sp->GetClangFullType ();
1608 type_sp->GetDescription (&strm, eDescriptionLevelFull, true);
Greg Clayton0cbaacd2012-05-15 19:26:12 +00001609 // Print all typedef chains
1610 TypeSP typedef_type_sp (type_sp);
1611 TypeSP typedefed_type_sp (typedef_type_sp->GetTypedefType());
1612 while (typedefed_type_sp)
1613 {
1614 strm.EOL();
1615 strm.Printf(" typedef '%s': ", typedef_type_sp->GetName().GetCString());
1616 typedefed_type_sp->GetClangFullType ();
1617 typedefed_type_sp->GetDescription (&strm, eDescriptionLevelFull, true);
1618 typedef_type_sp = typedefed_type_sp;
1619 typedefed_type_sp = typedef_type_sp->GetTypedefType();
1620 }
Greg Claytone1f50b92011-05-03 22:09:39 +00001621 }
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001622 strm.EOL();
Greg Claytone1f50b92011-05-03 22:09:39 +00001623 }
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001624 }
1625 return num_matches;
Greg Claytone1f50b92011-05-03 22:09:39 +00001626 }
1627 return 0;
1628}
1629
1630static uint32_t
1631LookupFileAndLineInModule (CommandInterpreter &interpreter,
1632 Stream &strm,
1633 Module *module,
1634 const FileSpec &file_spec,
1635 uint32_t line,
1636 bool check_inlines,
1637 bool verbose)
1638{
1639 if (module && file_spec)
1640 {
1641 SymbolContextList sc_list;
1642 const uint32_t num_matches = module->ResolveSymbolContextsForFileSpec(file_spec, line, check_inlines,
1643 eSymbolContextEverything, sc_list);
1644 if (num_matches > 0)
1645 {
1646 strm.Indent ();
1647 strm.Printf("%u match%s found in ", num_matches, num_matches > 1 ? "es" : "");
1648 strm << file_spec;
1649 if (line > 0)
1650 strm.Printf (":%u", line);
1651 strm << " in ";
1652 DumpFullpath (strm, &module->GetFileSpec(), 0);
1653 strm.PutCString(":\n");
Greg Clayton2ad894b2012-05-15 18:43:44 +00001654 DumpSymbolContextList (interpreter.GetExecutionContext().GetBestExecutionContextScope(), strm, sc_list, verbose);
Greg Claytone1f50b92011-05-03 22:09:39 +00001655 return num_matches;
1656 }
1657 }
1658 return 0;
1659
1660}
1661
Greg Clayton91048ef2011-11-10 01:18:58 +00001662
1663static size_t
1664FindModulesByName (Target *target,
1665 const char *module_name,
1666 ModuleList &module_list,
1667 bool check_global_list)
1668{
1669// Dump specified images (by basename or fullpath)
1670 FileSpec module_file_spec(module_name, false);
Greg Clayton444fe992012-02-26 05:51:37 +00001671 ModuleSpec module_spec (module_file_spec);
Greg Clayton91048ef2011-11-10 01:18:58 +00001672
1673 const size_t initial_size = module_list.GetSize ();
1674
1675 size_t num_matches = 0;
1676
1677 if (target)
1678 {
Greg Clayton444fe992012-02-26 05:51:37 +00001679 num_matches = target->GetImages().FindModules (module_spec, module_list);
Greg Clayton91048ef2011-11-10 01:18:58 +00001680
1681 // Not found in our module list for our target, check the main
1682 // shared module list in case it is a extra file used somewhere
1683 // else
1684 if (num_matches == 0)
Greg Clayton444fe992012-02-26 05:51:37 +00001685 {
1686 module_spec.GetArchitecture() = target->GetArchitecture();
1687 num_matches = ModuleList::FindSharedModules (module_spec, module_list);
1688 }
Greg Clayton91048ef2011-11-10 01:18:58 +00001689 }
1690 else
1691 {
Greg Clayton444fe992012-02-26 05:51:37 +00001692 num_matches = ModuleList::FindSharedModules (module_spec,module_list);
Greg Clayton91048ef2011-11-10 01:18:58 +00001693 }
1694
1695 if (check_global_list && num_matches == 0)
1696 {
1697 // Check the global list
Greg Claytonc149c8b2012-01-27 18:08:35 +00001698 Mutex::Locker locker(Module::GetAllocationModuleCollectionMutex());
Greg Clayton91048ef2011-11-10 01:18:58 +00001699 const uint32_t num_modules = Module::GetNumberAllocatedModules();
1700 ModuleSP module_sp;
1701 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
1702 {
1703 Module *module = Module::GetAllocatedModuleAtIndex(image_idx);
1704
1705 if (module)
1706 {
Greg Clayton444fe992012-02-26 05:51:37 +00001707 if (module->MatchesModuleSpec (module_spec))
Greg Clayton91048ef2011-11-10 01:18:58 +00001708 {
Greg Clayton13d24fb2012-01-29 20:56:30 +00001709 module_sp = module->shared_from_this();
Greg Clayton91048ef2011-11-10 01:18:58 +00001710 module_list.AppendIfNeeded(module_sp);
1711 }
1712 }
1713 }
1714 }
1715 return module_list.GetSize () - initial_size;
1716}
1717
Greg Claytone1f50b92011-05-03 22:09:39 +00001718#pragma mark CommandObjectTargetModulesModuleAutoComplete
1719
1720//----------------------------------------------------------------------
1721// A base command object class that can auto complete with module file
1722// paths
1723//----------------------------------------------------------------------
1724
1725class CommandObjectTargetModulesModuleAutoComplete : public CommandObject
1726{
1727public:
1728
1729 CommandObjectTargetModulesModuleAutoComplete (CommandInterpreter &interpreter,
1730 const char *name,
1731 const char *help,
1732 const char *syntax) :
1733 CommandObject (interpreter, name, help, syntax)
1734 {
1735 CommandArgumentEntry arg;
1736 CommandArgumentData file_arg;
1737
1738 // Define the first (and only) variant of this arg.
1739 file_arg.arg_type = eArgTypeFilename;
1740 file_arg.arg_repetition = eArgRepeatStar;
1741
1742 // There is only one variant this argument could be; put it into the argument entry.
1743 arg.push_back (file_arg);
1744
1745 // Push the data for the first argument into the m_arguments vector.
1746 m_arguments.push_back (arg);
1747 }
1748
1749 virtual
1750 ~CommandObjectTargetModulesModuleAutoComplete ()
1751 {
1752 }
1753
1754 virtual int
1755 HandleArgumentCompletion (Args &input,
1756 int &cursor_index,
1757 int &cursor_char_position,
1758 OptionElementVector &opt_element_vector,
1759 int match_start_point,
1760 int max_return_elements,
1761 bool &word_complete,
1762 StringList &matches)
1763 {
1764 // Arguments are the standard module completer.
1765 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
1766 completion_str.erase (cursor_char_position);
1767
1768 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
1769 CommandCompletions::eModuleCompletion,
1770 completion_str.c_str(),
1771 match_start_point,
1772 max_return_elements,
1773 NULL,
1774 word_complete,
1775 matches);
1776 return matches.GetSize();
1777 }
1778};
1779
1780#pragma mark CommandObjectTargetModulesSourceFileAutoComplete
1781
1782//----------------------------------------------------------------------
1783// A base command object class that can auto complete with module source
1784// file paths
1785//----------------------------------------------------------------------
1786
1787class CommandObjectTargetModulesSourceFileAutoComplete : public CommandObject
1788{
1789public:
1790
1791 CommandObjectTargetModulesSourceFileAutoComplete (CommandInterpreter &interpreter,
1792 const char *name,
1793 const char *help,
1794 const char *syntax) :
1795 CommandObject (interpreter, name, help, syntax)
1796 {
1797 CommandArgumentEntry arg;
1798 CommandArgumentData source_file_arg;
1799
1800 // Define the first (and only) variant of this arg.
1801 source_file_arg.arg_type = eArgTypeSourceFile;
1802 source_file_arg.arg_repetition = eArgRepeatPlus;
1803
1804 // There is only one variant this argument could be; put it into the argument entry.
1805 arg.push_back (source_file_arg);
1806
1807 // Push the data for the first argument into the m_arguments vector.
1808 m_arguments.push_back (arg);
1809 }
1810
1811 virtual
1812 ~CommandObjectTargetModulesSourceFileAutoComplete ()
1813 {
1814 }
1815
1816 virtual int
1817 HandleArgumentCompletion (Args &input,
1818 int &cursor_index,
1819 int &cursor_char_position,
1820 OptionElementVector &opt_element_vector,
1821 int match_start_point,
1822 int max_return_elements,
1823 bool &word_complete,
1824 StringList &matches)
1825 {
1826 // Arguments are the standard source file completer.
1827 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
1828 completion_str.erase (cursor_char_position);
1829
1830 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
1831 CommandCompletions::eSourceFileCompletion,
1832 completion_str.c_str(),
1833 match_start_point,
1834 max_return_elements,
1835 NULL,
1836 word_complete,
1837 matches);
1838 return matches.GetSize();
1839 }
1840};
1841
1842
1843#pragma mark CommandObjectTargetModulesDumpSymtab
1844
1845
1846class CommandObjectTargetModulesDumpSymtab : public CommandObjectTargetModulesModuleAutoComplete
1847{
1848public:
1849 CommandObjectTargetModulesDumpSymtab (CommandInterpreter &interpreter) :
1850 CommandObjectTargetModulesModuleAutoComplete (interpreter,
1851 "target modules dump symtab",
1852 "Dump the symbol table from one or more target modules.",
1853 NULL),
1854 m_options (interpreter)
1855 {
1856 }
1857
1858 virtual
1859 ~CommandObjectTargetModulesDumpSymtab ()
1860 {
1861 }
1862
1863 virtual bool
1864 Execute (Args& command,
1865 CommandReturnObject &result)
1866 {
1867 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
1868 if (target == NULL)
1869 {
1870 result.AppendError ("invalid target, create a debug target using the 'target create' command");
1871 result.SetStatus (eReturnStatusFailed);
1872 return false;
1873 }
1874 else
1875 {
1876 uint32_t num_dumped = 0;
1877
1878 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
1879 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
1880 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
1881
1882 if (command.GetArgumentCount() == 0)
1883 {
1884 // Dump all sections for all modules images
1885 const uint32_t num_modules = target->GetImages().GetSize();
1886 if (num_modules > 0)
1887 {
1888 result.GetOutputStream().Printf("Dumping symbol table for %u modules.\n", num_modules);
1889 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
1890 {
1891 if (num_dumped > 0)
1892 {
1893 result.GetOutputStream().EOL();
1894 result.GetOutputStream().EOL();
1895 }
1896 num_dumped++;
1897 DumpModuleSymtab (m_interpreter, result.GetOutputStream(), target->GetImages().GetModulePointerAtIndex(image_idx), m_options.m_sort_order);
1898 }
1899 }
1900 else
1901 {
1902 result.AppendError ("the target has no associated executable images");
1903 result.SetStatus (eReturnStatusFailed);
1904 return false;
1905 }
1906 }
1907 else
1908 {
1909 // Dump specified images (by basename or fullpath)
1910 const char *arg_cstr;
1911 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
1912 {
Greg Clayton91048ef2011-11-10 01:18:58 +00001913 ModuleList module_list;
1914 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true);
1915 if (num_matches > 0)
Greg Claytone1f50b92011-05-03 22:09:39 +00001916 {
Greg Clayton91048ef2011-11-10 01:18:58 +00001917 for (size_t i=0; i<num_matches; ++i)
Greg Claytone1f50b92011-05-03 22:09:39 +00001918 {
Greg Clayton91048ef2011-11-10 01:18:58 +00001919 Module *module = module_list.GetModulePointerAtIndex(i);
1920 if (module)
Greg Claytone1f50b92011-05-03 22:09:39 +00001921 {
1922 if (num_dumped > 0)
1923 {
1924 result.GetOutputStream().EOL();
1925 result.GetOutputStream().EOL();
1926 }
1927 num_dumped++;
Greg Clayton91048ef2011-11-10 01:18:58 +00001928 DumpModuleSymtab (m_interpreter, result.GetOutputStream(), module, m_options.m_sort_order);
Greg Claytone1f50b92011-05-03 22:09:39 +00001929 }
1930 }
1931 }
1932 else
1933 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
1934 }
1935 }
1936
1937 if (num_dumped > 0)
1938 result.SetStatus (eReturnStatusSuccessFinishResult);
1939 else
1940 {
1941 result.AppendError ("no matching executable images found");
1942 result.SetStatus (eReturnStatusFailed);
1943 }
1944 }
1945 return result.Succeeded();
1946 }
1947
1948 virtual Options *
1949 GetOptions ()
1950 {
1951 return &m_options;
1952 }
1953
1954 class CommandOptions : public Options
1955 {
1956 public:
1957
1958 CommandOptions (CommandInterpreter &interpreter) :
1959 Options(interpreter),
1960 m_sort_order (eSortOrderNone)
1961 {
1962 }
1963
1964 virtual
1965 ~CommandOptions ()
1966 {
1967 }
1968
1969 virtual Error
1970 SetOptionValue (uint32_t option_idx, const char *option_arg)
1971 {
1972 Error error;
1973 char short_option = (char) m_getopt_table[option_idx].val;
1974
1975 switch (short_option)
1976 {
1977 case 's':
Greg Claytone1f50b92011-05-03 22:09:39 +00001978 m_sort_order = (SortOrder) Args::StringToOptionEnum (option_arg,
1979 g_option_table[option_idx].enum_values,
1980 eSortOrderNone,
Greg Clayton61aca5d2011-10-07 18:58:12 +00001981 error);
Greg Claytone1f50b92011-05-03 22:09:39 +00001982 break;
1983
1984 default:
Greg Clayton9c236732011-10-26 00:56:27 +00001985 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
Greg Claytone1f50b92011-05-03 22:09:39 +00001986 break;
1987
1988 }
1989 return error;
1990 }
1991
1992 void
1993 OptionParsingStarting ()
1994 {
1995 m_sort_order = eSortOrderNone;
1996 }
1997
1998 const OptionDefinition*
1999 GetDefinitions ()
2000 {
2001 return g_option_table;
2002 }
2003
2004 // Options table: Required for subclasses of Options.
2005 static OptionDefinition g_option_table[];
2006
2007 SortOrder m_sort_order;
2008 };
2009
2010protected:
2011
2012 CommandOptions m_options;
2013};
2014
2015static OptionEnumValueElement
2016g_sort_option_enumeration[4] =
2017{
2018 { eSortOrderNone, "none", "No sorting, use the original symbol table order."},
2019 { eSortOrderByAddress, "address", "Sort output by symbol address."},
2020 { eSortOrderByName, "name", "Sort output by symbol name."},
2021 { 0, NULL, NULL }
2022};
2023
2024
2025OptionDefinition
2026CommandObjectTargetModulesDumpSymtab::CommandOptions::g_option_table[] =
2027{
2028 { LLDB_OPT_SET_1, false, "sort", 's', required_argument, g_sort_option_enumeration, 0, eArgTypeSortOrder, "Supply a sort order when dumping the symbol table."},
2029 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
2030};
2031
2032#pragma mark CommandObjectTargetModulesDumpSections
2033
2034//----------------------------------------------------------------------
2035// Image section dumping command
2036//----------------------------------------------------------------------
2037
2038class CommandObjectTargetModulesDumpSections : public CommandObjectTargetModulesModuleAutoComplete
2039{
2040public:
2041 CommandObjectTargetModulesDumpSections (CommandInterpreter &interpreter) :
2042 CommandObjectTargetModulesModuleAutoComplete (interpreter,
2043 "target modules dump sections",
2044 "Dump the sections from one or more target modules.",
2045 //"target modules dump sections [<file1> ...]")
2046 NULL)
2047 {
2048 }
2049
2050 virtual
2051 ~CommandObjectTargetModulesDumpSections ()
2052 {
2053 }
2054
2055 virtual bool
2056 Execute (Args& command,
2057 CommandReturnObject &result)
2058 {
2059 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2060 if (target == NULL)
2061 {
2062 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2063 result.SetStatus (eReturnStatusFailed);
2064 return false;
2065 }
2066 else
2067 {
2068 uint32_t num_dumped = 0;
2069
2070 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2071 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2072 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2073
2074 if (command.GetArgumentCount() == 0)
2075 {
2076 // Dump all sections for all modules images
2077 const uint32_t num_modules = target->GetImages().GetSize();
2078 if (num_modules > 0)
2079 {
2080 result.GetOutputStream().Printf("Dumping sections for %u modules.\n", num_modules);
2081 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
2082 {
2083 num_dumped++;
2084 DumpModuleSections (m_interpreter, result.GetOutputStream(), target->GetImages().GetModulePointerAtIndex(image_idx));
2085 }
2086 }
2087 else
2088 {
2089 result.AppendError ("the target has no associated executable images");
2090 result.SetStatus (eReturnStatusFailed);
2091 return false;
2092 }
2093 }
2094 else
2095 {
2096 // Dump specified images (by basename or fullpath)
2097 const char *arg_cstr;
2098 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
2099 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002100 ModuleList module_list;
2101 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true);
2102 if (num_matches > 0)
Greg Claytone1f50b92011-05-03 22:09:39 +00002103 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002104 for (size_t i=0; i<num_matches; ++i)
Greg Claytone1f50b92011-05-03 22:09:39 +00002105 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002106 Module *module = module_list.GetModulePointerAtIndex(i);
2107 if (module)
Greg Claytone1f50b92011-05-03 22:09:39 +00002108 {
2109 num_dumped++;
Greg Clayton91048ef2011-11-10 01:18:58 +00002110 DumpModuleSections (m_interpreter, result.GetOutputStream(), module);
Greg Claytone1f50b92011-05-03 22:09:39 +00002111 }
2112 }
2113 }
2114 else
Greg Clayton91048ef2011-11-10 01:18:58 +00002115 {
2116 // Check the global list
Greg Claytonc149c8b2012-01-27 18:08:35 +00002117 Mutex::Locker locker(Module::GetAllocationModuleCollectionMutex());
Greg Clayton91048ef2011-11-10 01:18:58 +00002118
Greg Claytone1f50b92011-05-03 22:09:39 +00002119 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
Greg Clayton91048ef2011-11-10 01:18:58 +00002120 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002121 }
2122 }
2123
2124 if (num_dumped > 0)
2125 result.SetStatus (eReturnStatusSuccessFinishResult);
2126 else
2127 {
2128 result.AppendError ("no matching executable images found");
2129 result.SetStatus (eReturnStatusFailed);
2130 }
2131 }
2132 return result.Succeeded();
2133 }
2134};
2135
2136
2137#pragma mark CommandObjectTargetModulesDumpSymfile
2138
2139//----------------------------------------------------------------------
2140// Image debug symbol dumping command
2141//----------------------------------------------------------------------
2142
2143class CommandObjectTargetModulesDumpSymfile : public CommandObjectTargetModulesModuleAutoComplete
2144{
2145public:
2146 CommandObjectTargetModulesDumpSymfile (CommandInterpreter &interpreter) :
2147 CommandObjectTargetModulesModuleAutoComplete (interpreter,
2148 "target modules dump symfile",
2149 "Dump the debug symbol file for one or more target modules.",
2150 //"target modules dump symfile [<file1> ...]")
2151 NULL)
2152 {
2153 }
2154
2155 virtual
2156 ~CommandObjectTargetModulesDumpSymfile ()
2157 {
2158 }
2159
2160 virtual bool
2161 Execute (Args& command,
2162 CommandReturnObject &result)
2163 {
2164 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2165 if (target == NULL)
2166 {
2167 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2168 result.SetStatus (eReturnStatusFailed);
2169 return false;
2170 }
2171 else
2172 {
2173 uint32_t num_dumped = 0;
2174
2175 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2176 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2177 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2178
2179 if (command.GetArgumentCount() == 0)
2180 {
2181 // Dump all sections for all modules images
2182 const uint32_t num_modules = target->GetImages().GetSize();
2183 if (num_modules > 0)
2184 {
2185 result.GetOutputStream().Printf("Dumping debug symbols for %u modules.\n", num_modules);
2186 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
2187 {
2188 if (DumpModuleSymbolVendor (result.GetOutputStream(), target->GetImages().GetModulePointerAtIndex(image_idx)))
2189 num_dumped++;
2190 }
2191 }
2192 else
2193 {
2194 result.AppendError ("the target has no associated executable images");
2195 result.SetStatus (eReturnStatusFailed);
2196 return false;
2197 }
2198 }
2199 else
2200 {
2201 // Dump specified images (by basename or fullpath)
2202 const char *arg_cstr;
2203 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
2204 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002205 ModuleList module_list;
2206 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true);
2207 if (num_matches > 0)
Greg Claytone1f50b92011-05-03 22:09:39 +00002208 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002209 for (size_t i=0; i<num_matches; ++i)
Greg Claytone1f50b92011-05-03 22:09:39 +00002210 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002211 Module *module = module_list.GetModulePointerAtIndex(i);
2212 if (module)
Greg Claytone1f50b92011-05-03 22:09:39 +00002213 {
Greg Clayton91048ef2011-11-10 01:18:58 +00002214 if (DumpModuleSymbolVendor (result.GetOutputStream(), module))
Greg Claytone1f50b92011-05-03 22:09:39 +00002215 num_dumped++;
2216 }
2217 }
2218 }
2219 else
2220 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
2221 }
2222 }
2223
2224 if (num_dumped > 0)
2225 result.SetStatus (eReturnStatusSuccessFinishResult);
2226 else
2227 {
2228 result.AppendError ("no matching executable images found");
2229 result.SetStatus (eReturnStatusFailed);
2230 }
2231 }
2232 return result.Succeeded();
2233 }
2234};
2235
2236
2237#pragma mark CommandObjectTargetModulesDumpLineTable
2238
2239//----------------------------------------------------------------------
2240// Image debug line table dumping command
2241//----------------------------------------------------------------------
2242
2243class CommandObjectTargetModulesDumpLineTable : public CommandObjectTargetModulesSourceFileAutoComplete
2244{
2245public:
2246 CommandObjectTargetModulesDumpLineTable (CommandInterpreter &interpreter) :
2247 CommandObjectTargetModulesSourceFileAutoComplete (interpreter,
2248 "target modules dump line-table",
2249 "Dump the debug symbol file for one or more target modules.",
2250 NULL)
2251 {
2252 }
2253
2254 virtual
2255 ~CommandObjectTargetModulesDumpLineTable ()
2256 {
2257 }
2258
2259 virtual bool
2260 Execute (Args& command,
2261 CommandReturnObject &result)
2262 {
2263 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2264 if (target == NULL)
2265 {
2266 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2267 result.SetStatus (eReturnStatusFailed);
2268 return false;
2269 }
2270 else
2271 {
2272 ExecutionContext exe_ctx(m_interpreter.GetExecutionContext());
2273 uint32_t total_num_dumped = 0;
2274
2275 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2276 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2277 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2278
2279 if (command.GetArgumentCount() == 0)
2280 {
2281 result.AppendErrorWithFormat ("\nSyntax: %s\n", m_cmd_syntax.c_str());
2282 result.SetStatus (eReturnStatusFailed);
2283 }
2284 else
2285 {
2286 // Dump specified images (by basename or fullpath)
2287 const char *arg_cstr;
2288 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
2289 {
2290 FileSpec file_spec(arg_cstr, false);
2291 const uint32_t num_modules = target->GetImages().GetSize();
2292 if (num_modules > 0)
2293 {
2294 uint32_t num_dumped = 0;
2295 for (uint32_t i = 0; i<num_modules; ++i)
2296 {
2297 if (DumpCompileUnitLineTable (m_interpreter,
2298 result.GetOutputStream(),
2299 target->GetImages().GetModulePointerAtIndex(i),
2300 file_spec,
Greg Clayton567e7f32011-09-22 04:58:26 +00002301 exe_ctx.GetProcessPtr() && exe_ctx.GetProcessRef().IsAlive()))
Greg Claytone1f50b92011-05-03 22:09:39 +00002302 num_dumped++;
2303 }
2304 if (num_dumped == 0)
2305 result.AppendWarningWithFormat ("No source filenames matched '%s'.\n", arg_cstr);
2306 else
2307 total_num_dumped += num_dumped;
2308 }
2309 }
2310 }
2311
2312 if (total_num_dumped > 0)
2313 result.SetStatus (eReturnStatusSuccessFinishResult);
2314 else
2315 {
2316 result.AppendError ("no source filenames matched any command arguments");
2317 result.SetStatus (eReturnStatusFailed);
2318 }
2319 }
2320 return result.Succeeded();
2321 }
2322};
2323
2324
2325#pragma mark CommandObjectTargetModulesDump
2326
2327//----------------------------------------------------------------------
2328// Dump multi-word command for target modules
2329//----------------------------------------------------------------------
2330
2331class CommandObjectTargetModulesDump : public CommandObjectMultiword
2332{
2333public:
2334
2335 //------------------------------------------------------------------
2336 // Constructors and Destructors
2337 //------------------------------------------------------------------
2338 CommandObjectTargetModulesDump(CommandInterpreter &interpreter) :
2339 CommandObjectMultiword (interpreter,
2340 "target modules dump",
2341 "A set of commands for dumping information about one or more target modules.",
2342 "target modules dump [symtab|sections|symfile|line-table] [<file1> <file2> ...]")
2343 {
2344 LoadSubCommand ("symtab", CommandObjectSP (new CommandObjectTargetModulesDumpSymtab (interpreter)));
2345 LoadSubCommand ("sections", CommandObjectSP (new CommandObjectTargetModulesDumpSections (interpreter)));
2346 LoadSubCommand ("symfile", CommandObjectSP (new CommandObjectTargetModulesDumpSymfile (interpreter)));
2347 LoadSubCommand ("line-table", CommandObjectSP (new CommandObjectTargetModulesDumpLineTable (interpreter)));
2348 }
2349
2350 virtual
2351 ~CommandObjectTargetModulesDump()
2352 {
2353 }
2354};
2355
2356class CommandObjectTargetModulesAdd : public CommandObject
2357{
2358public:
2359 CommandObjectTargetModulesAdd (CommandInterpreter &interpreter) :
2360 CommandObject (interpreter,
2361 "target modules add",
2362 "Add a new module to the current target's modules.",
2363 "target modules add [<module>]")
2364 {
2365 }
2366
2367 virtual
2368 ~CommandObjectTargetModulesAdd ()
2369 {
2370 }
2371
2372 virtual bool
2373 Execute (Args& args,
2374 CommandReturnObject &result)
2375 {
2376 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2377 if (target == NULL)
2378 {
2379 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2380 result.SetStatus (eReturnStatusFailed);
2381 return false;
2382 }
2383 else
2384 {
2385 const size_t argc = args.GetArgumentCount();
2386 if (argc == 0)
2387 {
2388 result.AppendError ("one or more executable image paths must be specified");
2389 result.SetStatus (eReturnStatusFailed);
2390 return false;
2391 }
2392 else
2393 {
2394 for (size_t i=0; i<argc; ++i)
2395 {
2396 const char *path = args.GetArgumentAtIndex(i);
2397 if (path)
2398 {
2399 FileSpec file_spec(path, true);
Greg Claytone1f50b92011-05-03 22:09:39 +00002400 if (file_spec.Exists())
2401 {
Greg Clayton444fe992012-02-26 05:51:37 +00002402 ModuleSpec module_spec (file_spec);
2403 ModuleSP module_sp (target->GetSharedModule (module_spec));
Greg Claytone1f50b92011-05-03 22:09:39 +00002404 if (!module_sp)
2405 {
2406 result.AppendError ("one or more executable image paths must be specified");
2407 result.SetStatus (eReturnStatusFailed);
2408 return false;
2409 }
Jason Molenda36f6fb92011-08-02 23:28:55 +00002410 result.SetStatus (eReturnStatusSuccessFinishResult);
Greg Claytone1f50b92011-05-03 22:09:39 +00002411 }
2412 else
2413 {
2414 char resolved_path[PATH_MAX];
2415 result.SetStatus (eReturnStatusFailed);
2416 if (file_spec.GetPath (resolved_path, sizeof(resolved_path)))
2417 {
2418 if (strcmp (resolved_path, path) != 0)
2419 {
2420 result.AppendErrorWithFormat ("invalid module path '%s' with resolved path '%s'\n", path, resolved_path);
2421 break;
2422 }
2423 }
2424 result.AppendErrorWithFormat ("invalid module path '%s'\n", path);
2425 break;
2426 }
2427 }
2428 }
2429 }
2430 }
2431 return result.Succeeded();
2432 }
2433
2434 int
2435 HandleArgumentCompletion (Args &input,
2436 int &cursor_index,
2437 int &cursor_char_position,
2438 OptionElementVector &opt_element_vector,
2439 int match_start_point,
2440 int max_return_elements,
2441 bool &word_complete,
2442 StringList &matches)
2443 {
2444 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
2445 completion_str.erase (cursor_char_position);
2446
2447 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
2448 CommandCompletions::eDiskFileCompletion,
2449 completion_str.c_str(),
2450 match_start_point,
2451 max_return_elements,
2452 NULL,
2453 word_complete,
2454 matches);
2455 return matches.GetSize();
2456 }
2457
2458};
2459
2460class CommandObjectTargetModulesLoad : public CommandObjectTargetModulesModuleAutoComplete
2461{
2462public:
2463 CommandObjectTargetModulesLoad (CommandInterpreter &interpreter) :
2464 CommandObjectTargetModulesModuleAutoComplete (interpreter,
2465 "target modules load",
2466 "Set the load addresses for one or more sections in a target module.",
2467 "target modules load [--file <module> --uuid <uuid>] <sect-name> <address> [<sect-name> <address> ....]"),
2468 m_option_group (interpreter),
2469 m_file_option (LLDB_OPT_SET_1, false, "file", 'f', 0, eArgTypePath, "Fullpath or basename for module to load."),
2470 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)
2471 {
2472 m_option_group.Append (&m_uuid_option_group, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
2473 m_option_group.Append (&m_file_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
2474 m_option_group.Append (&m_slide_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
2475 m_option_group.Finalize();
2476 }
2477
2478 virtual
2479 ~CommandObjectTargetModulesLoad ()
2480 {
2481 }
2482
2483 virtual bool
2484 Execute (Args& args,
2485 CommandReturnObject &result)
2486 {
2487 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
2488 if (target == NULL)
2489 {
2490 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2491 result.SetStatus (eReturnStatusFailed);
2492 return false;
2493 }
2494 else
2495 {
2496 const size_t argc = args.GetArgumentCount();
Greg Clayton444fe992012-02-26 05:51:37 +00002497 ModuleSpec module_spec;
2498 bool search_using_module_spec = false;
Greg Claytone1f50b92011-05-03 22:09:39 +00002499 if (m_file_option.GetOptionValue().OptionWasSet())
Greg Clayton444fe992012-02-26 05:51:37 +00002500 {
2501 search_using_module_spec = true;
2502 module_spec.GetFileSpec() = m_file_option.GetOptionValue().GetCurrentValue();
2503 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002504
2505 if (m_uuid_option_group.GetOptionValue().OptionWasSet())
Greg Clayton444fe992012-02-26 05:51:37 +00002506 {
2507 search_using_module_spec = true;
2508 module_spec.GetUUID() = m_uuid_option_group.GetOptionValue().GetCurrentValue();
2509 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002510
Greg Clayton444fe992012-02-26 05:51:37 +00002511 if (search_using_module_spec)
Greg Claytone1f50b92011-05-03 22:09:39 +00002512 {
2513
2514 ModuleList matching_modules;
Greg Clayton444fe992012-02-26 05:51:37 +00002515 const size_t num_matches = target->GetImages().FindModules (module_spec, matching_modules);
Greg Claytone1f50b92011-05-03 22:09:39 +00002516
2517 char path[PATH_MAX];
2518 if (num_matches == 1)
2519 {
2520 Module *module = matching_modules.GetModulePointerAtIndex(0);
2521 if (module)
2522 {
2523 ObjectFile *objfile = module->GetObjectFile();
2524 if (objfile)
2525 {
2526 SectionList *section_list = objfile->GetSectionList();
2527 if (section_list)
2528 {
Greg Clayton9ab696e2012-03-27 21:10:07 +00002529 bool changed = false;
Greg Claytone1f50b92011-05-03 22:09:39 +00002530 if (argc == 0)
2531 {
2532 if (m_slide_option.GetOptionValue().OptionWasSet())
2533 {
Greg Clayton9ab696e2012-03-27 21:10:07 +00002534 const addr_t slide = m_slide_option.GetOptionValue().GetCurrentValue();
2535 module->SetLoadAddress (*target, slide, changed);
Greg Claytone1f50b92011-05-03 22:09:39 +00002536 }
2537 else
2538 {
2539 result.AppendError ("one or more section name + load address pair must be specified");
2540 result.SetStatus (eReturnStatusFailed);
2541 return false;
2542 }
2543 }
2544 else
2545 {
2546 if (m_slide_option.GetOptionValue().OptionWasSet())
2547 {
2548 result.AppendError ("The \"--slide <offset>\" option can't be used in conjunction with setting section load addresses.\n");
2549 result.SetStatus (eReturnStatusFailed);
2550 return false;
2551 }
2552
2553 for (size_t i=0; i<argc; i += 2)
2554 {
2555 const char *sect_name = args.GetArgumentAtIndex(i);
2556 const char *load_addr_cstr = args.GetArgumentAtIndex(i+1);
2557 if (sect_name && load_addr_cstr)
2558 {
2559 ConstString const_sect_name(sect_name);
2560 bool success = false;
2561 addr_t load_addr = Args::StringToUInt64(load_addr_cstr, LLDB_INVALID_ADDRESS, 0, &success);
2562 if (success)
2563 {
2564 SectionSP section_sp (section_list->FindSectionByName(const_sect_name));
2565 if (section_sp)
2566 {
Greg Clayton9ab696e2012-03-27 21:10:07 +00002567 if (section_sp->IsThreadSpecific())
2568 {
2569 result.AppendErrorWithFormat ("thread specific sections are not yet supported (section '%s')\n", sect_name);
2570 result.SetStatus (eReturnStatusFailed);
2571 break;
2572 }
2573 else
2574 {
2575 if (target->GetSectionLoadList().SetSectionLoadAddress (section_sp.get(), load_addr))
2576 changed = true;
2577 result.AppendMessageWithFormat("section '%s' loaded at 0x%llx\n", sect_name, load_addr);
2578 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002579 }
2580 else
2581 {
2582 result.AppendErrorWithFormat ("no section found that matches the section name '%s'\n", sect_name);
2583 result.SetStatus (eReturnStatusFailed);
2584 break;
2585 }
2586 }
2587 else
2588 {
2589 result.AppendErrorWithFormat ("invalid load address string '%s'\n", load_addr_cstr);
2590 result.SetStatus (eReturnStatusFailed);
2591 break;
2592 }
2593 }
2594 else
2595 {
2596 if (sect_name)
2597 result.AppendError ("section names must be followed by a load address.\n");
2598 else
2599 result.AppendError ("one or more section name + load address pair must be specified.\n");
2600 result.SetStatus (eReturnStatusFailed);
2601 break;
2602 }
2603 }
2604 }
Greg Clayton9ab696e2012-03-27 21:10:07 +00002605
2606 if (changed)
2607 target->ModulesDidLoad (matching_modules);
Greg Claytone1f50b92011-05-03 22:09:39 +00002608 }
2609 else
2610 {
2611 module->GetFileSpec().GetPath (path, sizeof(path));
2612 result.AppendErrorWithFormat ("no sections in object file '%s'\n", path);
2613 result.SetStatus (eReturnStatusFailed);
2614 }
2615 }
2616 else
2617 {
2618 module->GetFileSpec().GetPath (path, sizeof(path));
2619 result.AppendErrorWithFormat ("no object file for module '%s'\n", path);
2620 result.SetStatus (eReturnStatusFailed);
2621 }
2622 }
2623 else
2624 {
2625 module->GetFileSpec().GetPath (path, sizeof(path));
2626 result.AppendErrorWithFormat ("invalid module '%s'.\n", path);
2627 result.SetStatus (eReturnStatusFailed);
2628 }
2629 }
2630 else
2631 {
2632 char uuid_cstr[64];
Greg Clayton444fe992012-02-26 05:51:37 +00002633
2634 if (module_spec.GetFileSpec())
2635 module_spec.GetFileSpec().GetPath (path, sizeof(path));
Greg Claytone1f50b92011-05-03 22:09:39 +00002636 else
2637 path[0] = '\0';
2638
Greg Clayton444fe992012-02-26 05:51:37 +00002639 if (module_spec.GetUUIDPtr())
2640 module_spec.GetUUID().GetAsCString(uuid_cstr, sizeof(uuid_cstr));
Greg Claytone1f50b92011-05-03 22:09:39 +00002641 else
2642 uuid_cstr[0] = '\0';
2643 if (num_matches > 1)
2644 {
2645 result.AppendErrorWithFormat ("multiple modules match%s%s%s%s:\n",
2646 path[0] ? " file=" : "",
2647 path,
2648 uuid_cstr[0] ? " uuid=" : "",
2649 uuid_cstr);
2650 for (size_t i=0; i<num_matches; ++i)
2651 {
2652 if (matching_modules.GetModulePointerAtIndex(i)->GetFileSpec().GetPath (path, sizeof(path)))
2653 result.AppendMessageWithFormat("%s\n", path);
2654 }
2655 }
2656 else
2657 {
2658 result.AppendErrorWithFormat ("no modules were found that match%s%s%s%s.\n",
2659 path[0] ? " file=" : "",
2660 path,
2661 uuid_cstr[0] ? " uuid=" : "",
2662 uuid_cstr);
2663 }
2664 result.SetStatus (eReturnStatusFailed);
2665 }
2666 }
2667 else
2668 {
2669 result.AppendError ("either the \"--file <module>\" or the \"--uuid <uuid>\" option must be specified.\n");
2670 result.SetStatus (eReturnStatusFailed);
2671 return false;
2672 }
2673 }
2674 return result.Succeeded();
2675 }
2676
2677 virtual Options *
2678 GetOptions ()
2679 {
2680 return &m_option_group;
2681 }
2682
2683protected:
2684 OptionGroupOptions m_option_group;
2685 OptionGroupUUID m_uuid_option_group;
2686 OptionGroupFile m_file_option;
2687 OptionGroupUInt64 m_slide_option;
2688};
2689
2690//----------------------------------------------------------------------
2691// List images with associated information
2692//----------------------------------------------------------------------
2693class CommandObjectTargetModulesList : public CommandObject
2694{
2695public:
2696
2697 class CommandOptions : public Options
2698 {
2699 public:
2700
2701 CommandOptions (CommandInterpreter &interpreter) :
Greg Clayton899025f2011-08-09 00:01:09 +00002702 Options(interpreter),
Jim Ingham6bdea822011-10-24 18:36:33 +00002703 m_format_array(),
Daniel Dunbar97c89572011-10-31 22:50:49 +00002704 m_use_global_module_list (false),
Jim Ingham6bdea822011-10-24 18:36:33 +00002705 m_module_addr (LLDB_INVALID_ADDRESS)
Greg Claytone1f50b92011-05-03 22:09:39 +00002706 {
2707 }
2708
2709 virtual
2710 ~CommandOptions ()
2711 {
2712 }
2713
2714 virtual Error
2715 SetOptionValue (uint32_t option_idx, const char *option_arg)
2716 {
2717 char short_option = (char) m_getopt_table[option_idx].val;
Greg Clayton899025f2011-08-09 00:01:09 +00002718 if (short_option == 'g')
2719 {
2720 m_use_global_module_list = true;
2721 }
Jim Ingham6bdea822011-10-24 18:36:33 +00002722 else if (short_option == 'a')
2723 {
2724 bool success;
2725 m_module_addr = Args::StringToAddress(option_arg, LLDB_INVALID_ADDRESS, &success);
2726 if (!success)
2727 {
2728 Error error;
Greg Clayton9c236732011-10-26 00:56:27 +00002729 error.SetErrorStringWithFormat("invalid address: \"%s\"", option_arg);
Jim Ingham6bdea822011-10-24 18:36:33 +00002730 }
2731 }
Greg Clayton899025f2011-08-09 00:01:09 +00002732 else
2733 {
2734 uint32_t width = 0;
2735 if (option_arg)
2736 width = strtoul (option_arg, NULL, 0);
2737 m_format_array.push_back(std::make_pair(short_option, width));
2738 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002739 Error error;
2740 return error;
2741 }
2742
2743 void
2744 OptionParsingStarting ()
2745 {
2746 m_format_array.clear();
Greg Clayton899025f2011-08-09 00:01:09 +00002747 m_use_global_module_list = false;
Jim Ingham6bdea822011-10-24 18:36:33 +00002748 m_module_addr = LLDB_INVALID_ADDRESS;
Greg Claytone1f50b92011-05-03 22:09:39 +00002749 }
2750
2751 const OptionDefinition*
2752 GetDefinitions ()
2753 {
2754 return g_option_table;
2755 }
2756
2757 // Options table: Required for subclasses of Options.
2758
2759 static OptionDefinition g_option_table[];
2760
2761 // Instance variables to hold the values for command options.
2762 typedef std::vector< std::pair<char, uint32_t> > FormatWidthCollection;
2763 FormatWidthCollection m_format_array;
Greg Clayton899025f2011-08-09 00:01:09 +00002764 bool m_use_global_module_list;
Jim Ingham6bdea822011-10-24 18:36:33 +00002765 lldb::addr_t m_module_addr;
Greg Claytone1f50b92011-05-03 22:09:39 +00002766 };
2767
2768 CommandObjectTargetModulesList (CommandInterpreter &interpreter) :
2769 CommandObject (interpreter,
2770 "target modules list",
2771 "List current executable and dependent shared library images.",
2772 "target modules list [<cmd-options>]"),
2773 m_options (interpreter)
2774 {
2775 }
2776
2777 virtual
2778 ~CommandObjectTargetModulesList ()
2779 {
2780 }
2781
2782 virtual
2783 Options *
2784 GetOptions ()
2785 {
2786 return &m_options;
2787 }
2788
2789 virtual bool
2790 Execute (Args& command,
2791 CommandReturnObject &result)
2792 {
2793 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Greg Clayton153ccd72011-08-10 02:10:13 +00002794 const bool use_global_module_list = m_options.m_use_global_module_list;
2795 if (target == NULL && use_global_module_list == false)
Greg Claytone1f50b92011-05-03 22:09:39 +00002796 {
2797 result.AppendError ("invalid target, create a debug target using the 'target create' command");
2798 result.SetStatus (eReturnStatusFailed);
2799 return false;
2800 }
2801 else
2802 {
Greg Clayton153ccd72011-08-10 02:10:13 +00002803 if (target)
2804 {
2805 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
2806 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
2807 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
2808 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002809 // Dump all sections for all modules images
Greg Clayton899025f2011-08-09 00:01:09 +00002810 uint32_t num_modules = 0;
2811 Mutex::Locker locker;
Jim Ingham6bdea822011-10-24 18:36:33 +00002812
2813 Stream &strm = result.GetOutputStream();
2814
2815 if (m_options.m_module_addr != LLDB_INVALID_ADDRESS)
2816 {
2817 if (target)
2818 {
2819 Address module_address;
2820 if (module_address.SetLoadAddress(m_options.m_module_addr, target))
2821 {
Greg Clayton3508c382012-02-24 01:59:29 +00002822 ModuleSP module_sp (module_address.GetModule());
2823 if (module_sp)
Jim Ingham6bdea822011-10-24 18:36:33 +00002824 {
Greg Clayton3508c382012-02-24 01:59:29 +00002825 PrintModule (target, module_sp.get(), UINT32_MAX, 0, strm);
Jim Ingham6bdea822011-10-24 18:36:33 +00002826 result.SetStatus (eReturnStatusSuccessFinishResult);
2827 }
2828 else
2829 {
2830 result.AppendError ("Couldn't find module matching address: 0x%llx.", m_options.m_module_addr);
2831 result.SetStatus (eReturnStatusFailed);
2832 }
2833 }
2834 else
2835 {
2836 result.AppendError ("Couldn't find module containing address: 0x%llx.", m_options.m_module_addr);
2837 result.SetStatus (eReturnStatusFailed);
2838 }
2839 }
2840 else
2841 {
2842 result.AppendError ("Can only look up modules by address with a valid target.");
2843 result.SetStatus (eReturnStatusFailed);
2844 }
2845 return result.Succeeded();
2846 }
2847
Greg Clayton2ad894b2012-05-15 18:43:44 +00002848 ModuleList module_list;
2849 ModuleList *module_list_ptr = NULL;
2850 const size_t argc = command.GetArgumentCount();
2851 if (argc == 0)
Greg Clayton899025f2011-08-09 00:01:09 +00002852 {
Greg Clayton2ad894b2012-05-15 18:43:44 +00002853 if (use_global_module_list)
2854 {
2855 locker.Lock (Module::GetAllocationModuleCollectionMutex());
2856 num_modules = Module::GetNumberAllocatedModules();
2857 }
2858 else
2859 {
2860 module_list_ptr = &target->GetImages();
2861 num_modules = target->GetImages().GetSize();
2862 }
Greg Clayton899025f2011-08-09 00:01:09 +00002863 }
2864 else
Greg Clayton2ad894b2012-05-15 18:43:44 +00002865 {
2866 for (size_t i=0; i<argc; ++i)
2867 {
2868 // Dump specified images (by basename or fullpath)
2869 const char *arg_cstr = command.GetArgumentAtIndex(i);
2870 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, use_global_module_list);
2871 if (num_matches == 0)
2872 {
2873 if (argc == 1)
2874 {
2875 result.AppendErrorWithFormat ("no modules found that match '%s'", arg_cstr);
2876 result.SetStatus (eReturnStatusFailed);
2877 return false;
2878 }
2879 }
2880 }
2881
2882 num_modules = module_list.GetSize();
2883 module_list_ptr = &module_list;
2884 }
Greg Clayton899025f2011-08-09 00:01:09 +00002885
Greg Claytone1f50b92011-05-03 22:09:39 +00002886 if (num_modules > 0)
Jim Ingham6bdea822011-10-24 18:36:33 +00002887 {
Greg Claytone1f50b92011-05-03 22:09:39 +00002888 for (uint32_t image_idx = 0; image_idx<num_modules; ++image_idx)
2889 {
Greg Clayton153ccd72011-08-10 02:10:13 +00002890 ModuleSP module_sp;
Greg Clayton899025f2011-08-09 00:01:09 +00002891 Module *module;
Greg Clayton2ad894b2012-05-15 18:43:44 +00002892 if (module_list_ptr)
Greg Clayton899025f2011-08-09 00:01:09 +00002893 {
Greg Clayton2ad894b2012-05-15 18:43:44 +00002894 module_sp = module_list_ptr->GetModuleAtIndex(image_idx);
2895 module = module_sp.get();
Greg Clayton899025f2011-08-09 00:01:09 +00002896 }
2897 else
2898 {
Greg Clayton2ad894b2012-05-15 18:43:44 +00002899 module = Module::GetAllocatedModuleAtIndex(image_idx);
2900 module_sp = module->shared_from_this();
Greg Clayton899025f2011-08-09 00:01:09 +00002901 }
Jim Ingham6bdea822011-10-24 18:36:33 +00002902
Greg Claytonb5a8f142012-02-05 02:38:54 +00002903 int indent = strm.Printf("[%3u] ", image_idx);
2904 PrintModule (target, module, image_idx, indent, strm);
Greg Clayton153ccd72011-08-10 02:10:13 +00002905
Greg Claytone1f50b92011-05-03 22:09:39 +00002906 }
2907 result.SetStatus (eReturnStatusSuccessFinishResult);
2908 }
2909 else
2910 {
Greg Clayton2ad894b2012-05-15 18:43:44 +00002911 if (argc)
2912 {
2913 if (use_global_module_list)
2914 result.AppendError ("the global module list has no matching modules");
2915 else
2916 result.AppendError ("the target has no matching modules");
2917 }
Greg Clayton153ccd72011-08-10 02:10:13 +00002918 else
Greg Clayton2ad894b2012-05-15 18:43:44 +00002919 {
2920 if (use_global_module_list)
2921 result.AppendError ("the global module list is empty");
2922 else
2923 result.AppendError ("the target has no associated executable images");
2924 }
Greg Claytone1f50b92011-05-03 22:09:39 +00002925 result.SetStatus (eReturnStatusFailed);
2926 return false;
2927 }
2928 }
2929 return result.Succeeded();
2930 }
2931protected:
Jim Ingham6bdea822011-10-24 18:36:33 +00002932
2933 void
Greg Claytonb5a8f142012-02-05 02:38:54 +00002934 PrintModule (Target *target, Module *module, uint32_t idx, int indent, Stream &strm)
Jim Ingham6bdea822011-10-24 18:36:33 +00002935 {
2936
2937 bool dump_object_name = false;
2938 if (m_options.m_format_array.empty())
2939 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002940 m_options.m_format_array.push_back(std::make_pair('u', 0));
2941 m_options.m_format_array.push_back(std::make_pair('h', 0));
2942 m_options.m_format_array.push_back(std::make_pair('f', 0));
2943 m_options.m_format_array.push_back(std::make_pair('S', 0));
Jim Ingham6bdea822011-10-24 18:36:33 +00002944 }
Greg Claytonb5a8f142012-02-05 02:38:54 +00002945 const size_t num_entries = m_options.m_format_array.size();
2946 bool print_space = false;
2947 for (size_t i=0; i<num_entries; ++i)
Jim Ingham6bdea822011-10-24 18:36:33 +00002948 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002949 if (print_space)
2950 strm.PutChar(' ');
2951 print_space = true;
2952 const char format_char = m_options.m_format_array[i].first;
2953 uint32_t width = m_options.m_format_array[i].second;
2954 switch (format_char)
Jim Ingham6bdea822011-10-24 18:36:33 +00002955 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002956 case 'A':
2957 DumpModuleArchitecture (strm, module, false, width);
2958 break;
2959
2960 case 't':
2961 DumpModuleArchitecture (strm, module, true, width);
2962 break;
2963
2964 case 'f':
2965 DumpFullpath (strm, &module->GetFileSpec(), width);
2966 dump_object_name = true;
2967 break;
2968
2969 case 'd':
2970 DumpDirectory (strm, &module->GetFileSpec(), width);
2971 break;
2972
2973 case 'b':
2974 DumpBasename (strm, &module->GetFileSpec(), width);
2975 dump_object_name = true;
2976 break;
2977
2978 case 'h':
2979 case 'o':
2980 // Image header address
2981 {
2982 uint32_t addr_nibble_width = target ? (target->GetArchitecture().GetAddressByteSize() * 2) : 16;
Jim Ingham6bdea822011-10-24 18:36:33 +00002983
Greg Claytonb5a8f142012-02-05 02:38:54 +00002984 ObjectFile *objfile = module->GetObjectFile ();
2985 if (objfile)
Jim Ingham6bdea822011-10-24 18:36:33 +00002986 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002987 Address header_addr(objfile->GetHeaderAddress());
2988 if (header_addr.IsValid())
Jim Ingham6bdea822011-10-24 18:36:33 +00002989 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002990 if (target && !target->GetSectionLoadList().IsEmpty())
Jim Ingham6bdea822011-10-24 18:36:33 +00002991 {
Greg Claytonb5a8f142012-02-05 02:38:54 +00002992 lldb::addr_t header_load_addr = header_addr.GetLoadAddress (target);
2993 if (header_load_addr == LLDB_INVALID_ADDRESS)
2994 {
2995 header_addr.Dump (&strm, target, Address::DumpStyleModuleWithFileAddress, Address::DumpStyleFileAddress);
2996 }
Jim Ingham6bdea822011-10-24 18:36:33 +00002997 else
Greg Claytonb5a8f142012-02-05 02:38:54 +00002998 {
2999 if (format_char == 'o')
3000 {
3001 // Show the offset of slide for the image
3002 strm.Printf ("0x%*.*llx", addr_nibble_width, addr_nibble_width, header_load_addr - header_addr.GetFileAddress());
3003 }
3004 else
3005 {
3006 // Show the load address of the image
3007 strm.Printf ("0x%*.*llx", addr_nibble_width, addr_nibble_width, header_load_addr);
3008 }
3009 }
Jim Ingham6bdea822011-10-24 18:36:33 +00003010 break;
3011 }
Greg Claytonb5a8f142012-02-05 02:38:54 +00003012 // The address was valid, but the image isn't loaded, output the address in an appropriate format
3013 header_addr.Dump (&strm, target, Address::DumpStyleFileAddress);
3014 break;
Jim Ingham6bdea822011-10-24 18:36:33 +00003015 }
Jim Ingham6bdea822011-10-24 18:36:33 +00003016 }
Greg Claytonb5a8f142012-02-05 02:38:54 +00003017 strm.Printf ("%*s", addr_nibble_width + 2, "");
3018 }
3019 break;
3020 case 'r':
3021 {
3022 uint32_t ref_count = 0;
3023 ModuleSP module_sp (module->shared_from_this());
3024 if (module_sp)
3025 {
3026 // Take one away to make sure we don't count our local "module_sp"
3027 ref_count = module_sp.use_count() - 1;
3028 }
3029 if (width)
3030 strm.Printf("{%*u}", width, ref_count);
3031 else
3032 strm.Printf("{%u}", ref_count);
3033 }
3034 break;
Jim Ingham6bdea822011-10-24 18:36:33 +00003035
Greg Claytonb5a8f142012-02-05 02:38:54 +00003036 case 's':
3037 case 'S':
3038 {
3039 SymbolVendor *symbol_vendor = module->GetSymbolVendor();
3040 if (symbol_vendor)
3041 {
3042 SymbolFile *symbol_file = symbol_vendor->GetSymbolFile();
3043 if (symbol_file)
3044 {
3045 if (format_char == 'S')
3046 {
3047 FileSpec &symfile_spec = symbol_file->GetObjectFile()->GetFileSpec();
3048 // Dump symbol file only if different from module file
3049 if (!symfile_spec || symfile_spec == module->GetFileSpec())
3050 {
3051 print_space = false;
3052 break;
3053 }
3054 // Add a newline and indent past the index
3055 strm.Printf ("\n%*s", indent, "");
3056 }
3057 DumpFullpath (strm, &symbol_file->GetObjectFile()->GetFileSpec(), width);
3058 dump_object_name = true;
3059 break;
3060 }
3061 }
3062 strm.Printf("%.*s", width, "<NONE>");
3063 }
3064 break;
3065
3066 case 'm':
3067 module->GetModificationTime().Dump(&strm, width);
3068 break;
Jim Ingham6bdea822011-10-24 18:36:33 +00003069
Greg Claytonb5a8f142012-02-05 02:38:54 +00003070 case 'p':
3071 strm.Printf("%p", module);
3072 break;
3073
3074 case 'u':
3075 DumpModuleUUID(strm, module);
3076 break;
3077
3078 default:
3079 break;
Jim Ingham6bdea822011-10-24 18:36:33 +00003080 }
Greg Claytonb5a8f142012-02-05 02:38:54 +00003081
3082 }
3083 if (dump_object_name)
3084 {
3085 const char *object_name = module->GetObjectName().GetCString();
3086 if (object_name)
3087 strm.Printf ("(%s)", object_name);
Jim Ingham6bdea822011-10-24 18:36:33 +00003088 }
3089 strm.EOL();
3090 }
3091
Greg Claytone1f50b92011-05-03 22:09:39 +00003092 CommandOptions m_options;
3093};
3094
3095OptionDefinition
3096CommandObjectTargetModulesList::CommandOptions::g_option_table[] =
3097{
Jim Ingham6bdea822011-10-24 18:36:33 +00003098 { LLDB_OPT_SET_1, false, "address", 'a', required_argument, NULL, 0, eArgTypeAddress, "Display the image at this address."},
3099 { 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 +00003100 { 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 +00003101 { 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."},
3102 { 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 +00003103 { LLDB_OPT_SET_1, false, "uuid", 'u', no_argument, NULL, 0, eArgTypeNone, "Display the UUID when listing images."},
3104 { LLDB_OPT_SET_1, false, "fullpath", 'f', optional_argument, NULL, 0, eArgTypeWidth, "Display the fullpath to the image object file."},
3105 { LLDB_OPT_SET_1, false, "directory", 'd', optional_argument, NULL, 0, eArgTypeWidth, "Display the directory with optional width for the image object file."},
3106 { LLDB_OPT_SET_1, false, "basename", 'b', optional_argument, NULL, 0, eArgTypeWidth, "Display the basename with optional width for the image object file."},
3107 { 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 +00003108 { 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 +00003109 { LLDB_OPT_SET_1, false, "mod-time", 'm', optional_argument, NULL, 0, eArgTypeWidth, "Display the modification time with optional width of the module."},
3110 { 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."},
3111 { LLDB_OPT_SET_1, false, "pointer", 'p', optional_argument, NULL, 0, eArgTypeNone, "Display the module pointer."},
Greg Clayton899025f2011-08-09 00:01:09 +00003112 { 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 +00003113 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
3114};
3115
3116
3117
3118//----------------------------------------------------------------------
3119// Lookup information in images
3120//----------------------------------------------------------------------
3121class CommandObjectTargetModulesLookup : public CommandObject
3122{
3123public:
3124
3125 enum
3126 {
3127 eLookupTypeInvalid = -1,
3128 eLookupTypeAddress = 0,
3129 eLookupTypeSymbol,
3130 eLookupTypeFileLine, // Line is optional
3131 eLookupTypeFunction,
Greg Clayton2ad894b2012-05-15 18:43:44 +00003132 eLookupTypeFunctionOrSymbol,
Greg Claytone1f50b92011-05-03 22:09:39 +00003133 eLookupTypeType,
3134 kNumLookupTypes
3135 };
3136
3137 class CommandOptions : public Options
3138 {
3139 public:
3140
3141 CommandOptions (CommandInterpreter &interpreter) :
3142 Options(interpreter)
3143 {
3144 OptionParsingStarting();
3145 }
3146
3147 virtual
3148 ~CommandOptions ()
3149 {
3150 }
3151
3152 virtual Error
3153 SetOptionValue (uint32_t option_idx, const char *option_arg)
3154 {
3155 Error error;
3156
3157 char short_option = (char) m_getopt_table[option_idx].val;
3158
3159 switch (short_option)
3160 {
3161 case 'a':
3162 m_type = eLookupTypeAddress;
3163 m_addr = Args::StringToUInt64(option_arg, LLDB_INVALID_ADDRESS);
3164 if (m_addr == LLDB_INVALID_ADDRESS)
Greg Clayton9c236732011-10-26 00:56:27 +00003165 error.SetErrorStringWithFormat ("invalid address string '%s'", option_arg);
Greg Claytone1f50b92011-05-03 22:09:39 +00003166 break;
3167
3168 case 'o':
3169 m_offset = Args::StringToUInt64(option_arg, LLDB_INVALID_ADDRESS);
3170 if (m_offset == LLDB_INVALID_ADDRESS)
Greg Clayton9c236732011-10-26 00:56:27 +00003171 error.SetErrorStringWithFormat ("invalid offset string '%s'", option_arg);
Greg Claytone1f50b92011-05-03 22:09:39 +00003172 break;
3173
3174 case 's':
3175 m_str = option_arg;
3176 m_type = eLookupTypeSymbol;
3177 break;
3178
3179 case 'f':
3180 m_file.SetFile (option_arg, false);
3181 m_type = eLookupTypeFileLine;
3182 break;
3183
3184 case 'i':
Sean Callanan9ad19532012-02-11 01:22:21 +00003185 m_include_inlines = false;
Greg Claytone1f50b92011-05-03 22:09:39 +00003186 break;
3187
3188 case 'l':
3189 m_line_number = Args::StringToUInt32(option_arg, UINT32_MAX);
3190 if (m_line_number == UINT32_MAX)
Greg Clayton9c236732011-10-26 00:56:27 +00003191 error.SetErrorStringWithFormat ("invalid line number string '%s'", option_arg);
Greg Claytone1f50b92011-05-03 22:09:39 +00003192 else if (m_line_number == 0)
Greg Clayton9c236732011-10-26 00:56:27 +00003193 error.SetErrorString ("zero is an invalid line number");
Greg Claytone1f50b92011-05-03 22:09:39 +00003194 m_type = eLookupTypeFileLine;
3195 break;
3196
Greg Clayton2ad894b2012-05-15 18:43:44 +00003197 case 'F':
Greg Claytone1f50b92011-05-03 22:09:39 +00003198 m_str = option_arg;
3199 m_type = eLookupTypeFunction;
3200 break;
Greg Clayton2ad894b2012-05-15 18:43:44 +00003201
3202 case 'n':
3203 m_str = option_arg;
3204 m_type = eLookupTypeFunctionOrSymbol;
3205 break;
3206
Greg Claytone1f50b92011-05-03 22:09:39 +00003207 case 't':
3208 m_str = option_arg;
3209 m_type = eLookupTypeType;
3210 break;
3211
3212 case 'v':
3213 m_verbose = 1;
3214 break;
3215
3216 case 'r':
3217 m_use_regex = true;
3218 break;
3219 }
3220
3221 return error;
3222 }
3223
3224 void
3225 OptionParsingStarting ()
3226 {
3227 m_type = eLookupTypeInvalid;
3228 m_str.clear();
3229 m_file.Clear();
3230 m_addr = LLDB_INVALID_ADDRESS;
3231 m_offset = 0;
3232 m_line_number = 0;
3233 m_use_regex = false;
Sean Callanan9ad19532012-02-11 01:22:21 +00003234 m_include_inlines = true;
Greg Claytone1f50b92011-05-03 22:09:39 +00003235 m_verbose = false;
3236 }
3237
3238 const OptionDefinition*
3239 GetDefinitions ()
3240 {
3241 return g_option_table;
3242 }
3243
3244 // Options table: Required for subclasses of Options.
3245
3246 static OptionDefinition g_option_table[];
3247 int m_type; // Should be a eLookupTypeXXX enum after parsing options
3248 std::string m_str; // Holds name lookup
3249 FileSpec m_file; // Files for file lookups
3250 lldb::addr_t m_addr; // Holds the address to lookup
3251 lldb::addr_t m_offset; // Subtract this offset from m_addr before doing lookups.
3252 uint32_t m_line_number; // Line number for file+line lookups
3253 bool m_use_regex; // Name lookups in m_str are regular expressions.
Sean Callanan9ad19532012-02-11 01:22:21 +00003254 bool m_include_inlines;// Check for inline entries when looking up by file/line.
Greg Claytone1f50b92011-05-03 22:09:39 +00003255 bool m_verbose; // Enable verbose lookup info
3256
3257 };
3258
3259 CommandObjectTargetModulesLookup (CommandInterpreter &interpreter) :
3260 CommandObject (interpreter,
3261 "target modules lookup",
3262 "Look up information within executable and dependent shared library images.",
3263 NULL),
3264 m_options (interpreter)
3265 {
3266 CommandArgumentEntry arg;
3267 CommandArgumentData file_arg;
3268
3269 // Define the first (and only) variant of this arg.
3270 file_arg.arg_type = eArgTypeFilename;
3271 file_arg.arg_repetition = eArgRepeatStar;
3272
3273 // There is only one variant this argument could be; put it into the argument entry.
3274 arg.push_back (file_arg);
3275
3276 // Push the data for the first argument into the m_arguments vector.
3277 m_arguments.push_back (arg);
3278 }
3279
3280 virtual
3281 ~CommandObjectTargetModulesLookup ()
3282 {
3283 }
3284
3285 virtual Options *
3286 GetOptions ()
3287 {
3288 return &m_options;
3289 }
3290
3291
3292 bool
3293 LookupInModule (CommandInterpreter &interpreter, Module *module, CommandReturnObject &result, bool &syntax_error)
3294 {
3295 switch (m_options.m_type)
3296 {
3297 case eLookupTypeAddress:
3298 if (m_options.m_addr != LLDB_INVALID_ADDRESS)
3299 {
3300 if (LookupAddressInModule (m_interpreter,
3301 result.GetOutputStream(),
3302 module,
3303 eSymbolContextEverything,
3304 m_options.m_addr,
3305 m_options.m_offset,
3306 m_options.m_verbose))
3307 {
3308 result.SetStatus(eReturnStatusSuccessFinishResult);
3309 return true;
3310 }
3311 }
3312 break;
3313
3314 case eLookupTypeSymbol:
3315 if (!m_options.m_str.empty())
3316 {
Greg Clayton2ad894b2012-05-15 18:43:44 +00003317 if (LookupSymbolInModule (m_interpreter,
3318 result.GetOutputStream(),
3319 module,
3320 m_options.m_str.c_str(),
3321 m_options.m_use_regex,
3322 m_options.m_verbose))
Greg Claytone1f50b92011-05-03 22:09:39 +00003323 {
3324 result.SetStatus(eReturnStatusSuccessFinishResult);
3325 return true;
3326 }
3327 }
3328 break;
3329
3330 case eLookupTypeFileLine:
3331 if (m_options.m_file)
3332 {
3333
3334 if (LookupFileAndLineInModule (m_interpreter,
3335 result.GetOutputStream(),
3336 module,
3337 m_options.m_file,
3338 m_options.m_line_number,
Sean Callanan9ad19532012-02-11 01:22:21 +00003339 m_options.m_include_inlines,
Greg Claytone1f50b92011-05-03 22:09:39 +00003340 m_options.m_verbose))
3341 {
3342 result.SetStatus(eReturnStatusSuccessFinishResult);
3343 return true;
3344 }
3345 }
3346 break;
Greg Clayton2ad894b2012-05-15 18:43:44 +00003347
3348 case eLookupTypeFunctionOrSymbol:
Greg Claytone1f50b92011-05-03 22:09:39 +00003349 case eLookupTypeFunction:
3350 if (!m_options.m_str.empty())
3351 {
3352 if (LookupFunctionInModule (m_interpreter,
3353 result.GetOutputStream(),
3354 module,
3355 m_options.m_str.c_str(),
3356 m_options.m_use_regex,
Sean Callanan9ad19532012-02-11 01:22:21 +00003357 m_options.m_include_inlines,
Greg Clayton2ad894b2012-05-15 18:43:44 +00003358 m_options.m_type == eLookupTypeFunctionOrSymbol, // include symbols
Greg Claytone1f50b92011-05-03 22:09:39 +00003359 m_options.m_verbose))
3360 {
3361 result.SetStatus(eReturnStatusSuccessFinishResult);
3362 return true;
3363 }
3364 }
3365 break;
3366
Greg Clayton2ad894b2012-05-15 18:43:44 +00003367
Greg Claytone1f50b92011-05-03 22:09:39 +00003368 case eLookupTypeType:
3369 if (!m_options.m_str.empty())
3370 {
3371 if (LookupTypeInModule (m_interpreter,
3372 result.GetOutputStream(),
3373 module,
3374 m_options.m_str.c_str(),
3375 m_options.m_use_regex))
3376 {
3377 result.SetStatus(eReturnStatusSuccessFinishResult);
3378 return true;
3379 }
3380 }
3381 break;
3382
3383 default:
3384 m_options.GenerateOptionUsage (result.GetErrorStream(), this);
3385 syntax_error = true;
3386 break;
3387 }
3388
3389 result.SetStatus (eReturnStatusFailed);
3390 return false;
3391 }
3392
3393 virtual bool
3394 Execute (Args& command,
3395 CommandReturnObject &result)
3396 {
3397 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
3398 if (target == NULL)
3399 {
3400 result.AppendError ("invalid target, create a debug target using the 'target create' command");
3401 result.SetStatus (eReturnStatusFailed);
3402 return false;
3403 }
3404 else
3405 {
3406 bool syntax_error = false;
3407 uint32_t i;
3408 uint32_t num_successful_lookups = 0;
3409 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize();
3410 result.GetOutputStream().SetAddressByteSize(addr_byte_size);
3411 result.GetErrorStream().SetAddressByteSize(addr_byte_size);
3412 // Dump all sections for all modules images
3413
3414 if (command.GetArgumentCount() == 0)
3415 {
3416 // Dump all sections for all modules images
3417 const uint32_t num_modules = target->GetImages().GetSize();
3418 if (num_modules > 0)
3419 {
3420 for (i = 0; i<num_modules && syntax_error == false; ++i)
3421 {
3422 if (LookupInModule (m_interpreter, target->GetImages().GetModulePointerAtIndex(i), result, syntax_error))
3423 {
3424 result.GetOutputStream().EOL();
3425 num_successful_lookups++;
3426 }
3427 }
3428 }
3429 else
3430 {
3431 result.AppendError ("the target has no associated executable images");
3432 result.SetStatus (eReturnStatusFailed);
3433 return false;
3434 }
3435 }
3436 else
3437 {
3438 // Dump specified images (by basename or fullpath)
3439 const char *arg_cstr;
3440 for (i = 0; (arg_cstr = command.GetArgumentAtIndex(i)) != NULL && syntax_error == false; ++i)
3441 {
Greg Clayton91048ef2011-11-10 01:18:58 +00003442 ModuleList module_list;
3443 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, false);
3444 if (num_matches > 0)
Greg Claytone1f50b92011-05-03 22:09:39 +00003445 {
Greg Clayton91048ef2011-11-10 01:18:58 +00003446 for (size_t i=0; i<num_matches; ++i)
Greg Claytone1f50b92011-05-03 22:09:39 +00003447 {
Greg Clayton91048ef2011-11-10 01:18:58 +00003448 Module *module = module_list.GetModulePointerAtIndex(i);
3449 if (module)
Greg Claytone1f50b92011-05-03 22:09:39 +00003450 {
Greg Clayton91048ef2011-11-10 01:18:58 +00003451 if (LookupInModule (m_interpreter, module, result, syntax_error))
Greg Claytone1f50b92011-05-03 22:09:39 +00003452 {
3453 result.GetOutputStream().EOL();
3454 num_successful_lookups++;
3455 }
3456 }
3457 }
3458 }
3459 else
3460 result.AppendWarningWithFormat("Unable to find an image that matches '%s'.\n", arg_cstr);
3461 }
3462 }
3463
3464 if (num_successful_lookups > 0)
3465 result.SetStatus (eReturnStatusSuccessFinishResult);
3466 else
3467 result.SetStatus (eReturnStatusFailed);
3468 }
3469 return result.Succeeded();
3470 }
3471protected:
3472
3473 CommandOptions m_options;
3474};
3475
3476OptionDefinition
3477CommandObjectTargetModulesLookup::CommandOptions::g_option_table[] =
3478{
3479 { LLDB_OPT_SET_1, true, "address", 'a', required_argument, NULL, 0, eArgTypeAddress, "Lookup an address in one or more target modules."},
3480 { LLDB_OPT_SET_1, false, "offset", 'o', required_argument, NULL, 0, eArgTypeOffset, "When looking up an address subtract <offset> from any addresses before doing the lookup."},
Greg Clayton2ad894b2012-05-15 18:43:44 +00003481 { LLDB_OPT_SET_2| LLDB_OPT_SET_4 | LLDB_OPT_SET_5
3482 /* FIXME: re-enable this for types when the LookupTypeInModule actually uses the regex option: | LLDB_OPT_SET_6 */ ,
Jim Inghame7a91c12011-06-20 23:38:11 +00003483 false, "regex", 'r', no_argument, NULL, 0, eArgTypeNone, "The <name> argument for name lookups are regular expressions."},
Greg Claytone1f50b92011-05-03 22:09:39 +00003484 { 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 +00003485 { 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."},
3486 { 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 +00003487 { LLDB_OPT_SET_3|
3488 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 Clayton2ad894b2012-05-15 18:43:44 +00003489 { LLDB_OPT_SET_4, true, "function", 'F', required_argument, NULL, 0, eArgTypeFunctionName, "Lookup a function by name in the debug symbols in one or more target modules."},
3490 { LLDB_OPT_SET_5, true, "name", 'n', required_argument, NULL, 0, eArgTypeFunctionName, "Lookup a function or symbol by name in one or more target modules."},
3491 { LLDB_OPT_SET_6, true, "type", 't', required_argument, NULL, 0, eArgTypeName, "Lookup a type by name in the debug symbols in one or more target modules."},
Greg Claytone1f50b92011-05-03 22:09:39 +00003492 { LLDB_OPT_SET_ALL, false, "verbose", 'v', no_argument, NULL, 0, eArgTypeNone, "Enable verbose lookup information."},
Greg Clayton2ad894b2012-05-15 18:43:44 +00003493 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
Greg Claytone1f50b92011-05-03 22:09:39 +00003494};
Chris Lattner24943d22010-06-08 16:52:24 +00003495
3496
Jim Inghamd60d94a2011-03-11 03:53:59 +00003497#pragma mark CommandObjectMultiwordImageSearchPaths
Chris Lattner24943d22010-06-08 16:52:24 +00003498
3499//-------------------------------------------------------------------------
3500// CommandObjectMultiwordImageSearchPaths
3501//-------------------------------------------------------------------------
3502
Greg Claytone1f50b92011-05-03 22:09:39 +00003503class CommandObjectTargetModulesImageSearchPaths : public CommandObjectMultiword
Chris Lattner24943d22010-06-08 16:52:24 +00003504{
3505public:
Greg Claytone1f50b92011-05-03 22:09:39 +00003506
3507 CommandObjectTargetModulesImageSearchPaths (CommandInterpreter &interpreter) :
3508 CommandObjectMultiword (interpreter,
3509 "target modules search-paths",
3510 "A set of commands for operating on debugger target image search paths.",
3511 "target modules search-paths <subcommand> [<subcommand-options>]")
Chris Lattner24943d22010-06-08 16:52:24 +00003512 {
Greg Claytone1f50b92011-05-03 22:09:39 +00003513 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetModulesSearchPathsAdd (interpreter)));
3514 LoadSubCommand ("clear", CommandObjectSP (new CommandObjectTargetModulesSearchPathsClear (interpreter)));
3515 LoadSubCommand ("insert", CommandObjectSP (new CommandObjectTargetModulesSearchPathsInsert (interpreter)));
3516 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetModulesSearchPathsList (interpreter)));
3517 LoadSubCommand ("query", CommandObjectSP (new CommandObjectTargetModulesSearchPathsQuery (interpreter)));
Chris Lattner24943d22010-06-08 16:52:24 +00003518 }
Greg Claytone1f50b92011-05-03 22:09:39 +00003519
3520 ~CommandObjectTargetModulesImageSearchPaths()
Chris Lattner24943d22010-06-08 16:52:24 +00003521 {
3522 }
3523};
3524
Greg Claytone1f50b92011-05-03 22:09:39 +00003525
3526
3527#pragma mark CommandObjectTargetModules
3528
3529//-------------------------------------------------------------------------
3530// CommandObjectTargetModules
3531//-------------------------------------------------------------------------
3532
3533class CommandObjectTargetModules : public CommandObjectMultiword
3534{
3535public:
3536 //------------------------------------------------------------------
3537 // Constructors and Destructors
3538 //------------------------------------------------------------------
3539 CommandObjectTargetModules(CommandInterpreter &interpreter) :
3540 CommandObjectMultiword (interpreter,
3541 "target modules",
3542 "A set of commands for accessing information for one or more target modules.",
3543 "target modules <sub-command> ...")
3544 {
3545 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetModulesAdd (interpreter)));
3546 LoadSubCommand ("load", CommandObjectSP (new CommandObjectTargetModulesLoad (interpreter)));
3547 //LoadSubCommand ("unload", CommandObjectSP (new CommandObjectTargetModulesUnload (interpreter)));
3548 LoadSubCommand ("dump", CommandObjectSP (new CommandObjectTargetModulesDump (interpreter)));
3549 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetModulesList (interpreter)));
3550 LoadSubCommand ("lookup", CommandObjectSP (new CommandObjectTargetModulesLookup (interpreter)));
3551 LoadSubCommand ("search-paths", CommandObjectSP (new CommandObjectTargetModulesImageSearchPaths (interpreter)));
3552
3553 }
3554 virtual
3555 ~CommandObjectTargetModules()
3556 {
3557 }
3558
3559private:
3560 //------------------------------------------------------------------
3561 // For CommandObjectTargetModules only
3562 //------------------------------------------------------------------
3563 DISALLOW_COPY_AND_ASSIGN (CommandObjectTargetModules);
3564};
3565
3566
Greg Clayton3508c382012-02-24 01:59:29 +00003567
3568class CommandObjectTargetSymbolsAdd : public CommandObject
3569{
3570public:
3571 CommandObjectTargetSymbolsAdd (CommandInterpreter &interpreter) :
3572 CommandObject (interpreter,
3573 "target symbols add",
3574 "Add a debug symbol file to one of the target's current modules.",
3575 "target symbols add [<symfile>]")
3576 {
3577 }
3578
3579 virtual
3580 ~CommandObjectTargetSymbolsAdd ()
3581 {
3582 }
3583
3584 virtual bool
3585 Execute (Args& args,
3586 CommandReturnObject &result)
3587 {
3588 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
3589 if (target == NULL)
3590 {
3591 result.AppendError ("invalid target, create a debug target using the 'target create' command");
3592 result.SetStatus (eReturnStatusFailed);
3593 return false;
3594 }
3595 else
3596 {
3597 const size_t argc = args.GetArgumentCount();
3598 if (argc == 0)
3599 {
3600 result.AppendError ("one or more symbol file paths must be specified");
3601 result.SetStatus (eReturnStatusFailed);
3602 return false;
3603 }
3604 else
3605 {
3606 for (size_t i=0; i<argc; ++i)
3607 {
3608 const char *symfile_path = args.GetArgumentAtIndex(i);
3609 if (symfile_path)
3610 {
3611 FileSpec symfile_spec(symfile_path, true);
3612 ArchSpec arch;
3613 if (symfile_spec.Exists())
3614 {
3615 ModuleSP symfile_module_sp (new Module (symfile_spec, target->GetArchitecture()));
3616 if (symfile_module_sp)
3617 {
3618 // We now have a module that represents a symbol file
3619 // that can be used for a module that might exist in the
3620 // current target, so we need to find that module in the
3621 // target
3622
3623 ModuleSP old_module_sp (target->GetImages().FindModule (symfile_module_sp->GetUUID()));
3624 if (old_module_sp)
3625 {
Greg Claytond4f16c82012-03-29 21:43:25 +00003626 // The module has not yet created its symbol vendor, we can just
3627 // give the existing target module the symfile path to use for
3628 // when it decides to create it!
3629 old_module_sp->SetSymbolFileFileSpec (symfile_module_sp->GetFileSpec());
Greg Clayton3508c382012-02-24 01:59:29 +00003630
Greg Claytond4f16c82012-03-29 21:43:25 +00003631 // Let clients know something changed in the module
3632 // if it is currently loaded
3633 ModuleList module_list;
3634 module_list.Append (old_module_sp);
3635 target->ModulesDidLoad (module_list);
Greg Clayton3508c382012-02-24 01:59:29 +00003636 }
3637 }
3638 else
3639 {
3640 result.AppendError ("one or more executable image paths must be specified");
3641 result.SetStatus (eReturnStatusFailed);
3642 return false;
3643 }
3644 result.SetStatus (eReturnStatusSuccessFinishResult);
3645 }
3646 else
3647 {
3648 char resolved_symfile_path[PATH_MAX];
3649 result.SetStatus (eReturnStatusFailed);
3650 if (symfile_spec.GetPath (resolved_symfile_path, sizeof(resolved_symfile_path)))
3651 {
3652 if (strcmp (resolved_symfile_path, symfile_path) != 0)
3653 {
3654 result.AppendErrorWithFormat ("invalid module path '%s' with resolved path '%s'\n", symfile_path, resolved_symfile_path);
3655 break;
3656 }
3657 }
3658 result.AppendErrorWithFormat ("invalid module path '%s'\n", symfile_path);
3659 break;
3660 }
3661 }
3662 }
3663 }
3664 }
3665 return result.Succeeded();
3666 }
3667
3668 int
3669 HandleArgumentCompletion (Args &input,
3670 int &cursor_index,
3671 int &cursor_char_position,
3672 OptionElementVector &opt_element_vector,
3673 int match_start_point,
3674 int max_return_elements,
3675 bool &word_complete,
3676 StringList &matches)
3677 {
3678 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
3679 completion_str.erase (cursor_char_position);
3680
3681 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
3682 CommandCompletions::eDiskFileCompletion,
3683 completion_str.c_str(),
3684 match_start_point,
3685 max_return_elements,
3686 NULL,
3687 word_complete,
3688 matches);
3689 return matches.GetSize();
3690 }
3691
3692};
3693
3694
3695#pragma mark CommandObjectTargetSymbols
3696
3697//-------------------------------------------------------------------------
3698// CommandObjectTargetSymbols
3699//-------------------------------------------------------------------------
3700
3701class CommandObjectTargetSymbols : public CommandObjectMultiword
3702{
3703public:
3704 //------------------------------------------------------------------
3705 // Constructors and Destructors
3706 //------------------------------------------------------------------
3707 CommandObjectTargetSymbols(CommandInterpreter &interpreter) :
3708 CommandObjectMultiword (interpreter,
3709 "target symbols",
3710 "A set of commands for adding and managing debug symbol files.",
3711 "target symbols <sub-command> ...")
3712 {
3713 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetSymbolsAdd (interpreter)));
3714
3715 }
3716 virtual
3717 ~CommandObjectTargetSymbols()
3718 {
3719 }
3720
3721private:
3722 //------------------------------------------------------------------
3723 // For CommandObjectTargetModules only
3724 //------------------------------------------------------------------
3725 DISALLOW_COPY_AND_ASSIGN (CommandObjectTargetSymbols);
3726};
3727
3728
Jim Inghamd60d94a2011-03-11 03:53:59 +00003729#pragma mark CommandObjectTargetStopHookAdd
3730
3731//-------------------------------------------------------------------------
3732// CommandObjectTargetStopHookAdd
3733//-------------------------------------------------------------------------
3734
3735class CommandObjectTargetStopHookAdd : public CommandObject
3736{
3737public:
3738
3739 class CommandOptions : public Options
3740 {
3741 public:
Greg Claytonf15996e2011-04-07 22:46:35 +00003742 CommandOptions (CommandInterpreter &interpreter) :
3743 Options(interpreter),
Jim Inghamd60d94a2011-03-11 03:53:59 +00003744 m_line_start(0),
3745 m_line_end (UINT_MAX),
3746 m_func_name_type_mask (eFunctionNameTypeAuto),
3747 m_sym_ctx_specified (false),
Johnny Chen60fe60e2011-05-02 23:47:55 +00003748 m_thread_specified (false),
3749 m_use_one_liner (false),
3750 m_one_liner()
Jim Inghamd60d94a2011-03-11 03:53:59 +00003751 {
3752 }
3753
3754 ~CommandOptions () {}
3755
Greg Claytonb3448432011-03-24 21:19:54 +00003756 const OptionDefinition*
Jim Inghamd60d94a2011-03-11 03:53:59 +00003757 GetDefinitions ()
3758 {
3759 return g_option_table;
3760 }
3761
3762 virtual Error
Greg Clayton143fcc32011-04-13 00:18:08 +00003763 SetOptionValue (uint32_t option_idx, const char *option_arg)
Jim Inghamd60d94a2011-03-11 03:53:59 +00003764 {
3765 Error error;
3766 char short_option = (char) m_getopt_table[option_idx].val;
3767 bool success;
3768
3769 switch (short_option)
3770 {
3771 case 'c':
3772 m_class_name = option_arg;
3773 m_sym_ctx_specified = true;
3774 break;
3775
3776 case 'e':
3777 m_line_end = Args::StringToUInt32 (option_arg, UINT_MAX, 0, &success);
3778 if (!success)
3779 {
Greg Clayton9c236732011-10-26 00:56:27 +00003780 error.SetErrorStringWithFormat ("invalid end line number: \"%s\"", option_arg);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003781 break;
3782 }
3783 m_sym_ctx_specified = true;
3784 break;
3785
3786 case 'l':
3787 m_line_start = Args::StringToUInt32 (option_arg, 0, 0, &success);
3788 if (!success)
3789 {
Greg Clayton9c236732011-10-26 00:56:27 +00003790 error.SetErrorStringWithFormat ("invalid start line number: \"%s\"", option_arg);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003791 break;
3792 }
3793 m_sym_ctx_specified = true;
3794 break;
Sean Callanan9ad19532012-02-11 01:22:21 +00003795
3796 case 'i':
3797 m_no_inlines = true;
3798 break;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003799
3800 case 'n':
3801 m_function_name = option_arg;
3802 m_func_name_type_mask |= eFunctionNameTypeAuto;
3803 m_sym_ctx_specified = true;
3804 break;
3805
3806 case 'f':
3807 m_file_name = option_arg;
3808 m_sym_ctx_specified = true;
3809 break;
3810 case 's':
3811 m_module_name = option_arg;
3812 m_sym_ctx_specified = true;
3813 break;
3814 case 't' :
3815 {
Jim Ingham7a4c8ea2011-03-22 01:53:33 +00003816 m_thread_id = Args::StringToUInt64(option_arg, LLDB_INVALID_THREAD_ID, 0);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003817 if (m_thread_id == LLDB_INVALID_THREAD_ID)
Greg Clayton9c236732011-10-26 00:56:27 +00003818 error.SetErrorStringWithFormat ("invalid thread id string '%s'", option_arg);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003819 m_thread_specified = true;
3820 }
3821 break;
3822 case 'T':
3823 m_thread_name = option_arg;
3824 m_thread_specified = true;
3825 break;
3826 case 'q':
3827 m_queue_name = option_arg;
3828 m_thread_specified = true;
3829 break;
3830 case 'x':
3831 {
Jim Ingham7a4c8ea2011-03-22 01:53:33 +00003832 m_thread_index = Args::StringToUInt32(option_arg, UINT32_MAX, 0);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003833 if (m_thread_id == UINT32_MAX)
Greg Clayton9c236732011-10-26 00:56:27 +00003834 error.SetErrorStringWithFormat ("invalid thread index string '%s'", option_arg);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003835 m_thread_specified = true;
3836 }
3837 break;
Johnny Chen60fe60e2011-05-02 23:47:55 +00003838 case 'o':
3839 m_use_one_liner = true;
3840 m_one_liner = option_arg;
3841 break;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003842 default:
Greg Clayton9c236732011-10-26 00:56:27 +00003843 error.SetErrorStringWithFormat ("unrecognized option %c.", short_option);
Jim Inghamd60d94a2011-03-11 03:53:59 +00003844 break;
3845 }
3846 return error;
3847 }
3848
3849 void
Greg Clayton143fcc32011-04-13 00:18:08 +00003850 OptionParsingStarting ()
Jim Inghamd60d94a2011-03-11 03:53:59 +00003851 {
3852 m_class_name.clear();
3853 m_function_name.clear();
3854 m_line_start = 0;
3855 m_line_end = UINT_MAX;
3856 m_file_name.clear();
3857 m_module_name.clear();
3858 m_func_name_type_mask = eFunctionNameTypeAuto;
3859 m_thread_id = LLDB_INVALID_THREAD_ID;
3860 m_thread_index = UINT32_MAX;
3861 m_thread_name.clear();
3862 m_queue_name.clear();
Sean Callanan9ad19532012-02-11 01:22:21 +00003863
3864 m_no_inlines = false;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003865 m_sym_ctx_specified = false;
3866 m_thread_specified = false;
Johnny Chen60fe60e2011-05-02 23:47:55 +00003867
3868 m_use_one_liner = false;
3869 m_one_liner.clear();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003870 }
3871
3872
Greg Claytonb3448432011-03-24 21:19:54 +00003873 static OptionDefinition g_option_table[];
Jim Inghamd60d94a2011-03-11 03:53:59 +00003874
3875 std::string m_class_name;
3876 std::string m_function_name;
3877 uint32_t m_line_start;
3878 uint32_t m_line_end;
3879 std::string m_file_name;
3880 std::string m_module_name;
3881 uint32_t m_func_name_type_mask; // A pick from lldb::FunctionNameType.
3882 lldb::tid_t m_thread_id;
3883 uint32_t m_thread_index;
3884 std::string m_thread_name;
3885 std::string m_queue_name;
3886 bool m_sym_ctx_specified;
Sean Callanan9ad19532012-02-11 01:22:21 +00003887 bool m_no_inlines;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003888 bool m_thread_specified;
Johnny Chen60fe60e2011-05-02 23:47:55 +00003889 // Instance variables to hold the values for one_liner options.
3890 bool m_use_one_liner;
3891 std::string m_one_liner;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003892 };
3893
3894 Options *
3895 GetOptions ()
3896 {
3897 return &m_options;
3898 }
3899
3900 CommandObjectTargetStopHookAdd (CommandInterpreter &interpreter) :
3901 CommandObject (interpreter,
3902 "target stop-hook add ",
3903 "Add a hook to be executed when the target stops.",
Greg Claytonf15996e2011-04-07 22:46:35 +00003904 "target stop-hook add"),
3905 m_options (interpreter)
Jim Inghamd60d94a2011-03-11 03:53:59 +00003906 {
3907 }
3908
3909 ~CommandObjectTargetStopHookAdd ()
3910 {
3911 }
3912
3913 static size_t
3914 ReadCommandsCallbackFunction (void *baton,
3915 InputReader &reader,
3916 lldb::InputReaderAction notification,
3917 const char *bytes,
3918 size_t bytes_len)
3919 {
Caroline Tice892fadd2011-06-16 16:27:19 +00003920 StreamSP out_stream = reader.GetDebugger().GetAsyncOutputStream();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003921 Target::StopHook *new_stop_hook = ((Target::StopHook *) baton);
Jim Inghame15511a2011-05-05 01:03:36 +00003922 static bool got_interrupted;
Caroline Tice892fadd2011-06-16 16:27:19 +00003923 bool batch_mode = reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003924
3925 switch (notification)
3926 {
3927 case eInputReaderActivate:
Caroline Tice892fadd2011-06-16 16:27:19 +00003928 if (!batch_mode)
3929 {
3930 out_stream->Printf ("%s\n", "Enter your stop hook command(s). Type 'DONE' to end.");
3931 if (reader.GetPrompt())
3932 out_stream->Printf ("%s", reader.GetPrompt());
3933 out_stream->Flush();
3934 }
Jim Inghame15511a2011-05-05 01:03:36 +00003935 got_interrupted = false;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003936 break;
3937
3938 case eInputReaderDeactivate:
3939 break;
3940
3941 case eInputReaderReactivate:
Caroline Tice892fadd2011-06-16 16:27:19 +00003942 if (reader.GetPrompt() && !batch_mode)
Jim Inghamd60d94a2011-03-11 03:53:59 +00003943 {
Caroline Tice892fadd2011-06-16 16:27:19 +00003944 out_stream->Printf ("%s", reader.GetPrompt());
3945 out_stream->Flush();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003946 }
Jim Inghame15511a2011-05-05 01:03:36 +00003947 got_interrupted = false;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003948 break;
3949
Caroline Tice4a348082011-05-02 20:41:46 +00003950 case eInputReaderAsynchronousOutputWritten:
3951 break;
3952
Jim Inghamd60d94a2011-03-11 03:53:59 +00003953 case eInputReaderGotToken:
3954 if (bytes && bytes_len && baton)
3955 {
3956 StringList *commands = new_stop_hook->GetCommandPointer();
3957 if (commands)
3958 {
3959 commands->AppendString (bytes, bytes_len);
3960 }
3961 }
Caroline Tice892fadd2011-06-16 16:27:19 +00003962 if (!reader.IsDone() && reader.GetPrompt() && !batch_mode)
Jim Inghamd60d94a2011-03-11 03:53:59 +00003963 {
Caroline Tice892fadd2011-06-16 16:27:19 +00003964 out_stream->Printf ("%s", reader.GetPrompt());
3965 out_stream->Flush();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003966 }
3967 break;
3968
3969 case eInputReaderInterrupt:
3970 {
3971 // Finish, and cancel the stop hook.
3972 new_stop_hook->GetTarget()->RemoveStopHookByID(new_stop_hook->GetID());
Caroline Tice892fadd2011-06-16 16:27:19 +00003973 if (!batch_mode)
3974 {
3975 out_stream->Printf ("Stop hook cancelled.\n");
3976 out_stream->Flush();
3977 }
3978
Jim Inghamd60d94a2011-03-11 03:53:59 +00003979 reader.SetIsDone (true);
3980 }
Jim Inghame15511a2011-05-05 01:03:36 +00003981 got_interrupted = true;
Jim Inghamd60d94a2011-03-11 03:53:59 +00003982 break;
3983
3984 case eInputReaderEndOfFile:
3985 reader.SetIsDone (true);
3986 break;
3987
3988 case eInputReaderDone:
Caroline Tice892fadd2011-06-16 16:27:19 +00003989 if (!got_interrupted && !batch_mode)
3990 {
Greg Clayton444e35b2011-10-19 18:09:39 +00003991 out_stream->Printf ("Stop hook #%llu added.\n", new_stop_hook->GetID());
Caroline Tice892fadd2011-06-16 16:27:19 +00003992 out_stream->Flush();
3993 }
Jim Inghamd60d94a2011-03-11 03:53:59 +00003994 break;
3995 }
3996
3997 return bytes_len;
3998 }
3999
4000 bool
4001 Execute (Args& command,
4002 CommandReturnObject &result)
4003 {
4004 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
4005 if (target)
4006 {
4007 Target::StopHookSP new_hook_sp;
4008 target->AddStopHook (new_hook_sp);
4009
4010 // First step, make the specifier.
4011 std::auto_ptr<SymbolContextSpecifier> specifier_ap;
4012 if (m_options.m_sym_ctx_specified)
4013 {
4014 specifier_ap.reset(new SymbolContextSpecifier(m_interpreter.GetDebugger().GetSelectedTarget()));
4015
4016 if (!m_options.m_module_name.empty())
4017 {
4018 specifier_ap->AddSpecification (m_options.m_module_name.c_str(), SymbolContextSpecifier::eModuleSpecified);
4019 }
4020
4021 if (!m_options.m_class_name.empty())
4022 {
4023 specifier_ap->AddSpecification (m_options.m_class_name.c_str(), SymbolContextSpecifier::eClassOrNamespaceSpecified);
4024 }
4025
4026 if (!m_options.m_file_name.empty())
4027 {
4028 specifier_ap->AddSpecification (m_options.m_file_name.c_str(), SymbolContextSpecifier::eFileSpecified);
4029 }
4030
4031 if (m_options.m_line_start != 0)
4032 {
4033 specifier_ap->AddLineSpecification (m_options.m_line_start, SymbolContextSpecifier::eLineStartSpecified);
4034 }
4035
4036 if (m_options.m_line_end != UINT_MAX)
4037 {
4038 specifier_ap->AddLineSpecification (m_options.m_line_end, SymbolContextSpecifier::eLineEndSpecified);
4039 }
4040
4041 if (!m_options.m_function_name.empty())
4042 {
4043 specifier_ap->AddSpecification (m_options.m_function_name.c_str(), SymbolContextSpecifier::eFunctionSpecified);
4044 }
4045 }
4046
4047 if (specifier_ap.get())
4048 new_hook_sp->SetSpecifier (specifier_ap.release());
4049
4050 // Next see if any of the thread options have been entered:
4051
4052 if (m_options.m_thread_specified)
4053 {
4054 ThreadSpec *thread_spec = new ThreadSpec();
4055
4056 if (m_options.m_thread_id != LLDB_INVALID_THREAD_ID)
4057 {
4058 thread_spec->SetTID (m_options.m_thread_id);
4059 }
4060
4061 if (m_options.m_thread_index != UINT32_MAX)
4062 thread_spec->SetIndex (m_options.m_thread_index);
4063
4064 if (!m_options.m_thread_name.empty())
4065 thread_spec->SetName (m_options.m_thread_name.c_str());
4066
4067 if (!m_options.m_queue_name.empty())
4068 thread_spec->SetQueueName (m_options.m_queue_name.c_str());
4069
4070 new_hook_sp->SetThreadSpecifier (thread_spec);
4071
4072 }
Johnny Chen60fe60e2011-05-02 23:47:55 +00004073 if (m_options.m_use_one_liner)
Jim Inghamd60d94a2011-03-11 03:53:59 +00004074 {
Johnny Chen60fe60e2011-05-02 23:47:55 +00004075 // Use one-liner.
4076 new_hook_sp->GetCommandPointer()->AppendString (m_options.m_one_liner.c_str());
Greg Clayton444e35b2011-10-19 18:09:39 +00004077 result.AppendMessageWithFormat("Stop hook #%llu added.\n", new_hook_sp->GetID());
Jim Inghamd60d94a2011-03-11 03:53:59 +00004078 }
Johnny Chen60fe60e2011-05-02 23:47:55 +00004079 else
Jim Inghamd60d94a2011-03-11 03:53:59 +00004080 {
Johnny Chen60fe60e2011-05-02 23:47:55 +00004081 // Otherwise gather up the command list, we'll push an input reader and suck the data from that directly into
4082 // the new stop hook's command string.
4083 InputReaderSP reader_sp (new InputReader(m_interpreter.GetDebugger()));
4084 if (!reader_sp)
4085 {
4086 result.AppendError("out of memory\n");
4087 result.SetStatus (eReturnStatusFailed);
4088 target->RemoveStopHookByID (new_hook_sp->GetID());
4089 return false;
4090 }
4091
4092 Error err (reader_sp->Initialize (CommandObjectTargetStopHookAdd::ReadCommandsCallbackFunction,
4093 new_hook_sp.get(), // baton
4094 eInputReaderGranularityLine, // token size, to pass to callback function
4095 "DONE", // end token
4096 "> ", // prompt
4097 true)); // echo input
4098 if (!err.Success())
4099 {
4100 result.AppendError (err.AsCString());
4101 result.SetStatus (eReturnStatusFailed);
4102 target->RemoveStopHookByID (new_hook_sp->GetID());
4103 return false;
4104 }
4105 m_interpreter.GetDebugger().PushInputReader (reader_sp);
Jim Inghamd60d94a2011-03-11 03:53:59 +00004106 }
Jim Inghamd60d94a2011-03-11 03:53:59 +00004107 result.SetStatus (eReturnStatusSuccessFinishNoResult);
4108 }
4109 else
4110 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004111 result.AppendError ("invalid target\n");
Jim Inghamd60d94a2011-03-11 03:53:59 +00004112 result.SetStatus (eReturnStatusFailed);
4113 }
4114
4115 return result.Succeeded();
4116 }
4117private:
4118 CommandOptions m_options;
4119};
4120
Greg Claytonb3448432011-03-24 21:19:54 +00004121OptionDefinition
Jim Inghamd60d94a2011-03-11 03:53:59 +00004122CommandObjectTargetStopHookAdd::CommandOptions::g_option_table[] =
4123{
Johnny Chen60fe60e2011-05-02 23:47:55 +00004124 { LLDB_OPT_SET_ALL, false, "one-liner", 'o', required_argument, NULL, NULL, eArgTypeOneLiner,
4125 "Specify a one-line breakpoint command inline. Be sure to surround it with quotes." },
Jim Inghamd60d94a2011-03-11 03:53:59 +00004126 { LLDB_OPT_SET_ALL, false, "shlib", 's', required_argument, NULL, CommandCompletions::eModuleCompletion, eArgTypeShlibName,
4127 "Set the module within which the stop-hook is to be run."},
4128 { LLDB_OPT_SET_ALL, false, "thread-index", 'x', required_argument, NULL, NULL, eArgTypeThreadIndex,
4129 "The stop hook is run only for the thread whose index matches this argument."},
4130 { LLDB_OPT_SET_ALL, false, "thread-id", 't', required_argument, NULL, NULL, eArgTypeThreadID,
4131 "The stop hook is run only for the thread whose TID matches this argument."},
4132 { LLDB_OPT_SET_ALL, false, "thread-name", 'T', required_argument, NULL, NULL, eArgTypeThreadName,
4133 "The stop hook is run only for the thread whose thread name matches this argument."},
4134 { LLDB_OPT_SET_ALL, false, "queue-name", 'q', required_argument, NULL, NULL, eArgTypeQueueName,
4135 "The stop hook is run only for threads in the queue whose name is given by this argument."},
4136 { LLDB_OPT_SET_1, false, "file", 'f', required_argument, NULL, CommandCompletions::eSourceFileCompletion, eArgTypeFilename,
4137 "Specify the source file within which the stop-hook is to be run." },
4138 { LLDB_OPT_SET_1, false, "start-line", 'l', required_argument, NULL, 0, eArgTypeLineNum,
4139 "Set the start of the line range for which the stop-hook is to be run."},
4140 { LLDB_OPT_SET_1, false, "end-line", 'e', required_argument, NULL, 0, eArgTypeLineNum,
4141 "Set the end of the line range for which the stop-hook is to be run."},
4142 { LLDB_OPT_SET_2, false, "classname", 'c', required_argument, NULL, NULL, eArgTypeClassName,
4143 "Specify the class within which the stop-hook is to be run." },
4144 { LLDB_OPT_SET_3, false, "name", 'n', required_argument, NULL, CommandCompletions::eSymbolCompletion, eArgTypeFunctionName,
4145 "Set the function name within which the stop hook will be run." },
4146 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
4147};
4148
4149#pragma mark CommandObjectTargetStopHookDelete
4150
4151//-------------------------------------------------------------------------
4152// CommandObjectTargetStopHookDelete
4153//-------------------------------------------------------------------------
4154
4155class CommandObjectTargetStopHookDelete : public CommandObject
4156{
4157public:
4158
4159 CommandObjectTargetStopHookDelete (CommandInterpreter &interpreter) :
4160 CommandObject (interpreter,
Jason Molenda3fccc902011-11-10 23:03:44 +00004161 "target stop-hook delete",
Jim Inghamd60d94a2011-03-11 03:53:59 +00004162 "Delete a stop-hook.",
Jason Molenda3fccc902011-11-10 23:03:44 +00004163 "target stop-hook delete [<idx>]")
Jim Inghamd60d94a2011-03-11 03:53:59 +00004164 {
4165 }
4166
4167 ~CommandObjectTargetStopHookDelete ()
4168 {
4169 }
4170
4171 bool
4172 Execute (Args& command,
4173 CommandReturnObject &result)
4174 {
4175 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
4176 if (target)
4177 {
4178 // FIXME: see if we can use the breakpoint id style parser?
4179 size_t num_args = command.GetArgumentCount();
4180 if (num_args == 0)
4181 {
4182 if (!m_interpreter.Confirm ("Delete all stop hooks?", true))
4183 {
4184 result.SetStatus (eReturnStatusFailed);
4185 return false;
4186 }
4187 else
4188 {
4189 target->RemoveAllStopHooks();
4190 }
4191 }
4192 else
4193 {
4194 bool success;
4195 for (size_t i = 0; i < num_args; i++)
4196 {
4197 lldb::user_id_t user_id = Args::StringToUInt32 (command.GetArgumentAtIndex(i), 0, 0, &success);
4198 if (!success)
4199 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004200 result.AppendErrorWithFormat ("invalid stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Inghamd60d94a2011-03-11 03:53:59 +00004201 result.SetStatus(eReturnStatusFailed);
4202 return false;
4203 }
4204 success = target->RemoveStopHookByID (user_id);
4205 if (!success)
4206 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004207 result.AppendErrorWithFormat ("unknown stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Inghamd60d94a2011-03-11 03:53:59 +00004208 result.SetStatus(eReturnStatusFailed);
4209 return false;
4210 }
4211 }
4212 }
4213 result.SetStatus (eReturnStatusSuccessFinishNoResult);
4214 }
4215 else
4216 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004217 result.AppendError ("invalid target\n");
Jim Inghamd60d94a2011-03-11 03:53:59 +00004218 result.SetStatus (eReturnStatusFailed);
4219 }
4220
4221 return result.Succeeded();
4222 }
4223};
4224#pragma mark CommandObjectTargetStopHookEnableDisable
4225
4226//-------------------------------------------------------------------------
4227// CommandObjectTargetStopHookEnableDisable
4228//-------------------------------------------------------------------------
4229
4230class CommandObjectTargetStopHookEnableDisable : public CommandObject
4231{
4232public:
4233
4234 CommandObjectTargetStopHookEnableDisable (CommandInterpreter &interpreter, bool enable, const char *name, const char *help, const char *syntax) :
4235 CommandObject (interpreter,
4236 name,
4237 help,
4238 syntax),
4239 m_enable (enable)
4240 {
4241 }
4242
4243 ~CommandObjectTargetStopHookEnableDisable ()
4244 {
4245 }
4246
4247 bool
4248 Execute (Args& command,
4249 CommandReturnObject &result)
4250 {
4251 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
4252 if (target)
4253 {
4254 // FIXME: see if we can use the breakpoint id style parser?
4255 size_t num_args = command.GetArgumentCount();
4256 bool success;
4257
4258 if (num_args == 0)
4259 {
4260 target->SetAllStopHooksActiveState (m_enable);
4261 }
4262 else
4263 {
4264 for (size_t i = 0; i < num_args; i++)
4265 {
4266 lldb::user_id_t user_id = Args::StringToUInt32 (command.GetArgumentAtIndex(i), 0, 0, &success);
4267 if (!success)
4268 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004269 result.AppendErrorWithFormat ("invalid stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Inghamd60d94a2011-03-11 03:53:59 +00004270 result.SetStatus(eReturnStatusFailed);
4271 return false;
4272 }
4273 success = target->SetStopHookActiveStateByID (user_id, m_enable);
4274 if (!success)
4275 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004276 result.AppendErrorWithFormat ("unknown stop hook id: \"%s\".\n", command.GetArgumentAtIndex(i));
Jim Inghamd60d94a2011-03-11 03:53:59 +00004277 result.SetStatus(eReturnStatusFailed);
4278 return false;
4279 }
4280 }
4281 }
4282 result.SetStatus (eReturnStatusSuccessFinishNoResult);
4283 }
4284 else
4285 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004286 result.AppendError ("invalid target\n");
Jim Inghamd60d94a2011-03-11 03:53:59 +00004287 result.SetStatus (eReturnStatusFailed);
4288 }
4289 return result.Succeeded();
4290 }
4291private:
4292 bool m_enable;
4293};
4294
4295#pragma mark CommandObjectTargetStopHookList
4296
4297//-------------------------------------------------------------------------
4298// CommandObjectTargetStopHookList
4299//-------------------------------------------------------------------------
4300
4301class CommandObjectTargetStopHookList : public CommandObject
4302{
4303public:
4304
4305 CommandObjectTargetStopHookList (CommandInterpreter &interpreter) :
4306 CommandObject (interpreter,
Jason Molenda3fccc902011-11-10 23:03:44 +00004307 "target stop-hook list",
Jim Inghamd60d94a2011-03-11 03:53:59 +00004308 "List all stop-hooks.",
Jason Molenda3fccc902011-11-10 23:03:44 +00004309 "target stop-hook list [<type>]")
Jim Inghamd60d94a2011-03-11 03:53:59 +00004310 {
4311 }
4312
4313 ~CommandObjectTargetStopHookList ()
4314 {
4315 }
4316
4317 bool
4318 Execute (Args& command,
4319 CommandReturnObject &result)
4320 {
4321 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
Johnny Chen9fc16922011-11-29 23:56:14 +00004322 if (!target)
Jim Inghamd60d94a2011-03-11 03:53:59 +00004323 {
Greg Claytonabe0fed2011-04-18 08:33:37 +00004324 result.AppendError ("invalid target\n");
Jim Inghamd60d94a2011-03-11 03:53:59 +00004325 result.SetStatus (eReturnStatusFailed);
Jason Molenda6e3a2412011-09-23 21:15:42 +00004326 return result.Succeeded();
Jim Inghamd60d94a2011-03-11 03:53:59 +00004327 }
4328
4329 size_t num_hooks = target->GetNumStopHooks ();
4330 if (num_hooks == 0)
4331 {
4332 result.GetOutputStream().PutCString ("No stop hooks.\n");
4333 }
4334 else
4335 {
4336 for (size_t i = 0; i < num_hooks; i++)
4337 {
4338 Target::StopHookSP this_hook = target->GetStopHookAtIndex (i);
4339 if (i > 0)
4340 result.GetOutputStream().PutCString ("\n");
4341 this_hook->GetDescription (&(result.GetOutputStream()), eDescriptionLevelFull);
4342 }
4343 }
Johnny Chen6c7c3902011-11-30 19:09:20 +00004344 result.SetStatus (eReturnStatusSuccessFinishResult);
Jim Inghamd60d94a2011-03-11 03:53:59 +00004345 return result.Succeeded();
4346 }
4347};
4348
4349#pragma mark CommandObjectMultiwordTargetStopHooks
4350//-------------------------------------------------------------------------
4351// CommandObjectMultiwordTargetStopHooks
4352//-------------------------------------------------------------------------
4353
4354class CommandObjectMultiwordTargetStopHooks : public CommandObjectMultiword
4355{
4356public:
4357
4358 CommandObjectMultiwordTargetStopHooks (CommandInterpreter &interpreter) :
4359 CommandObjectMultiword (interpreter,
4360 "target stop-hook",
4361 "A set of commands for operating on debugger target stop-hooks.",
4362 "target stop-hook <subcommand> [<subcommand-options>]")
4363 {
4364 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetStopHookAdd (interpreter)));
4365 LoadSubCommand ("delete", CommandObjectSP (new CommandObjectTargetStopHookDelete (interpreter)));
4366 LoadSubCommand ("disable", CommandObjectSP (new CommandObjectTargetStopHookEnableDisable (interpreter,
4367 false,
4368 "target stop-hook disable [<id>]",
4369 "Disable a stop-hook.",
4370 "target stop-hook disable")));
4371 LoadSubCommand ("enable", CommandObjectSP (new CommandObjectTargetStopHookEnableDisable (interpreter,
4372 true,
4373 "target stop-hook enable [<id>]",
4374 "Enable a stop-hook.",
4375 "target stop-hook enable")));
4376 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetStopHookList (interpreter)));
4377 }
4378
4379 ~CommandObjectMultiwordTargetStopHooks()
4380 {
4381 }
4382};
4383
4384
Chris Lattner24943d22010-06-08 16:52:24 +00004385
4386#pragma mark CommandObjectMultiwordTarget
4387
4388//-------------------------------------------------------------------------
4389// CommandObjectMultiwordTarget
4390//-------------------------------------------------------------------------
4391
Greg Clayton63094e02010-06-23 01:19:29 +00004392CommandObjectMultiwordTarget::CommandObjectMultiwordTarget (CommandInterpreter &interpreter) :
Greg Clayton238c0a12010-09-18 01:14:36 +00004393 CommandObjectMultiword (interpreter,
4394 "target",
Chris Lattner24943d22010-06-08 16:52:24 +00004395 "A set of commands for operating on debugger targets.",
4396 "target <subcommand> [<subcommand-options>]")
4397{
Greg Claytonabe0fed2011-04-18 08:33:37 +00004398
4399 LoadSubCommand ("create", CommandObjectSP (new CommandObjectTargetCreate (interpreter)));
Greg Clayton153ccd72011-08-10 02:10:13 +00004400 LoadSubCommand ("delete", CommandObjectSP (new CommandObjectTargetDelete (interpreter)));
Greg Claytonabe0fed2011-04-18 08:33:37 +00004401 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetList (interpreter)));
4402 LoadSubCommand ("select", CommandObjectSP (new CommandObjectTargetSelect (interpreter)));
Jim Inghamd60d94a2011-03-11 03:53:59 +00004403 LoadSubCommand ("stop-hook", CommandObjectSP (new CommandObjectMultiwordTargetStopHooks (interpreter)));
Greg Claytone1f50b92011-05-03 22:09:39 +00004404 LoadSubCommand ("modules", CommandObjectSP (new CommandObjectTargetModules (interpreter)));
Greg Clayton3508c382012-02-24 01:59:29 +00004405 LoadSubCommand ("symbols", CommandObjectSP (new CommandObjectTargetSymbols (interpreter)));
Greg Clayton801417e2011-07-07 01:59:51 +00004406 LoadSubCommand ("variable", CommandObjectSP (new CommandObjectTargetVariable (interpreter)));
Chris Lattner24943d22010-06-08 16:52:24 +00004407}
4408
4409CommandObjectMultiwordTarget::~CommandObjectMultiwordTarget ()
4410{
4411}
4412
Greg Claytonabe0fed2011-04-18 08:33:37 +00004413