1 //===-- CommandObjectExpression.cpp ---------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "llvm/ADT/StringRef.h"
10 
11 #include "CommandObjectExpression.h"
12 #include "lldb/Core/Debugger.h"
13 #include "lldb/Expression/REPL.h"
14 #include "lldb/Expression/UserExpression.h"
15 #include "lldb/Host/OptionParser.h"
16 #include "lldb/Interpreter/CommandInterpreter.h"
17 #include "lldb/Interpreter/CommandReturnObject.h"
18 #include "lldb/Interpreter/OptionArgParser.h"
19 #include "lldb/Target/Language.h"
20 #include "lldb/Target/Process.h"
21 #include "lldb/Target/StackFrame.h"
22 #include "lldb/Target/Target.h"
23 
24 using namespace lldb;
25 using namespace lldb_private;
26 
CommandOptions()27 CommandObjectExpression::CommandOptions::CommandOptions() : OptionGroup() {}
28 
29 CommandObjectExpression::CommandOptions::~CommandOptions() = default;
30 
31 static constexpr OptionEnumValueElement g_description_verbosity_type[] = {
32     {
33         eLanguageRuntimeDescriptionDisplayVerbosityCompact,
34         "compact",
35         "Only show the description string",
36     },
37     {
38         eLanguageRuntimeDescriptionDisplayVerbosityFull,
39         "full",
40         "Show the full output, including persistent variable's name and type",
41     },
42 };
43 
DescriptionVerbosityTypes()44 static constexpr OptionEnumValues DescriptionVerbosityTypes() {
45   return OptionEnumValues(g_description_verbosity_type);
46 }
47 
48 #define LLDB_OPTIONS_expression
49 #include "CommandOptions.inc"
50 
SetOptionValue(uint32_t option_idx,llvm::StringRef option_arg,ExecutionContext * execution_context)51 Status CommandObjectExpression::CommandOptions::SetOptionValue(
52     uint32_t option_idx, llvm::StringRef option_arg,
53     ExecutionContext *execution_context) {
54   Status error;
55 
56   const int short_option = GetDefinitions()[option_idx].short_option;
57 
58   switch (short_option) {
59   case 'l':
60     language = Language::GetLanguageTypeFromString(option_arg);
61     if (language == eLanguageTypeUnknown)
62       error.SetErrorStringWithFormat(
63           "unknown language type: '%s' for expression",
64           option_arg.str().c_str());
65     break;
66 
67   case 'a': {
68     bool success;
69     bool result;
70     result = OptionArgParser::ToBoolean(option_arg, true, &success);
71     if (!success)
72       error.SetErrorStringWithFormat(
73           "invalid all-threads value setting: \"%s\"",
74           option_arg.str().c_str());
75     else
76       try_all_threads = result;
77   } break;
78 
79   case 'i': {
80     bool success;
81     bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success);
82     if (success)
83       ignore_breakpoints = tmp_value;
84     else
85       error.SetErrorStringWithFormat(
86           "could not convert \"%s\" to a boolean value.",
87           option_arg.str().c_str());
88     break;
89   }
90 
91   case 'j': {
92     bool success;
93     bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success);
94     if (success)
95       allow_jit = tmp_value;
96     else
97       error.SetErrorStringWithFormat(
98           "could not convert \"%s\" to a boolean value.",
99           option_arg.str().c_str());
100     break;
101   }
102 
103   case 't':
104     if (option_arg.getAsInteger(0, timeout)) {
105       timeout = 0;
106       error.SetErrorStringWithFormat("invalid timeout setting \"%s\"",
107                                      option_arg.str().c_str());
108     }
109     break;
110 
111   case 'u': {
112     bool success;
113     bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success);
114     if (success)
115       unwind_on_error = tmp_value;
116     else
117       error.SetErrorStringWithFormat(
118           "could not convert \"%s\" to a boolean value.",
119           option_arg.str().c_str());
120     break;
121   }
122 
123   case 'v':
124     if (option_arg.empty()) {
125       m_verbosity = eLanguageRuntimeDescriptionDisplayVerbosityFull;
126       break;
127     }
128     m_verbosity = (LanguageRuntimeDescriptionDisplayVerbosity)
129         OptionArgParser::ToOptionEnum(
130             option_arg, GetDefinitions()[option_idx].enum_values, 0, error);
131     if (!error.Success())
132       error.SetErrorStringWithFormat(
133           "unrecognized value for description-verbosity '%s'",
134           option_arg.str().c_str());
135     break;
136 
137   case 'g':
138     debug = true;
139     unwind_on_error = false;
140     ignore_breakpoints = false;
141     break;
142 
143   case 'p':
144     top_level = true;
145     break;
146 
147   case 'X': {
148     bool success;
149     bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success);
150     if (success)
151       auto_apply_fixits = tmp_value ? eLazyBoolYes : eLazyBoolNo;
152     else
153       error.SetErrorStringWithFormat(
154           "could not convert \"%s\" to a boolean value.",
155           option_arg.str().c_str());
156     break;
157   }
158 
159   default:
160     llvm_unreachable("Unimplemented option");
161   }
162 
163   return error;
164 }
165 
OptionParsingStarting(ExecutionContext * execution_context)166 void CommandObjectExpression::CommandOptions::OptionParsingStarting(
167     ExecutionContext *execution_context) {
168   auto process_sp =
169       execution_context ? execution_context->GetProcessSP() : ProcessSP();
170   if (process_sp) {
171     ignore_breakpoints = process_sp->GetIgnoreBreakpointsInExpressions();
172     unwind_on_error = process_sp->GetUnwindOnErrorInExpressions();
173   } else {
174     ignore_breakpoints = true;
175     unwind_on_error = true;
176   }
177 
178   show_summary = true;
179   try_all_threads = true;
180   timeout = 0;
181   debug = false;
182   language = eLanguageTypeUnknown;
183   m_verbosity = eLanguageRuntimeDescriptionDisplayVerbosityCompact;
184   auto_apply_fixits = eLazyBoolCalculate;
185   top_level = false;
186   allow_jit = true;
187 }
188 
189 llvm::ArrayRef<OptionDefinition>
GetDefinitions()190 CommandObjectExpression::CommandOptions::GetDefinitions() {
191   return llvm::makeArrayRef(g_expression_options);
192 }
193 
CommandObjectExpression(CommandInterpreter & interpreter)194 CommandObjectExpression::CommandObjectExpression(
195     CommandInterpreter &interpreter)
196     : CommandObjectRaw(interpreter, "expression",
197                        "Evaluate an expression on the current "
198                        "thread.  Displays any returned value "
199                        "with LLDB's default formatting.",
200                        "",
201                        eCommandProcessMustBePaused | eCommandTryTargetAPILock),
202       IOHandlerDelegate(IOHandlerDelegate::Completion::Expression),
203       m_option_group(), m_format_options(eFormatDefault),
204       m_repl_option(LLDB_OPT_SET_1, false, "repl", 'r', "Drop into REPL", false,
205                     true),
206       m_command_options(), m_expr_line_count(0), m_expr_lines() {
207   SetHelpLong(
208       R"(
209 Single and multi-line expressions:
210 
211 )"
212       "    The expression provided on the command line must be a complete expression \
213 with no newlines.  To evaluate a multi-line expression, \
214 hit a return after an empty expression, and lldb will enter the multi-line expression editor. \
215 Hit return on an empty line to end the multi-line expression."
216 
217       R"(
218 
219 Timeouts:
220 
221 )"
222       "    If the expression can be evaluated statically (without running code) then it will be.  \
223 Otherwise, by default the expression will run on the current thread with a short timeout: \
224 currently .25 seconds.  If it doesn't return in that time, the evaluation will be interrupted \
225 and resumed with all threads running.  You can use the -a option to disable retrying on all \
226 threads.  You can use the -t option to set a shorter timeout."
227       R"(
228 
229 User defined variables:
230 
231 )"
232       "    You can define your own variables for convenience or to be used in subsequent expressions.  \
233 You define them the same way you would define variables in C.  If the first character of \
234 your user defined variable is a $, then the variable's value will be available in future \
235 expressions, otherwise it will just be available in the current expression."
236       R"(
237 
238 Continuing evaluation after a breakpoint:
239 
240 )"
241       "    If the \"-i false\" option is used, and execution is interrupted by a breakpoint hit, once \
242 you are done with your investigation, you can either remove the expression execution frames \
243 from the stack with \"thread return -x\" or if you are still interested in the expression result \
244 you can issue the \"continue\" command and the expression evaluation will complete and the \
245 expression result will be available using the \"thread.completed-expression\" key in the thread \
246 format."
247 
248       R"(
249 
250 Examples:
251 
252     expr my_struct->a = my_array[3]
253     expr -f bin -- (index * 8) + 5
254     expr unsigned int $foo = 5
255     expr char c[] = \"foo\"; c[0])");
256 
257   CommandArgumentEntry arg;
258   CommandArgumentData expression_arg;
259 
260   // Define the first (and only) variant of this arg.
261   expression_arg.arg_type = eArgTypeExpression;
262   expression_arg.arg_repetition = eArgRepeatPlain;
263 
264   // There is only one variant this argument could be; put it into the argument
265   // entry.
266   arg.push_back(expression_arg);
267 
268   // Push the data for the first argument into the m_arguments vector.
269   m_arguments.push_back(arg);
270 
271   // Add the "--format" and "--gdb-format"
272   m_option_group.Append(&m_format_options,
273                         OptionGroupFormat::OPTION_GROUP_FORMAT |
274                             OptionGroupFormat::OPTION_GROUP_GDB_FMT,
275                         LLDB_OPT_SET_1);
276   m_option_group.Append(&m_command_options);
277   m_option_group.Append(&m_varobj_options, LLDB_OPT_SET_ALL,
278                         LLDB_OPT_SET_1 | LLDB_OPT_SET_2);
279   m_option_group.Append(&m_repl_option, LLDB_OPT_SET_ALL, LLDB_OPT_SET_3);
280   m_option_group.Finalize();
281 }
282 
283 CommandObjectExpression::~CommandObjectExpression() = default;
284 
GetOptions()285 Options *CommandObjectExpression::GetOptions() { return &m_option_group; }
286 
HandleCompletion(CompletionRequest & request)287 void CommandObjectExpression::HandleCompletion(CompletionRequest &request) {
288   EvaluateExpressionOptions options;
289   options.SetCoerceToId(m_varobj_options.use_objc);
290   options.SetLanguage(m_command_options.language);
291   options.SetExecutionPolicy(lldb_private::eExecutionPolicyNever);
292   options.SetAutoApplyFixIts(false);
293   options.SetGenerateDebugInfo(false);
294 
295   ExecutionContext exe_ctx(m_interpreter.GetExecutionContext());
296 
297   // Get out before we start doing things that expect a valid frame pointer.
298   if (exe_ctx.GetFramePtr() == nullptr)
299     return;
300 
301   Target *exe_target = exe_ctx.GetTargetPtr();
302   Target &target = exe_target ? *exe_target : GetDummyTarget();
303 
304   unsigned cursor_pos = request.GetRawCursorPos();
305   // Get the full user input including the suffix. The suffix is necessary
306   // as OptionsWithRaw will use it to detect if the cursor is cursor is in the
307   // argument part of in the raw input part of the arguments. If we cut of
308   // of the suffix then "expr -arg[cursor] --" would interpret the "-arg" as
309   // the raw input (as the "--" is hidden in the suffix).
310   llvm::StringRef code = request.GetRawLineWithUnusedSuffix();
311 
312   const std::size_t original_code_size = code.size();
313 
314   // Remove the first token which is 'expr' or some alias/abbreviation of that.
315   code = llvm::getToken(code).second.ltrim();
316   OptionsWithRaw args(code);
317   code = args.GetRawPart();
318 
319   // The position where the expression starts in the command line.
320   assert(original_code_size >= code.size());
321   std::size_t raw_start = original_code_size - code.size();
322 
323   // Check if the cursor is actually in the expression string, and if not, we
324   // exit.
325   // FIXME: We should complete the options here.
326   if (cursor_pos < raw_start)
327     return;
328 
329   // Make the cursor_pos again relative to the start of the code string.
330   assert(cursor_pos >= raw_start);
331   cursor_pos -= raw_start;
332 
333   auto language = exe_ctx.GetFrameRef().GetLanguage();
334 
335   Status error;
336   lldb::UserExpressionSP expr(target.GetUserExpressionForLanguage(
337       code, llvm::StringRef(), language, UserExpression::eResultTypeAny,
338       options, nullptr, error));
339   if (error.Fail())
340     return;
341 
342   expr->Complete(exe_ctx, request, cursor_pos);
343 }
344 
345 static lldb_private::Status
CanBeUsedForElementCountPrinting(ValueObject & valobj)346 CanBeUsedForElementCountPrinting(ValueObject &valobj) {
347   CompilerType type(valobj.GetCompilerType());
348   CompilerType pointee;
349   if (!type.IsPointerType(&pointee))
350     return Status("as it does not refer to a pointer");
351   if (pointee.IsVoidType())
352     return Status("as it refers to a pointer to void");
353   return Status();
354 }
355 
356 EvaluateExpressionOptions
GetEvalOptions(const Target & target)357 CommandObjectExpression::GetEvalOptions(const Target &target) {
358   EvaluateExpressionOptions options;
359   options.SetCoerceToId(m_varobj_options.use_objc);
360   options.SetUnwindOnError(m_command_options.unwind_on_error);
361   options.SetIgnoreBreakpoints(m_command_options.ignore_breakpoints);
362   options.SetKeepInMemory(true);
363   options.SetUseDynamic(m_varobj_options.use_dynamic);
364   options.SetTryAllThreads(m_command_options.try_all_threads);
365   options.SetDebug(m_command_options.debug);
366   options.SetLanguage(m_command_options.language);
367   options.SetExecutionPolicy(
368       m_command_options.allow_jit
369           ? EvaluateExpressionOptions::default_execution_policy
370           : lldb_private::eExecutionPolicyNever);
371 
372   bool auto_apply_fixits;
373   if (m_command_options.auto_apply_fixits == eLazyBoolCalculate)
374     auto_apply_fixits = target.GetEnableAutoApplyFixIts();
375   else
376     auto_apply_fixits = m_command_options.auto_apply_fixits == eLazyBoolYes;
377 
378   options.SetAutoApplyFixIts(auto_apply_fixits);
379   options.SetRetriesWithFixIts(target.GetNumberOfRetriesWithFixits());
380 
381   if (m_command_options.top_level)
382     options.SetExecutionPolicy(eExecutionPolicyTopLevel);
383 
384   // If there is any chance we are going to stop and want to see what went
385   // wrong with our expression, we should generate debug info
386   if (!m_command_options.ignore_breakpoints ||
387       !m_command_options.unwind_on_error)
388     options.SetGenerateDebugInfo(true);
389 
390   if (m_command_options.timeout > 0)
391     options.SetTimeout(std::chrono::microseconds(m_command_options.timeout));
392   else
393     options.SetTimeout(llvm::None);
394   return options;
395 }
396 
EvaluateExpression(llvm::StringRef expr,Stream & output_stream,Stream & error_stream,CommandReturnObject & result)397 bool CommandObjectExpression::EvaluateExpression(llvm::StringRef expr,
398                                                  Stream &output_stream,
399                                                  Stream &error_stream,
400                                                  CommandReturnObject &result) {
401   // Don't use m_exe_ctx as this might be called asynchronously after the
402   // command object DoExecute has finished when doing multi-line expression
403   // that use an input reader...
404   ExecutionContext exe_ctx(m_interpreter.GetExecutionContext());
405   Target *exe_target = exe_ctx.GetTargetPtr();
406   Target &target = exe_target ? *exe_target : GetDummyTarget();
407 
408   lldb::ValueObjectSP result_valobj_sp;
409   StackFrame *frame = exe_ctx.GetFramePtr();
410 
411   if (m_command_options.top_level && !m_command_options.allow_jit) {
412     result.AppendErrorWithFormat(
413         "Can't disable JIT compilation for top-level expressions.\n");
414     return false;
415   }
416 
417   const EvaluateExpressionOptions options = GetEvalOptions(target);
418   ExpressionResults success = target.EvaluateExpression(
419       expr, frame, result_valobj_sp, options, &m_fixed_expression);
420 
421   // We only tell you about the FixIt if we applied it.  The compiler errors
422   // will suggest the FixIt if it parsed.
423   if (!m_fixed_expression.empty() && target.GetEnableNotifyAboutFixIts()) {
424     error_stream.Printf("  Fix-it applied, fixed expression was: \n    %s\n",
425                         m_fixed_expression.c_str());
426   }
427 
428   if (result_valobj_sp) {
429     Format format = m_format_options.GetFormat();
430 
431     if (result_valobj_sp->GetError().Success()) {
432       if (format != eFormatVoid) {
433         if (format != eFormatDefault)
434           result_valobj_sp->SetFormat(format);
435 
436         if (m_varobj_options.elem_count > 0) {
437           Status error(CanBeUsedForElementCountPrinting(*result_valobj_sp));
438           if (error.Fail()) {
439             result.AppendErrorWithFormat(
440                 "expression cannot be used with --element-count %s\n",
441                 error.AsCString(""));
442             return false;
443           }
444         }
445 
446         DumpValueObjectOptions options(m_varobj_options.GetAsDumpOptions(
447             m_command_options.m_verbosity, format));
448         options.SetVariableFormatDisplayLanguage(
449             result_valobj_sp->GetPreferredDisplayLanguage());
450 
451         result_valobj_sp->Dump(output_stream, options);
452 
453         result.SetStatus(eReturnStatusSuccessFinishResult);
454       }
455     } else {
456       if (result_valobj_sp->GetError().GetError() ==
457           UserExpression::kNoResult) {
458         if (format != eFormatVoid && GetDebugger().GetNotifyVoid()) {
459           error_stream.PutCString("(void)\n");
460         }
461 
462         result.SetStatus(eReturnStatusSuccessFinishResult);
463       } else {
464         const char *error_cstr = result_valobj_sp->GetError().AsCString();
465         if (error_cstr && error_cstr[0]) {
466           const size_t error_cstr_len = strlen(error_cstr);
467           const bool ends_with_newline = error_cstr[error_cstr_len - 1] == '\n';
468           if (strstr(error_cstr, "error:") != error_cstr)
469             error_stream.PutCString("error: ");
470           error_stream.Write(error_cstr, error_cstr_len);
471           if (!ends_with_newline)
472             error_stream.EOL();
473         } else {
474           error_stream.PutCString("error: unknown error\n");
475         }
476 
477         result.SetStatus(eReturnStatusFailed);
478       }
479     }
480   }
481 
482   return (success != eExpressionSetupError &&
483           success != eExpressionParseError);
484 }
485 
IOHandlerInputComplete(IOHandler & io_handler,std::string & line)486 void CommandObjectExpression::IOHandlerInputComplete(IOHandler &io_handler,
487                                                      std::string &line) {
488   io_handler.SetIsDone(true);
489   //    StreamSP output_stream =
490   //    io_handler.GetDebugger().GetAsyncOutputStream();
491   //    StreamSP error_stream = io_handler.GetDebugger().GetAsyncErrorStream();
492   StreamFileSP output_sp = io_handler.GetOutputStreamFileSP();
493   StreamFileSP error_sp = io_handler.GetErrorStreamFileSP();
494 
495   CommandReturnObject return_obj(
496       GetCommandInterpreter().GetDebugger().GetUseColor());
497   EvaluateExpression(line.c_str(), *output_sp, *error_sp, return_obj);
498   if (output_sp)
499     output_sp->Flush();
500   if (error_sp)
501     error_sp->Flush();
502 }
503 
IOHandlerIsInputComplete(IOHandler & io_handler,StringList & lines)504 bool CommandObjectExpression::IOHandlerIsInputComplete(IOHandler &io_handler,
505                                                        StringList &lines) {
506   // An empty lines is used to indicate the end of input
507   const size_t num_lines = lines.GetSize();
508   if (num_lines > 0 && lines[num_lines - 1].empty()) {
509     // Remove the last empty line from "lines" so it doesn't appear in our
510     // resulting input and return true to indicate we are done getting lines
511     lines.PopBack();
512     return true;
513   }
514   return false;
515 }
516 
GetMultilineExpression()517 void CommandObjectExpression::GetMultilineExpression() {
518   m_expr_lines.clear();
519   m_expr_line_count = 0;
520 
521   Debugger &debugger = GetCommandInterpreter().GetDebugger();
522   bool color_prompt = debugger.GetUseColor();
523   const bool multiple_lines = true; // Get multiple lines
524   IOHandlerSP io_handler_sp(
525       new IOHandlerEditline(debugger, IOHandler::Type::Expression,
526                             "lldb-expr", // Name of input reader for history
527                             llvm::StringRef(), // No prompt
528                             llvm::StringRef(), // Continuation prompt
529                             multiple_lines, color_prompt,
530                             1, // Show line numbers starting at 1
531                             *this, nullptr));
532 
533   StreamFileSP output_sp = io_handler_sp->GetOutputStreamFileSP();
534   if (output_sp) {
535     output_sp->PutCString(
536         "Enter expressions, then terminate with an empty line to evaluate:\n");
537     output_sp->Flush();
538   }
539   debugger.RunIOHandlerAsync(io_handler_sp);
540 }
541 
542 static EvaluateExpressionOptions
GetExprOptions(ExecutionContext & ctx,CommandObjectExpression::CommandOptions command_options)543 GetExprOptions(ExecutionContext &ctx,
544                CommandObjectExpression::CommandOptions command_options) {
545   command_options.OptionParsingStarting(&ctx);
546 
547   // Default certain settings for REPL regardless of the global settings.
548   command_options.unwind_on_error = false;
549   command_options.ignore_breakpoints = false;
550   command_options.debug = false;
551 
552   EvaluateExpressionOptions expr_options;
553   expr_options.SetUnwindOnError(command_options.unwind_on_error);
554   expr_options.SetIgnoreBreakpoints(command_options.ignore_breakpoints);
555   expr_options.SetTryAllThreads(command_options.try_all_threads);
556 
557   if (command_options.timeout > 0)
558     expr_options.SetTimeout(std::chrono::microseconds(command_options.timeout));
559   else
560     expr_options.SetTimeout(llvm::None);
561 
562   return expr_options;
563 }
564 
DoExecute(llvm::StringRef command,CommandReturnObject & result)565 bool CommandObjectExpression::DoExecute(llvm::StringRef command,
566                                         CommandReturnObject &result) {
567   m_fixed_expression.clear();
568   auto exe_ctx = GetCommandInterpreter().GetExecutionContext();
569   m_option_group.NotifyOptionParsingStarting(&exe_ctx);
570 
571   if (command.empty()) {
572     GetMultilineExpression();
573     return result.Succeeded();
574   }
575 
576   OptionsWithRaw args(command);
577   llvm::StringRef expr = args.GetRawPart();
578 
579   if (args.HasArgs()) {
580     if (!ParseOptionsAndNotify(args.GetArgs(), result, m_option_group, exe_ctx))
581       return false;
582 
583     if (m_repl_option.GetOptionValue().GetCurrentValue()) {
584       Target &target = GetSelectedOrDummyTarget();
585       // Drop into REPL
586       m_expr_lines.clear();
587       m_expr_line_count = 0;
588 
589       Debugger &debugger = target.GetDebugger();
590 
591       // Check if the LLDB command interpreter is sitting on top of a REPL
592       // that launched it...
593       if (debugger.CheckTopIOHandlerTypes(IOHandler::Type::CommandInterpreter,
594                                           IOHandler::Type::REPL)) {
595         // the LLDB command interpreter is sitting on top of a REPL that
596         // launched it, so just say the command interpreter is done and
597         // fall back to the existing REPL
598         m_interpreter.GetIOHandler(false)->SetIsDone(true);
599       } else {
600         // We are launching the REPL on top of the current LLDB command
601         // interpreter, so just push one
602         bool initialize = false;
603         Status repl_error;
604         REPLSP repl_sp(target.GetREPL(repl_error, m_command_options.language,
605                                        nullptr, false));
606 
607         if (!repl_sp) {
608           initialize = true;
609           repl_sp = target.GetREPL(repl_error, m_command_options.language,
610                                     nullptr, true);
611           if (!repl_error.Success()) {
612             result.SetError(repl_error);
613             return result.Succeeded();
614           }
615         }
616 
617         if (repl_sp) {
618           if (initialize) {
619             repl_sp->SetEvaluateOptions(
620                 GetExprOptions(exe_ctx, m_command_options));
621             repl_sp->SetFormatOptions(m_format_options);
622             repl_sp->SetValueObjectDisplayOptions(m_varobj_options);
623           }
624 
625           IOHandlerSP io_handler_sp(repl_sp->GetIOHandler());
626           io_handler_sp->SetIsDone(false);
627           debugger.RunIOHandlerAsync(io_handler_sp);
628         } else {
629           repl_error.SetErrorStringWithFormat(
630               "Couldn't create a REPL for %s",
631               Language::GetNameForLanguageType(m_command_options.language));
632           result.SetError(repl_error);
633           return result.Succeeded();
634         }
635       }
636     }
637     // No expression following options
638     else if (expr.empty()) {
639       GetMultilineExpression();
640       return result.Succeeded();
641     }
642   }
643 
644   Target &target = GetSelectedOrDummyTarget();
645   if (EvaluateExpression(expr, result.GetOutputStream(),
646                          result.GetErrorStream(), result)) {
647 
648     if (!m_fixed_expression.empty() && target.GetEnableNotifyAboutFixIts()) {
649       CommandHistory &history = m_interpreter.GetCommandHistory();
650       // FIXME: Can we figure out what the user actually typed (e.g. some alias
651       // for expr???)
652       // If we can it would be nice to show that.
653       std::string fixed_command("expression ");
654       if (args.HasArgs()) {
655         // Add in any options that might have been in the original command:
656         fixed_command.append(std::string(args.GetArgStringWithDelimiter()));
657         fixed_command.append(m_fixed_expression);
658       } else
659         fixed_command.append(m_fixed_expression);
660       history.AppendString(fixed_command);
661     }
662     // Increment statistics to record this expression evaluation success.
663     target.IncrementStats(StatisticKind::ExpressionSuccessful);
664     return true;
665   }
666 
667   // Increment statistics to record this expression evaluation failure.
668   target.IncrementStats(StatisticKind::ExpressionFailure);
669   result.SetStatus(eReturnStatusFailed);
670   return false;
671 }
672