blob: 45ff2c967196b3170fc015e0be284e17a46a51f4 [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"
Jim Ingham6d56d2c2010-09-02 00:18:39 +000030#include "lldb/Interpreter/Args.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000031#include "lldb/Interpreter/CommandInterpreter.h"
32#include "lldb/Interpreter/CommandReturnObject.h"
Jim Ingham6d56d2c2010-09-02 00:18:39 +000033#include "lldb/Interpreter/Options.h"
Greg Clayton1deb7962011-10-25 06:44:01 +000034#include "lldb/Interpreter/OptionGroupFormat.h"
Jim Ingham2837b762011-05-04 03:43:18 +000035#include "lldb/Interpreter/OptionGroupValueObjectDisplay.h"
Greg Clayton715c2362011-07-07 04:38:25 +000036#include "lldb/Interpreter/OptionGroupVariable.h"
Jim Ingham6d56d2c2010-09-02 00:18:39 +000037#include "lldb/Symbol/ClangASTType.h"
38#include "lldb/Symbol/ClangASTContext.h"
39#include "lldb/Symbol/ObjectFile.h"
40#include "lldb/Symbol/SymbolContext.h"
41#include "lldb/Symbol/Type.h"
42#include "lldb/Symbol/Variable.h"
43#include "lldb/Symbol/VariableList.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000044#include "lldb/Target/Process.h"
Jason Molendab57e4a12013-11-04 09:33:30 +000045#include "lldb/Target/StackFrame.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000046#include "lldb/Target/Thread.h"
Jim Ingham6d56d2c2010-09-02 00:18:39 +000047#include "lldb/Target/Target.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000048
Chris Lattner30fdc8d2010-06-08 16:52:24 +000049using namespace lldb;
50using namespace lldb_private;
51
52#pragma mark CommandObjectFrameInfo
53
54//-------------------------------------------------------------------------
55// CommandObjectFrameInfo
56//-------------------------------------------------------------------------
57
Jim Ingham5a988412012-06-08 21:56:10 +000058class CommandObjectFrameInfo : public CommandObjectParsed
Chris Lattner30fdc8d2010-06-08 16:52:24 +000059{
60public:
61
Greg Claytona7015092010-09-18 01:14:36 +000062 CommandObjectFrameInfo (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +000063 CommandObjectParsed (interpreter,
64 "frame info",
65 "List information about the currently selected frame in the current thread.",
66 "frame info",
Greg Claytonf9fc6092013-01-09 19:44:40 +000067 eFlagRequiresFrame |
68 eFlagTryTargetAPILock |
69 eFlagProcessMustBeLaunched |
70 eFlagProcessMustBePaused )
Chris Lattner30fdc8d2010-06-08 16:52:24 +000071 {
72 }
73
74 ~CommandObjectFrameInfo ()
75 {
76 }
77
Jim Ingham5a988412012-06-08 21:56:10 +000078protected:
Chris Lattner30fdc8d2010-06-08 16:52:24 +000079 bool
Greg Claytonf9fc6092013-01-09 19:44:40 +000080 DoExecute (Args& command, CommandReturnObject &result)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000081 {
Greg Claytonf9fc6092013-01-09 19:44:40 +000082 m_exe_ctx.GetFrameRef().DumpUsingSettingsFormat (&result.GetOutputStream());
83 result.SetStatus (eReturnStatusSuccessFinishResult);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000084 return result.Succeeded();
85 }
86};
87
88#pragma mark CommandObjectFrameSelect
89
90//-------------------------------------------------------------------------
91// CommandObjectFrameSelect
92//-------------------------------------------------------------------------
93
Jim Ingham5a988412012-06-08 21:56:10 +000094class CommandObjectFrameSelect : public CommandObjectParsed
Chris Lattner30fdc8d2010-06-08 16:52:24 +000095{
96public:
97
Greg Clayton864174e2010-10-10 22:28:11 +000098 class CommandOptions : public Options
99 {
100 public:
101
Greg Claytoneb0103f2011-04-07 22:46:35 +0000102 CommandOptions (CommandInterpreter &interpreter) :
Johnny Chenf16066e2011-04-08 22:39:17 +0000103 Options(interpreter)
Greg Clayton864174e2010-10-10 22:28:11 +0000104 {
Greg Claytonf6b8b582011-04-13 00:18:08 +0000105 OptionParsingStarting ();
Greg Clayton864174e2010-10-10 22:28:11 +0000106 }
107
108 virtual
109 ~CommandOptions ()
110 {
111 }
112
113 virtual Error
Greg Claytonf6b8b582011-04-13 00:18:08 +0000114 SetOptionValue (uint32_t option_idx, const char *option_arg)
Greg Clayton864174e2010-10-10 22:28:11 +0000115 {
116 Error error;
117 bool success = false;
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000118 const int short_option = m_getopt_table[option_idx].val;
Greg Clayton864174e2010-10-10 22:28:11 +0000119 switch (short_option)
120 {
121 case 'r':
122 relative_frame_offset = Args::StringToSInt32 (option_arg, INT32_MIN, 0, &success);
123 if (!success)
Greg Clayton86edbf42011-10-26 00:56:27 +0000124 error.SetErrorStringWithFormat ("invalid frame offset argument '%s'", option_arg);
Greg Clayton864174e2010-10-10 22:28:11 +0000125 break;
126
127 default:
Greg Clayton86edbf42011-10-26 00:56:27 +0000128 error.SetErrorStringWithFormat ("invalid short option character '%c'", short_option);
Greg Clayton864174e2010-10-10 22:28:11 +0000129 break;
130 }
131
132 return error;
133 }
134
135 void
Greg Claytonf6b8b582011-04-13 00:18:08 +0000136 OptionParsingStarting ()
Greg Clayton864174e2010-10-10 22:28:11 +0000137 {
Greg Clayton864174e2010-10-10 22:28:11 +0000138 relative_frame_offset = INT32_MIN;
139 }
140
Greg Claytone0d378b2011-03-24 21:19:54 +0000141 const OptionDefinition*
Greg Clayton864174e2010-10-10 22:28:11 +0000142 GetDefinitions ()
143 {
144 return g_option_table;
145 }
146
147 // Options table: Required for subclasses of Options.
148
Greg Claytone0d378b2011-03-24 21:19:54 +0000149 static OptionDefinition g_option_table[];
Greg Clayton864174e2010-10-10 22:28:11 +0000150 int32_t relative_frame_offset;
151 };
152
Greg Claytona7015092010-09-18 01:14:36 +0000153 CommandObjectFrameSelect (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +0000154 CommandObjectParsed (interpreter,
155 "frame select",
156 "Select a frame by index from within the current thread and make it the current frame.",
157 NULL,
Greg Claytonf9fc6092013-01-09 19:44:40 +0000158 eFlagRequiresThread |
159 eFlagTryTargetAPILock |
160 eFlagProcessMustBeLaunched |
161 eFlagProcessMustBePaused ),
Greg Claytoneb0103f2011-04-07 22:46:35 +0000162 m_options (interpreter)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000163 {
Caroline Tice405fe672010-10-04 22:28:36 +0000164 CommandArgumentEntry arg;
165 CommandArgumentData index_arg;
166
167 // Define the first (and only) variant of this arg.
168 index_arg.arg_type = eArgTypeFrameIndex;
Greg Clayton864174e2010-10-10 22:28:11 +0000169 index_arg.arg_repetition = eArgRepeatOptional;
Caroline Tice405fe672010-10-04 22:28:36 +0000170
171 // There is only one variant this argument could be; put it into the argument entry.
172 arg.push_back (index_arg);
173
174 // Push the data for the first argument into the m_arguments vector.
175 m_arguments.push_back (arg);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000176 }
177
178 ~CommandObjectFrameSelect ()
179 {
180 }
181
Greg Clayton864174e2010-10-10 22:28:11 +0000182 virtual
183 Options *
184 GetOptions ()
185 {
186 return &m_options;
187 }
188
189
Jim Ingham5a988412012-06-08 21:56:10 +0000190protected:
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000191 bool
Greg Claytonf9fc6092013-01-09 19:44:40 +0000192 DoExecute (Args& command, CommandReturnObject &result)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000193 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000194 // No need to check "thread" for validity as eFlagRequiresThread ensures it is valid
195 Thread *thread = m_exe_ctx.GetThreadPtr();
196
197 uint32_t frame_idx = UINT32_MAX;
198 if (m_options.relative_frame_offset != INT32_MIN)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000199 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000200 // The one and only argument is a signed relative frame index
201 frame_idx = thread->GetSelectedFrameIndex ();
202 if (frame_idx == UINT32_MAX)
203 frame_idx = 0;
204
205 if (m_options.relative_frame_offset < 0)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000206 {
Saleem Abdulrasool3985c8c2014-04-02 03:51:35 +0000207 if (static_cast<int32_t>(frame_idx) >= -m_options.relative_frame_offset)
Greg Claytonf9fc6092013-01-09 19:44:40 +0000208 frame_idx += m_options.relative_frame_offset;
Greg Clayton864174e2010-10-10 22:28:11 +0000209 else
210 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000211 if (frame_idx == 0)
212 {
213 //If you are already at the bottom of the stack, then just warn and don't reset the frame.
214 result.AppendError("Already at the bottom of the stack");
215 result.SetStatus(eReturnStatusFailed);
216 return false;
217 }
218 else
219 frame_idx = 0;
Greg Clayton864174e2010-10-10 22:28:11 +0000220 }
221 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000222 else if (m_options.relative_frame_offset > 0)
Greg Clayton864174e2010-10-10 22:28:11 +0000223 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000224 // I don't want "up 20" where "20" takes you past the top of the stack to produce
225 // an error, but rather to just go to the top. So I have to count the stack here...
226 const uint32_t num_frames = thread->GetStackFrameCount();
Saleem Abdulrasool3985c8c2014-04-02 03:51:35 +0000227 if (static_cast<int32_t>(num_frames - frame_idx) > m_options.relative_frame_offset)
Greg Claytonf9fc6092013-01-09 19:44:40 +0000228 frame_idx += m_options.relative_frame_offset;
229 else
Greg Clayton864174e2010-10-10 22:28:11 +0000230 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000231 if (frame_idx == num_frames - 1)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000232 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000233 //If we are already at the top of the stack, just warn and don't reset the frame.
234 result.AppendError("Already at the top of the stack");
235 result.SetStatus(eReturnStatusFailed);
236 return false;
Greg Clayton864174e2010-10-10 22:28:11 +0000237 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000238 else
239 frame_idx = num_frames - 1;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000240 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000241 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000242 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000243 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000244 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000245 if (command.GetArgumentCount() == 1)
246 {
247 const char *frame_idx_cstr = command.GetArgumentAtIndex(0);
Jim Inghamafbb0af2013-11-05 18:25:23 +0000248 bool success = false;
249 frame_idx = Args::StringToUInt32 (frame_idx_cstr, UINT32_MAX, 0, &success);
250 if (!success)
251 {
252 result.AppendErrorWithFormat ("invalid frame index argument '%s'", frame_idx_cstr);
253 result.SetStatus (eReturnStatusFailed);
254 return false;
255 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000256 }
257 else if (command.GetArgumentCount() == 0)
258 {
259 frame_idx = thread->GetSelectedFrameIndex ();
260 if (frame_idx == UINT32_MAX)
261 {
262 frame_idx = 0;
263 }
264 }
265 else
266 {
267 result.AppendError ("invalid arguments.\n");
268 m_options.GenerateOptionUsage (result.GetErrorStream(), this);
269 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000270 }
Greg Claytonf9fc6092013-01-09 19:44:40 +0000271
Jim Ingham93208b82013-01-31 21:46:01 +0000272 bool success = thread->SetSelectedFrameByIndexNoisily (frame_idx, result.GetOutputStream());
Greg Claytonf9fc6092013-01-09 19:44:40 +0000273 if (success)
274 {
275 m_exe_ctx.SetFrameSP(thread->GetSelectedFrame ());
Jim Ingham93208b82013-01-31 21:46:01 +0000276 result.SetStatus (eReturnStatusSuccessFinishResult);
Greg Claytonf9fc6092013-01-09 19:44:40 +0000277 }
Jim Ingham93208b82013-01-31 21:46:01 +0000278 else
279 {
280 result.AppendErrorWithFormat ("Frame index (%u) out of range.\n", frame_idx);
281 result.SetStatus (eReturnStatusFailed);
282 }
283
284 return result.Succeeded();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000285 }
Greg Clayton864174e2010-10-10 22:28:11 +0000286protected:
287
288 CommandOptions m_options;
289};
290
Greg Claytone0d378b2011-03-24 21:19:54 +0000291OptionDefinition
Greg Clayton864174e2010-10-10 22:28:11 +0000292CommandObjectFrameSelect::CommandOptions::g_option_table[] =
293{
Zachary Turnerd37221d2014-07-09 16:31:49 +0000294{ LLDB_OPT_SET_1, false, "relative", 'r', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeOffset, "A relative frame index offset from the current frame index."},
295{ 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000296};
297
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000298#pragma mark CommandObjectFrameVariable
299//----------------------------------------------------------------------
300// List images with associated information
301//----------------------------------------------------------------------
Jim Ingham5a988412012-06-08 21:56:10 +0000302class CommandObjectFrameVariable : public CommandObjectParsed
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000303{
304public:
305
Greg Claytona7015092010-09-18 01:14:36 +0000306 CommandObjectFrameVariable (CommandInterpreter &interpreter) :
Jim Ingham5a988412012-06-08 21:56:10 +0000307 CommandObjectParsed (interpreter,
308 "frame variable",
309 "Show frame variables. All argument and local variables "
310 "that are in scope will be shown when no arguments are given. "
311 "If any arguments are specified, they can be names of "
312 "argument, local, file static and file global variables. "
313 "Children of aggregate variables can be specified such as "
314 "'var->child.x'.",
315 NULL,
Greg Claytonf9fc6092013-01-09 19:44:40 +0000316 eFlagRequiresFrame |
317 eFlagTryTargetAPILock |
318 eFlagProcessMustBeLaunched |
Enrico Granataa6db9332013-02-21 01:29:04 +0000319 eFlagProcessMustBePaused |
320 eFlagRequiresProcess),
Jim Ingham2837b762011-05-04 03:43:18 +0000321 m_option_group (interpreter),
Greg Clayton715c2362011-07-07 04:38:25 +0000322 m_option_variable(true), // Include the frame specific options by passing "true"
Greg Clayton1deb7962011-10-25 06:44:01 +0000323 m_option_format (eFormatDefault),
Jim Ingham2837b762011-05-04 03:43:18 +0000324 m_varobj_options()
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000325 {
Caroline Tice405fe672010-10-04 22:28:36 +0000326 CommandArgumentEntry arg;
327 CommandArgumentData var_name_arg;
328
329 // Define the first (and only) variant of this arg.
330 var_name_arg.arg_type = eArgTypeVarName;
331 var_name_arg.arg_repetition = eArgRepeatStar;
332
333 // There is only one variant this argument could be; put it into the argument entry.
334 arg.push_back (var_name_arg);
335
336 // Push the data for the first argument into the m_arguments vector.
337 m_arguments.push_back (arg);
Jim Ingham2837b762011-05-04 03:43:18 +0000338
Greg Clayton715c2362011-07-07 04:38:25 +0000339 m_option_group.Append (&m_option_variable, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
Greg Clayton5009f9d2011-10-27 17:55:14 +0000340 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 +0000341 m_option_group.Append (&m_varobj_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
342 m_option_group.Finalize();
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000343 }
344
345 virtual
346 ~CommandObjectFrameVariable ()
347 {
348 }
349
350 virtual
351 Options *
352 GetOptions ()
353 {
Jim Ingham2837b762011-05-04 03:43:18 +0000354 return &m_option_group;
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000355 }
Greg Claytonf21fead2013-05-14 23:43:18 +0000356
357
358 virtual int
359 HandleArgumentCompletion (Args &input,
360 int &cursor_index,
361 int &cursor_char_position,
362 OptionElementVector &opt_element_vector,
363 int match_start_point,
364 int max_return_elements,
365 bool &word_complete,
366 StringList &matches)
367 {
368 // Arguments are the standard source file completer.
369 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
370 completion_str.erase (cursor_char_position);
371
372 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
373 CommandCompletions::eVariablePathCompletion,
374 completion_str.c_str(),
375 match_start_point,
376 max_return_elements,
377 NULL,
378 word_complete,
379 matches);
380 return matches.GetSize();
381 }
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000382
Jim Ingham5a988412012-06-08 21:56:10 +0000383protected:
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000384 virtual bool
Jim Ingham5a988412012-06-08 21:56:10 +0000385 DoExecute (Args& command, CommandReturnObject &result)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000386 {
Greg Claytonf9fc6092013-01-09 19:44:40 +0000387 // No need to check "frame" for validity as eFlagRequiresFrame ensures it is valid
Jason Molendab57e4a12013-11-04 09:33:30 +0000388 StackFrame *frame = m_exe_ctx.GetFramePtr();
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000389
390 Stream &s = result.GetOutputStream();
391
392 bool get_file_globals = true;
393
394 // Be careful about the stack frame, if any summary formatter runs code, it might clear the StackFrameList
395 // for the thread. So hold onto a shared pointer to the frame so it stays alive.
396
Greg Claytonc14ee322011-09-22 04:58:26 +0000397 VariableList *variable_list = frame->GetVariableList (get_file_globals);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000398
399 VariableSP var_sp;
400 ValueObjectSP valobj_sp;
401
402 const char *name_cstr = NULL;
403 size_t idx;
404
Enrico Granata061858c2012-02-15 02:34:21 +0000405 TypeSummaryImplSP summary_format_sp;
Enrico Granata17b11742012-08-09 22:02:51 +0000406 if (!m_option_variable.summary.IsCurrentValueEmpty())
407 DataVisualization::NamedSummaryFormats::GetSummaryFormat(ConstString(m_option_variable.summary.GetCurrentValue()), summary_format_sp);
408 else if (!m_option_variable.summary_string.IsCurrentValueEmpty())
409 summary_format_sp.reset(new StringSummaryFormat(TypeSummaryImpl::Flags(),m_option_variable.summary_string.GetCurrentValue()));
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000410
Enrico Granata4d93b8c2013-09-30 19:11:51 +0000411 DumpValueObjectOptions options(m_varobj_options.GetAsDumpOptions(eLanguageRuntimeDescriptionDisplayVerbosityFull,eFormatDefault,summary_format_sp));
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000412
413 if (variable_list)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000414 {
Greg Clayton1deb7962011-10-25 06:44:01 +0000415 const Format format = m_option_format.GetFormat();
Enrico Granata0c489f52012-03-01 04:24:26 +0000416 options.SetFormat(format);
Greg Clayton1deb7962011-10-25 06:44:01 +0000417
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000418 if (command.GetArgumentCount() > 0)
419 {
420 VariableList regex_var_list;
421
422 // If we have any args to the variable command, we will make
423 // variable objects from them...
424 for (idx = 0; (name_cstr = command.GetArgumentAtIndex(idx)) != NULL; ++idx)
425 {
426 if (m_option_variable.use_regex)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000427 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000428 const size_t regex_start_index = regex_var_list.GetSize();
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000429 RegularExpression regex (name_cstr);
430 if (regex.Compile(name_cstr))
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000431 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000432 size_t num_matches = 0;
433 const size_t num_new_regex_vars = variable_list->AppendVariablesIfUnique(regex,
434 regex_var_list,
435 num_matches);
436 if (num_new_regex_vars > 0)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000437 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000438 for (size_t regex_idx = regex_start_index, end_index = regex_var_list.GetSize();
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000439 regex_idx < end_index;
440 ++regex_idx)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000441 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000442 var_sp = regex_var_list.GetVariableAtIndex (regex_idx);
443 if (var_sp)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000444 {
Greg Claytonc14ee322011-09-22 04:58:26 +0000445 valobj_sp = frame->GetValueObjectForFrameVariable (var_sp, m_varobj_options.use_dynamic);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000446 if (valobj_sp)
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000447 {
Greg Clayton6efba4f2012-01-26 21:08:30 +0000448// if (format != eFormatDefault)
449// valobj_sp->SetFormat (format);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000450
451 if (m_option_variable.show_decl && var_sp->GetDeclaration ().GetFile())
452 {
453 bool show_fullpaths = false;
454 bool show_module = true;
455 if (var_sp->DumpDeclaration(&s, show_fullpaths, show_module))
456 s.PutCString (": ");
Greg Clayton46747022010-10-10 23:55:27 +0000457 }
Enrico Granata4d93b8c2013-09-30 19:11:51 +0000458 valobj_sp->Dump(result.GetOutputStream(),options);
Greg Clayton46747022010-10-10 23:55:27 +0000459 }
460 }
461 }
Greg Clayton46747022010-10-10 23:55:27 +0000462 }
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000463 else if (num_matches == 0)
Greg Clayton46747022010-10-10 23:55:27 +0000464 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000465 result.GetErrorStream().Printf ("error: no variables matched the regular expression '%s'.\n", name_cstr);
Greg Clayton46747022010-10-10 23:55:27 +0000466 }
467 }
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000468 else
Greg Clayton46747022010-10-10 23:55:27 +0000469 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000470 char regex_error[1024];
471 if (regex.GetErrorAsCString(regex_error, sizeof(regex_error)))
472 result.GetErrorStream().Printf ("error: %s\n", regex_error);
Greg Clayton46747022010-10-10 23:55:27 +0000473 else
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000474 result.GetErrorStream().Printf ("error: unkown regex error when compiling '%s'\n", name_cstr);
475 }
476 }
477 else // No regex, either exact variable names or variable expressions.
478 {
479 Error error;
Jason Molendab57e4a12013-11-04 09:33:30 +0000480 uint32_t expr_path_options = StackFrame::eExpressionPathOptionCheckPtrVsMember |
481 StackFrame::eExpressionPathOptionsAllowDirectIVarAccess;
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000482 lldb::VariableSP var_sp;
Greg Claytonc14ee322011-09-22 04:58:26 +0000483 valobj_sp = frame->GetValueForVariableExpressionPath (name_cstr,
484 m_varobj_options.use_dynamic,
485 expr_path_options,
486 var_sp,
487 error);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000488 if (valobj_sp)
489 {
Greg Clayton6efba4f2012-01-26 21:08:30 +0000490// if (format != eFormatDefault)
491// valobj_sp->SetFormat (format);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000492 if (m_option_variable.show_decl && var_sp && var_sp->GetDeclaration ().GetFile())
Greg Clayton46747022010-10-10 23:55:27 +0000493 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000494 var_sp->GetDeclaration ().DumpStopContext (&s, false);
495 s.PutCString (": ");
Greg Clayton46747022010-10-10 23:55:27 +0000496 }
Enrico Granata0c489f52012-03-01 04:24:26 +0000497
498 options.SetFormat(format);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000499
500 Stream &output_stream = result.GetOutputStream();
Enrico Granata0c489f52012-03-01 04:24:26 +0000501 options.SetRootValueObjectName(valobj_sp->GetParent() ? name_cstr : NULL);
Enrico Granata4d93b8c2013-09-30 19:11:51 +0000502 valobj_sp->Dump(output_stream,options);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000503 }
504 else
505 {
506 const char *error_cstr = error.AsCString(NULL);
507 if (error_cstr)
508 result.GetErrorStream().Printf("error: %s\n", error_cstr);
509 else
510 result.GetErrorStream().Printf ("error: unable to find any variable expression path that matches '%s'\n", name_cstr);
Greg Clayton9df87c12010-09-13 03:44:33 +0000511 }
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000512 }
513 }
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000514 }
515 else // No command arg specified. Use variable_list, instead.
516 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000517 const size_t num_variables = variable_list->GetSize();
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000518 if (num_variables > 0)
Greg Clayton9df87c12010-09-13 03:44:33 +0000519 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000520 for (size_t i=0; i<num_variables; i++)
Greg Clayton9df87c12010-09-13 03:44:33 +0000521 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000522 var_sp = variable_list->GetVariableAtIndex(i);
523 bool dump_variable = true;
524 switch (var_sp->GetScope())
Greg Clayton9df87c12010-09-13 03:44:33 +0000525 {
Greg Clayton9df87c12010-09-13 03:44:33 +0000526 case eValueTypeVariableGlobal:
Greg Clayton715c2362011-07-07 04:38:25 +0000527 dump_variable = m_option_variable.show_globals;
528 if (dump_variable && m_option_variable.show_scope)
Greg Clayton9df87c12010-09-13 03:44:33 +0000529 s.PutCString("GLOBAL: ");
530 break;
531
532 case eValueTypeVariableStatic:
Greg Clayton715c2362011-07-07 04:38:25 +0000533 dump_variable = m_option_variable.show_globals;
534 if (dump_variable && m_option_variable.show_scope)
Greg Clayton9df87c12010-09-13 03:44:33 +0000535 s.PutCString("STATIC: ");
536 break;
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000537
Greg Clayton9df87c12010-09-13 03:44:33 +0000538 case eValueTypeVariableArgument:
Greg Clayton715c2362011-07-07 04:38:25 +0000539 dump_variable = m_option_variable.show_args;
540 if (dump_variable && m_option_variable.show_scope)
Greg Clayton9df87c12010-09-13 03:44:33 +0000541 s.PutCString(" ARG: ");
542 break;
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000543
Greg Clayton9df87c12010-09-13 03:44:33 +0000544 case eValueTypeVariableLocal:
Greg Clayton715c2362011-07-07 04:38:25 +0000545 dump_variable = m_option_variable.show_locals;
546 if (dump_variable && m_option_variable.show_scope)
Greg Clayton9df87c12010-09-13 03:44:33 +0000547 s.PutCString(" LOCAL: ");
548 break;
549
550 default:
551 break;
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000552 }
Greg Clayton9df87c12010-09-13 03:44:33 +0000553
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000554 if (dump_variable)
555 {
556 // Use the variable object code to make sure we are
557 // using the same APIs as the the public API will be
558 // using...
Greg Claytonc14ee322011-09-22 04:58:26 +0000559 valobj_sp = frame->GetValueObjectForFrameVariable (var_sp,
560 m_varobj_options.use_dynamic);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000561 if (valobj_sp)
562 {
Greg Clayton6efba4f2012-01-26 21:08:30 +0000563// if (format != eFormatDefault)
564// valobj_sp->SetFormat (format);
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000565
566 // When dumping all variables, don't print any variables
567 // that are not in scope to avoid extra unneeded output
568 if (valobj_sp->IsInScope ())
Greg Clayton9df87c12010-09-13 03:44:33 +0000569 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000570 if (m_option_variable.show_decl && var_sp->GetDeclaration ().GetFile())
Greg Clayton9df87c12010-09-13 03:44:33 +0000571 {
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000572 var_sp->GetDeclaration ().DumpStopContext (&s, false);
573 s.PutCString (": ");
Greg Clayton6f00abd2010-09-14 03:16:58 +0000574 }
Enrico Granata0c489f52012-03-01 04:24:26 +0000575
576 options.SetFormat(format);
577 options.SetRootValueObjectName(name_cstr);
Enrico Granata4d93b8c2013-09-30 19:11:51 +0000578 valobj_sp->Dump(result.GetOutputStream(),options);
Greg Clayton9df87c12010-09-13 03:44:33 +0000579 }
580 }
581 }
582 }
583 }
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000584 }
Johnny Chen1e49e5e2011-09-12 23:58:53 +0000585 result.SetStatus (eReturnStatusSuccessFinishResult);
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000586 }
Enrico Granata61a80ba2011-08-12 16:42:31 +0000587
588 if (m_interpreter.TruncationWarningNecessary())
589 {
590 result.GetOutputStream().Printf(m_interpreter.TruncationWarningText(),
591 m_cmd_name.c_str());
592 m_interpreter.TruncationWarningGiven();
593 }
594
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000595 return result.Succeeded();
596 }
597protected:
598
Jim Ingham2837b762011-05-04 03:43:18 +0000599 OptionGroupOptions m_option_group;
Greg Clayton715c2362011-07-07 04:38:25 +0000600 OptionGroupVariable m_option_variable;
Greg Clayton1deb7962011-10-25 06:44:01 +0000601 OptionGroupFormat m_option_format;
Jim Ingham2837b762011-05-04 03:43:18 +0000602 OptionGroupValueObjectDisplay m_varobj_options;
Jim Ingham6d56d2c2010-09-02 00:18:39 +0000603};
604
Jim Ingham2837b762011-05-04 03:43:18 +0000605
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000606#pragma mark CommandObjectMultiwordFrame
607
608//-------------------------------------------------------------------------
609// CommandObjectMultiwordFrame
610//-------------------------------------------------------------------------
611
Greg Clayton66111032010-06-23 01:19:29 +0000612CommandObjectMultiwordFrame::CommandObjectMultiwordFrame (CommandInterpreter &interpreter) :
Greg Claytona7015092010-09-18 01:14:36 +0000613 CommandObjectMultiword (interpreter,
614 "frame",
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000615 "A set of commands for operating on the current thread's frames.",
616 "frame <subcommand> [<subcommand-options>]")
617{
Greg Claytona7015092010-09-18 01:14:36 +0000618 LoadSubCommand ("info", CommandObjectSP (new CommandObjectFrameInfo (interpreter)));
619 LoadSubCommand ("select", CommandObjectSP (new CommandObjectFrameSelect (interpreter)));
620 LoadSubCommand ("variable", CommandObjectSP (new CommandObjectFrameVariable (interpreter)));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000621}
622
623CommandObjectMultiwordFrame::~CommandObjectMultiwordFrame ()
624{
625}
626