blob: 19400eeb519f0a9ca4501758d4cb89357fefe074 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- CommandObjectFrame.cpp ----------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Daniel Malea93a64302012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include "CommandObjectFrame.h"
13
14// C Includes
15// C++ Includes
Johnny Chende6bd242011-09-16 21:41:42 +000016#include <string>
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017// Other libraries and framework includes
18// Project includes
Chris Lattner30fdc8d2010-06-08 16:52:24 +000019#include "lldb/Core/Debugger.h"
Jim Ingham6d56d2c2010-09-02 00:18:39 +000020#include "lldb/Core/Module.h"
21#include "lldb/Core/StreamFile.h"
Johnny Chende6bd242011-09-16 21:41:42 +000022#include "lldb/Core/StreamString.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000023#include "lldb/Core/Timer.h"
Jim Ingham6d56d2c2010-09-02 00:18:39 +000024#include "lldb/Core/Value.h"
25#include "lldb/Core/ValueObject.h"
26#include "lldb/Core/ValueObjectVariable.h"
Enrico Granata5548cb52013-01-28 23:47:25 +000027#include "lldb/DataFormatters/DataVisualization.h"
Enrico Granata4d93b8c2013-09-30 19:11:51 +000028#include "lldb/DataFormatters/ValueObjectPrinter.h"
Greg Clayton7fb56d02011-02-01 01:31:41 +000029#include "lldb/Host/Host.h"
Vince Harron5275aaa2015-01-15 20:08:35 +000030#include "lldb/Host/StringConvert.h"
Jim Ingham6d56d2c2010-09-02 00:18:39 +000031#include "lldb/Interpreter/Args.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000032#include "lldb/Interpreter/CommandInterpreter.h"
33#include "lldb/Interpreter/CommandReturnObject.h"
Jim Ingham6d56d2c2010-09-02 00:18:39 +000034#include "lldb/Interpreter/Options.h"
Greg Clayton1deb7962011-10-25 06:44:01 +000035#include "lldb/Interpreter/OptionGroupFormat.h"
Jim Ingham2837b762011-05-04 03:43:18 +000036#include "lldb/Interpreter/OptionGroupValueObjectDisplay.h"
Greg Clayton715c2362011-07-07 04:38:25 +000037#include "lldb/Interpreter/OptionGroupVariable.h"
Jim Ingham6d56d2c2010-09-02 00:18:39 +000038#include "lldb/Symbol/ClangASTType.h"
39#include "lldb/Symbol/ClangASTContext.h"
40#include "lldb/Symbol/ObjectFile.h"
41#include "lldb/Symbol/SymbolContext.h"
42#include "lldb/Symbol/Type.h"
43#include "lldb/Symbol/Variable.h"
44#include "lldb/Symbol/VariableList.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000045#include "lldb/Target/Process.h"
Jason Molendab57e4a12013-11-04 09:33:30 +000046#include "lldb/Target/StackFrame.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000047#include "lldb/Target/Thread.h"
Jim Ingham6d56d2c2010-09-02 00:18:39 +000048#include "lldb/Target/Target.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000049
Chris Lattner30fdc8d2010-06-08 16:52:24 +000050using namespace lldb;
51using namespace lldb_private;
52
53#pragma mark CommandObjectFrameInfo
54
55//-------------------------------------------------------------------------
56// CommandObjectFrameInfo
57//-------------------------------------------------------------------------
58
Jim Ingham5a988412012-06-08 21:56:10 +000059class CommandObjectFrameInfo : public CommandObjectParsed
Chris Lattner30fdc8d2010-06-08 16:52:24 +000060{
61public:
62
Greg Claytona7015092010-09-18 01:14:36 +000063 CommandObjectFrameInfo (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +000064 CommandObjectParsed (interpreter,
65 "frame info",
66 "List information about the currently selected frame in the current thread.",
67 "frame info",
Enrico Granatae87764f2015-05-27 05:04:35 +000068 eCommandRequiresFrame |
69 eCommandTryTargetAPILock |
70 eCommandProcessMustBeLaunched |
71 eCommandProcessMustBePaused )
Chris Lattner30fdc8d2010-06-08 16:52:24 +000072 {
73 }
74
75 ~CommandObjectFrameInfo ()
76 {
77 }
78
Jim Ingham5a988412012-06-08 21:56:10 +000079protected:
Chris Lattner30fdc8d2010-06-08 16:52:24 +000080 bool
Greg Claytonf9fc6092013-01-09 19:44:40 +000081 DoExecute (Args& command, CommandReturnObject &result)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000082 {
Greg Claytonf9fc6092013-01-09 19:44:40 +000083 m_exe_ctx.GetFrameRef().DumpUsingSettingsFormat (&result.GetOutputStream());
84 result.SetStatus (eReturnStatusSuccessFinishResult);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000085 return result.Succeeded();
86 }
87};
88
89#pragma mark CommandObjectFrameSelect
90
91//-------------------------------------------------------------------------
92// CommandObjectFrameSelect
93//-------------------------------------------------------------------------
94
Jim Ingham5a988412012-06-08 21:56:10 +000095class CommandObjectFrameSelect : public CommandObjectParsed
Chris Lattner30fdc8d2010-06-08 16:52:24 +000096{
97public:
98
Greg Clayton864174e2010-10-10 22:28:11 +000099 class CommandOptions : public Options
100 {
101 public:
102
Greg Claytoneb0103f2011-04-07 22:46:35 +0000103 CommandOptions (CommandInterpreter &interpreter) :
Johnny Chenf16066e2011-04-08 22:39:17 +0000104 Options(interpreter)
Greg Clayton864174e2010-10-10 22:28:11 +0000105 {
Greg Claytonf6b8b582011-04-13 00:18:08 +0000106 OptionParsingStarting ();
Greg Clayton864174e2010-10-10 22:28:11 +0000107 }
108
109 virtual
110 ~CommandOptions ()
111 {
112 }
113
114 virtual Error
Greg Claytonf6b8b582011-04-13 00:18:08 +0000115 SetOptionValue (uint32_t option_idx, const char *option_arg)
Greg Clayton864174e2010-10-10 22:28:11 +0000116 {
117 Error error;
118 bool success = false;
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000119 const int short_option = m_getopt_table[option_idx].val;
Greg Clayton864174e2010-10-10 22:28:11 +0000120 switch (short_option)
121 {
122 case 'r':
Vince Harron5275aaa2015-01-15 20:08:35 +0000123 relative_frame_offset = StringConvert::ToSInt32 (option_arg, INT32_MIN, 0, &success);
Greg Clayton864174e2010-10-10 22:28:11 +0000124 if (!success)
Greg Clayton86edbf42011-10-26 00:56:27 +0000125 error.SetErrorStringWithFormat ("invalid frame offset argument '%s'", option_arg);
Greg Clayton864174e2010-10-10 22:28:11 +0000126 break;
127
128 default:
Greg Clayton86edbf42011-10-26 00:56:27 +0000129 error.SetErrorStringWithFormat ("invalid short option character '%c'", short_option);
Greg Clayton864174e2010-10-10 22:28:11 +0000130 break;
131 }
132
133 return error;
134 }
135
136 void
Greg Claytonf6b8b582011-04-13 00:18:08 +0000137 OptionParsingStarting ()
Greg Clayton864174e2010-10-10 22:28:11 +0000138 {
Greg Clayton864174e2010-10-10 22:28:11 +0000139 relative_frame_offset = INT32_MIN;
140 }
141
Greg Claytone0d378b2011-03-24 21:19:54 +0000142 const OptionDefinition*
Greg Clayton864174e2010-10-10 22:28:11 +0000143 GetDefinitions ()
144 {
145 return g_option_table;
146 }
147
148 // Options table: Required for subclasses of Options.
149
Greg Claytone0d378b2011-03-24 21:19:54 +0000150 static OptionDefinition g_option_table[];
Greg Clayton864174e2010-10-10 22:28:11 +0000151 int32_t relative_frame_offset;
152 };
153
Greg Claytona7015092010-09-18 01:14:36 +0000154 CommandObjectFrameSelect (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +0000155 CommandObjectParsed (interpreter,
156 "frame select",
157 "Select a frame by index from within the current thread and make it the current frame.",
158 NULL,
Enrico Granatae87764f2015-05-27 05:04:35 +0000159 eCommandRequiresThread |
160 eCommandTryTargetAPILock |
161 eCommandProcessMustBeLaunched |
162 eCommandProcessMustBePaused ),
Greg Claytoneb0103f2011-04-07 22:46:35 +0000163 m_options (interpreter)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000164 {
Caroline Tice405fe672010-10-04 22:28:36 +0000165 CommandArgumentEntry arg;
166 CommandArgumentData index_arg;
167
168 // Define the first (and only) variant of this arg.
169 index_arg.arg_type = eArgTypeFrameIndex;
Greg Clayton864174e2010-10-10 22:28:11 +0000170 index_arg.arg_repetition = eArgRepeatOptional;
Caroline Tice405fe672010-10-04 22:28:36 +0000171
172 // There is only one variant this argument could be; put it into the argument entry.
173 arg.push_back (index_arg);
174
175 // Push the data for the first argument into the m_arguments vector.
176 m_arguments.push_back (arg);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000177 }
178
179 ~CommandObjectFrameSelect ()
180 {
181 }
182
Greg Clayton864174e2010-10-10 22:28:11 +0000183 virtual
184 Options *
185 GetOptions ()
186 {
187 return &m_options;
188 }
189
190
Jim Ingham5a988412012-06-08 21:56:10 +0000191protected:
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000192 bool
Greg Claytonf9fc6092013-01-09 19:44:40 +0000193 DoExecute (Args& command, CommandReturnObject &result)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000194 {
Enrico Granatae87764f2015-05-27 05:04:35 +0000195 // No need to check "thread" for validity as eCommandRequiresThread ensures it is valid
Greg Claytonf9fc6092013-01-09 19:44:40 +0000196 Thread *thread = m_exe_ctx.GetThreadPtr();
197
198 uint32_t frame_idx = UINT32_MAX;
199 if (m_options.relative_frame_offset != INT32_MIN)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000200 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000201 // The one and only argument is a signed relative frame index
202 frame_idx = thread->GetSelectedFrameIndex ();
203 if (frame_idx == UINT32_MAX)
204 frame_idx = 0;
205
206 if (m_options.relative_frame_offset < 0)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000207 {
Saleem Abdulrasool3985c8c2014-04-02 03:51:35 +0000208 if (static_cast<int32_t>(frame_idx) >= -m_options.relative_frame_offset)
Greg Claytonf9fc6092013-01-09 19:44:40 +0000209 frame_idx += m_options.relative_frame_offset;
Greg Clayton864174e2010-10-10 22:28:11 +0000210 else
211 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000212 if (frame_idx == 0)
213 {
214 //If you are already at the bottom of the stack, then just warn and don't reset the frame.
215 result.AppendError("Already at the bottom of the stack");
216 result.SetStatus(eReturnStatusFailed);
217 return false;
218 }
219 else
220 frame_idx = 0;
Greg Clayton864174e2010-10-10 22:28:11 +0000221 }
222 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000223 else if (m_options.relative_frame_offset > 0)
Greg Clayton864174e2010-10-10 22:28:11 +0000224 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000225 // I don't want "up 20" where "20" takes you past the top of the stack to produce
226 // an error, but rather to just go to the top. So I have to count the stack here...
227 const uint32_t num_frames = thread->GetStackFrameCount();
Saleem Abdulrasool3985c8c2014-04-02 03:51:35 +0000228 if (static_cast<int32_t>(num_frames - frame_idx) > m_options.relative_frame_offset)
Greg Claytonf9fc6092013-01-09 19:44:40 +0000229 frame_idx += m_options.relative_frame_offset;
230 else
Greg Clayton864174e2010-10-10 22:28:11 +0000231 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000232 if (frame_idx == num_frames - 1)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000233 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000234 //If we are already at the top of the stack, just warn and don't reset the frame.
235 result.AppendError("Already at the top of the stack");
236 result.SetStatus(eReturnStatusFailed);
237 return false;
Greg Clayton864174e2010-10-10 22:28:11 +0000238 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000239 else
240 frame_idx = num_frames - 1;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000241 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000242 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000243 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000244 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000245 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000246 if (command.GetArgumentCount() == 1)
247 {
248 const char *frame_idx_cstr = command.GetArgumentAtIndex(0);
Jim Inghamafbb0af2013-11-05 18:25:23 +0000249 bool success = false;
Vince Harron5275aaa2015-01-15 20:08:35 +0000250 frame_idx = StringConvert::ToUInt32 (frame_idx_cstr, UINT32_MAX, 0, &success);
Jim Inghamafbb0af2013-11-05 18:25:23 +0000251 if (!success)
252 {
253 result.AppendErrorWithFormat ("invalid frame index argument '%s'", frame_idx_cstr);
254 result.SetStatus (eReturnStatusFailed);
255 return false;
256 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000257 }
258 else if (command.GetArgumentCount() == 0)
259 {
260 frame_idx = thread->GetSelectedFrameIndex ();
261 if (frame_idx == UINT32_MAX)
262 {
263 frame_idx = 0;
264 }
265 }
266 else
267 {
268 result.AppendError ("invalid arguments.\n");
269 m_options.GenerateOptionUsage (result.GetErrorStream(), this);
270 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000271 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000272
Jim Ingham93208b82013-01-31 21:46:01 +0000273 bool success = thread->SetSelectedFrameByIndexNoisily (frame_idx, result.GetOutputStream());
Greg Claytonf9fc6092013-01-09 19:44:40 +0000274 if (success)
275 {
276 m_exe_ctx.SetFrameSP(thread->GetSelectedFrame ());
Jim Ingham93208b82013-01-31 21:46:01 +0000277 result.SetStatus (eReturnStatusSuccessFinishResult);
Greg Claytonf9fc6092013-01-09 19:44:40 +0000278 }
Jim Ingham93208b82013-01-31 21:46:01 +0000279 else
280 {
281 result.AppendErrorWithFormat ("Frame index (%u) out of range.\n", frame_idx);
282 result.SetStatus (eReturnStatusFailed);
283 }
284
285 return result.Succeeded();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000286 }
Greg Clayton864174e2010-10-10 22:28:11 +0000287protected:
288
289 CommandOptions m_options;
290};
291
Greg Claytone0d378b2011-03-24 21:19:54 +0000292OptionDefinition
Greg Clayton864174e2010-10-10 22:28:11 +0000293CommandObjectFrameSelect::CommandOptions::g_option_table[] =
294{
Zachary Turnerd37221d2014-07-09 16:31:49 +0000295{ LLDB_OPT_SET_1, false, "relative", 'r', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeOffset, "A relative frame index offset from the current frame index."},
296{ 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000297};
298
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000299#pragma mark CommandObjectFrameVariable
300//----------------------------------------------------------------------
301// List images with associated information
302//----------------------------------------------------------------------
Jim Ingham5a988412012-06-08 21:56:10 +0000303class CommandObjectFrameVariable : public CommandObjectParsed
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000304{
305public:
306
Greg Claytona7015092010-09-18 01:14:36 +0000307 CommandObjectFrameVariable (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +0000308 CommandObjectParsed (interpreter,
309 "frame variable",
310 "Show frame variables. All argument and local variables "
311 "that are in scope will be shown when no arguments are given. "
312 "If any arguments are specified, they can be names of "
313 "argument, local, file static and file global variables. "
314 "Children of aggregate variables can be specified such as "
315 "'var->child.x'.",
316 NULL,
Enrico Granatae87764f2015-05-27 05:04:35 +0000317 eCommandRequiresFrame |
318 eCommandTryTargetAPILock |
319 eCommandProcessMustBeLaunched |
320 eCommandProcessMustBePaused |
321 eCommandRequiresProcess),
Jim Ingham2837b762011-05-04 03:43:18 +0000322 m_option_group (interpreter),
Greg Clayton715c2362011-07-07 04:38:25 +0000323 m_option_variable(true), // Include the frame specific options by passing "true"
Greg Clayton1deb7962011-10-25 06:44:01 +0000324 m_option_format (eFormatDefault),
Jim Ingham2837b762011-05-04 03:43:18 +0000325 m_varobj_options()
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000326 {
Caroline Tice405fe672010-10-04 22:28:36 +0000327 CommandArgumentEntry arg;
328 CommandArgumentData var_name_arg;
329
330 // Define the first (and only) variant of this arg.
331 var_name_arg.arg_type = eArgTypeVarName;
332 var_name_arg.arg_repetition = eArgRepeatStar;
333
334 // There is only one variant this argument could be; put it into the argument entry.
335 arg.push_back (var_name_arg);
336
337 // Push the data for the first argument into the m_arguments vector.
338 m_arguments.push_back (arg);
Jim Ingham2837b762011-05-04 03:43:18 +0000339
Greg Clayton715c2362011-07-07 04:38:25 +0000340 m_option_group.Append (&m_option_variable, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton5009f9d2011-10-27 17:55:14 +0000341 m_option_group.Append (&m_option_format, OptionGroupFormat::OPTION_GROUP_FORMAT | OptionGroupFormat::OPTION_GROUP_GDB_FMT, LLDB_OPT_SET_1);
Jim Ingham2837b762011-05-04 03:43:18 +0000342 m_option_group.Append (&m_varobj_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
343 m_option_group.Finalize();
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000344 }
345
346 virtual
347 ~CommandObjectFrameVariable ()
348 {
349 }
350
351 virtual
352 Options *
353 GetOptions ()
354 {
Jim Ingham2837b762011-05-04 03:43:18 +0000355 return &m_option_group;
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000356 }
Greg Claytonf21fead2013-05-14 23:43:18 +0000357
358
359 virtual int
360 HandleArgumentCompletion (Args &input,
361 int &cursor_index,
362 int &cursor_char_position,
363 OptionElementVector &opt_element_vector,
364 int match_start_point,
365 int max_return_elements,
366 bool &word_complete,
367 StringList &matches)
368 {
369 // Arguments are the standard source file completer.
370 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
371 completion_str.erase (cursor_char_position);
372
373 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
374 CommandCompletions::eVariablePathCompletion,
375 completion_str.c_str(),
376 match_start_point,
377 max_return_elements,
378 NULL,
379 word_complete,
380 matches);
381 return matches.GetSize();
382 }
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000383
Jim Ingham5a988412012-06-08 21:56:10 +0000384protected:
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000385 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +0000386 DoExecute (Args& command, CommandReturnObject &result)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000387 {
Enrico Granatae87764f2015-05-27 05:04:35 +0000388 // No need to check "frame" for validity as eCommandRequiresFrame ensures it is valid
Jason Molendab57e4a12013-11-04 09:33:30 +0000389 StackFrame *frame = m_exe_ctx.GetFramePtr();
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000390
391 Stream &s = result.GetOutputStream();
392
393 bool get_file_globals = true;
394
395 // Be careful about the stack frame, if any summary formatter runs code, it might clear the StackFrameList
396 // for the thread. So hold onto a shared pointer to the frame so it stays alive.
397
Greg Claytonc14ee322011-09-22 04:58:26 +0000398 VariableList *variable_list = frame->GetVariableList (get_file_globals);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000399
400 VariableSP var_sp;
401 ValueObjectSP valobj_sp;
402
403 const char *name_cstr = NULL;
404 size_t idx;
405
Enrico Granata061858c2012-02-15 02:34:21 +0000406 TypeSummaryImplSP summary_format_sp;
Enrico Granata17b11742012-08-09 22:02:51 +0000407 if (!m_option_variable.summary.IsCurrentValueEmpty())
408 DataVisualization::NamedSummaryFormats::GetSummaryFormat(ConstString(m_option_variable.summary.GetCurrentValue()), summary_format_sp);
409 else if (!m_option_variable.summary_string.IsCurrentValueEmpty())
410 summary_format_sp.reset(new StringSummaryFormat(TypeSummaryImpl::Flags(),m_option_variable.summary_string.GetCurrentValue()));
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000411
Enrico Granata4d93b8c2013-09-30 19:11:51 +0000412 DumpValueObjectOptions options(m_varobj_options.GetAsDumpOptions(eLanguageRuntimeDescriptionDisplayVerbosityFull,eFormatDefault,summary_format_sp));
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000413
414 if (variable_list)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000415 {
Greg Clayton1deb7962011-10-25 06:44:01 +0000416 const Format format = m_option_format.GetFormat();
Enrico Granata0c489f52012-03-01 04:24:26 +0000417 options.SetFormat(format);
Greg Clayton1deb7962011-10-25 06:44:01 +0000418
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000419 if (command.GetArgumentCount() > 0)
420 {
421 VariableList regex_var_list;
422
423 // If we have any args to the variable command, we will make
424 // variable objects from them...
425 for (idx = 0; (name_cstr = command.GetArgumentAtIndex(idx)) != NULL; ++idx)
426 {
427 if (m_option_variable.use_regex)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000428 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000429 const size_t regex_start_index = regex_var_list.GetSize();
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000430 RegularExpression regex (name_cstr);
431 if (regex.Compile(name_cstr))
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000432 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000433 size_t num_matches = 0;
434 const size_t num_new_regex_vars = variable_list->AppendVariablesIfUnique(regex,
435 regex_var_list,
436 num_matches);
437 if (num_new_regex_vars > 0)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000438 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000439 for (size_t regex_idx = regex_start_index, end_index = regex_var_list.GetSize();
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000440 regex_idx < end_index;
441 ++regex_idx)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000442 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000443 var_sp = regex_var_list.GetVariableAtIndex (regex_idx);
444 if (var_sp)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000445 {
Greg Claytonc14ee322011-09-22 04:58:26 +0000446 valobj_sp = frame->GetValueObjectForFrameVariable (var_sp, m_varobj_options.use_dynamic);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000447 if (valobj_sp)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000448 {
Greg Clayton6efba4f2012-01-26 21:08:30 +0000449// if (format != eFormatDefault)
450// valobj_sp->SetFormat (format);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000451
452 if (m_option_variable.show_decl && var_sp->GetDeclaration ().GetFile())
453 {
454 bool show_fullpaths = false;
455 bool show_module = true;
456 if (var_sp->DumpDeclaration(&s, show_fullpaths, show_module))
457 s.PutCString (": ");
Greg Clayton46747022010-10-10 23:55:27 +0000458 }
Enrico Granata4d93b8c2013-09-30 19:11:51 +0000459 valobj_sp->Dump(result.GetOutputStream(),options);
Greg Clayton46747022010-10-10 23:55:27 +0000460 }
461 }
462 }
Greg Clayton46747022010-10-10 23:55:27 +0000463 }
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000464 else if (num_matches == 0)
Greg Clayton46747022010-10-10 23:55:27 +0000465 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000466 result.GetErrorStream().Printf ("error: no variables matched the regular expression '%s'.\n", name_cstr);
Greg Clayton46747022010-10-10 23:55:27 +0000467 }
468 }
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000469 else
Greg Clayton46747022010-10-10 23:55:27 +0000470 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000471 char regex_error[1024];
472 if (regex.GetErrorAsCString(regex_error, sizeof(regex_error)))
473 result.GetErrorStream().Printf ("error: %s\n", regex_error);
Greg Clayton46747022010-10-10 23:55:27 +0000474 else
Sylvestre Ledruf6102892014-08-11 18:06:28 +0000475 result.GetErrorStream().Printf ("error: unknown regex error when compiling '%s'\n", name_cstr);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000476 }
477 }
478 else // No regex, either exact variable names or variable expressions.
479 {
480 Error error;
Jason Molendab57e4a12013-11-04 09:33:30 +0000481 uint32_t expr_path_options = StackFrame::eExpressionPathOptionCheckPtrVsMember |
482 StackFrame::eExpressionPathOptionsAllowDirectIVarAccess;
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000483 lldb::VariableSP var_sp;
Greg Claytonc14ee322011-09-22 04:58:26 +0000484 valobj_sp = frame->GetValueForVariableExpressionPath (name_cstr,
485 m_varobj_options.use_dynamic,
486 expr_path_options,
487 var_sp,
488 error);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000489 if (valobj_sp)
490 {
Greg Clayton6efba4f2012-01-26 21:08:30 +0000491// if (format != eFormatDefault)
492// valobj_sp->SetFormat (format);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000493 if (m_option_variable.show_decl && var_sp && var_sp->GetDeclaration ().GetFile())
Greg Clayton46747022010-10-10 23:55:27 +0000494 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000495 var_sp->GetDeclaration ().DumpStopContext (&s, false);
496 s.PutCString (": ");
Greg Clayton46747022010-10-10 23:55:27 +0000497 }
Enrico Granata0c489f52012-03-01 04:24:26 +0000498
499 options.SetFormat(format);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000500
501 Stream &output_stream = result.GetOutputStream();
Enrico Granata0c489f52012-03-01 04:24:26 +0000502 options.SetRootValueObjectName(valobj_sp->GetParent() ? name_cstr : NULL);
Enrico Granata4d93b8c2013-09-30 19:11:51 +0000503 valobj_sp->Dump(output_stream,options);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000504 }
505 else
506 {
507 const char *error_cstr = error.AsCString(NULL);
508 if (error_cstr)
509 result.GetErrorStream().Printf("error: %s\n", error_cstr);
510 else
511 result.GetErrorStream().Printf ("error: unable to find any variable expression path that matches '%s'\n", name_cstr);
Greg Clayton9df87c12010-09-13 03:44:33 +0000512 }
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000513 }
514 }
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000515 }
516 else // No command arg specified. Use variable_list, instead.
517 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000518 const size_t num_variables = variable_list->GetSize();
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000519 if (num_variables > 0)
Greg Clayton9df87c12010-09-13 03:44:33 +0000520 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000521 for (size_t i=0; i<num_variables; i++)
Greg Clayton9df87c12010-09-13 03:44:33 +0000522 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000523 var_sp = variable_list->GetVariableAtIndex(i);
524 bool dump_variable = true;
Enrico Granata560558e2015-02-11 02:35:39 +0000525 std::string scope_string;
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000526 switch (var_sp->GetScope())
Greg Clayton9df87c12010-09-13 03:44:33 +0000527 {
Greg Clayton9df87c12010-09-13 03:44:33 +0000528 case eValueTypeVariableGlobal:
Greg Clayton715c2362011-07-07 04:38:25 +0000529 dump_variable = m_option_variable.show_globals;
530 if (dump_variable && m_option_variable.show_scope)
Enrico Granata560558e2015-02-11 02:35:39 +0000531 scope_string = "GLOBAL: ";
Greg Clayton9df87c12010-09-13 03:44:33 +0000532 break;
533
534 case eValueTypeVariableStatic:
Greg Clayton715c2362011-07-07 04:38:25 +0000535 dump_variable = m_option_variable.show_globals;
536 if (dump_variable && m_option_variable.show_scope)
Enrico Granata560558e2015-02-11 02:35:39 +0000537 scope_string = "STATIC: ";
Greg Clayton9df87c12010-09-13 03:44:33 +0000538 break;
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000539
Greg Clayton9df87c12010-09-13 03:44:33 +0000540 case eValueTypeVariableArgument:
Greg Clayton715c2362011-07-07 04:38:25 +0000541 dump_variable = m_option_variable.show_args;
542 if (dump_variable && m_option_variable.show_scope)
Enrico Granata560558e2015-02-11 02:35:39 +0000543 scope_string = " ARG: ";
Greg Clayton9df87c12010-09-13 03:44:33 +0000544 break;
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000545
Greg Clayton9df87c12010-09-13 03:44:33 +0000546 case eValueTypeVariableLocal:
Greg Clayton715c2362011-07-07 04:38:25 +0000547 dump_variable = m_option_variable.show_locals;
548 if (dump_variable && m_option_variable.show_scope)
Enrico Granata560558e2015-02-11 02:35:39 +0000549 scope_string = " LOCAL: ";
Greg Clayton9df87c12010-09-13 03:44:33 +0000550 break;
551
552 default:
553 break;
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000554 }
Greg Clayton9df87c12010-09-13 03:44:33 +0000555
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000556 if (dump_variable)
557 {
558 // Use the variable object code to make sure we are
559 // using the same APIs as the the public API will be
560 // using...
Greg Claytonc14ee322011-09-22 04:58:26 +0000561 valobj_sp = frame->GetValueObjectForFrameVariable (var_sp,
562 m_varobj_options.use_dynamic);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000563 if (valobj_sp)
564 {
Greg Clayton6efba4f2012-01-26 21:08:30 +0000565// if (format != eFormatDefault)
566// valobj_sp->SetFormat (format);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000567
568 // When dumping all variables, don't print any variables
569 // that are not in scope to avoid extra unneeded output
570 if (valobj_sp->IsInScope ())
Greg Clayton9df87c12010-09-13 03:44:33 +0000571 {
Enrico Granata560558e2015-02-11 02:35:39 +0000572 if (false == valobj_sp->GetTargetSP()->GetDisplayRuntimeSupportValues() &&
573 true == valobj_sp->IsRuntimeSupportValue())
574 continue;
575
576 if (!scope_string.empty())
577 s.PutCString(scope_string.c_str());
578
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000579 if (m_option_variable.show_decl && var_sp->GetDeclaration ().GetFile())
Greg Clayton9df87c12010-09-13 03:44:33 +0000580 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000581 var_sp->GetDeclaration ().DumpStopContext (&s, false);
582 s.PutCString (": ");
Greg Clayton6f00abd2010-09-14 03:16:58 +0000583 }
Enrico Granata0c489f52012-03-01 04:24:26 +0000584
585 options.SetFormat(format);
586 options.SetRootValueObjectName(name_cstr);
Enrico Granata4d93b8c2013-09-30 19:11:51 +0000587 valobj_sp->Dump(result.GetOutputStream(),options);
Greg Clayton9df87c12010-09-13 03:44:33 +0000588 }
589 }
590 }
591 }
592 }
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000593 }
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000594 result.SetStatus (eReturnStatusSuccessFinishResult);
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000595 }
Enrico Granata61a80ba2011-08-12 16:42:31 +0000596
597 if (m_interpreter.TruncationWarningNecessary())
598 {
599 result.GetOutputStream().Printf(m_interpreter.TruncationWarningText(),
600 m_cmd_name.c_str());
601 m_interpreter.TruncationWarningGiven();
602 }
603
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000604 return result.Succeeded();
605 }
606protected:
607
Jim Ingham2837b762011-05-04 03:43:18 +0000608 OptionGroupOptions m_option_group;
Greg Clayton715c2362011-07-07 04:38:25 +0000609 OptionGroupVariable m_option_variable;
Greg Clayton1deb7962011-10-25 06:44:01 +0000610 OptionGroupFormat m_option_format;
Jim Ingham2837b762011-05-04 03:43:18 +0000611 OptionGroupValueObjectDisplay m_varobj_options;
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000612};
613
Jim Ingham2837b762011-05-04 03:43:18 +0000614
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000615#pragma mark CommandObjectMultiwordFrame
616
617//-------------------------------------------------------------------------
618// CommandObjectMultiwordFrame
619//-------------------------------------------------------------------------
620
Greg Clayton66111032010-06-23 01:19:29 +0000621CommandObjectMultiwordFrame::CommandObjectMultiwordFrame (CommandInterpreter &interpreter) :
Greg Claytona7015092010-09-18 01:14:36 +0000622 CommandObjectMultiword (interpreter,
623 "frame",
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000624 "A set of commands for operating on the current thread's frames.",
625 "frame <subcommand> [<subcommand-options>]")
626{
Greg Claytona7015092010-09-18 01:14:36 +0000627 LoadSubCommand ("info", CommandObjectSP (new CommandObjectFrameInfo (interpreter)));
628 LoadSubCommand ("select", CommandObjectSP (new CommandObjectFrameSelect (interpreter)));
629 LoadSubCommand ("variable", CommandObjectSP (new CommandObjectFrameVariable (interpreter)));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000630}
631
632CommandObjectMultiwordFrame::~CommandObjectMultiwordFrame ()
633{
634}
635