blob: 041caf57bd313df42a79a6cb4a181b4491ef966c [file] [log] [blame]
Jim Ingham151c0322015-09-15 21:13:50 +00001//===-- UserExpression.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 <stdio.h>
11#if HAVE_SYS_TYPES_H
Kate Stoneb9c1b512016-09-06 20:57:50 +000012#include <sys/types.h>
Jim Ingham151c0322015-09-15 21:13:50 +000013#endif
14
15#include <cstdlib>
Jim Ingham151c0322015-09-15 21:13:50 +000016#include <map>
Kate Stoneb9c1b512016-09-06 20:57:50 +000017#include <string>
Jim Ingham151c0322015-09-15 21:13:50 +000018
Sean Callanan579e70c2016-03-19 00:03:59 +000019#include "Plugins/ExpressionParser/Clang/ClangPersistentVariables.h"
Jim Ingham151c0322015-09-15 21:13:50 +000020#include "lldb/Core/ConstString.h"
21#include "lldb/Core/Log.h"
22#include "lldb/Core/Module.h"
23#include "lldb/Core/StreamFile.h"
24#include "lldb/Core/StreamString.h"
25#include "lldb/Core/ValueObjectConstResult.h"
Sean Callanan579e70c2016-03-19 00:03:59 +000026#include "lldb/Expression/DiagnosticManager.h"
Jim Ingham151c0322015-09-15 21:13:50 +000027#include "lldb/Expression/ExpressionSourceCode.h"
28#include "lldb/Expression/IRExecutionUnit.h"
29#include "lldb/Expression/IRInterpreter.h"
30#include "lldb/Expression/Materializer.h"
31#include "lldb/Expression/UserExpression.h"
32#include "lldb/Host/HostInfo.h"
33#include "lldb/Symbol/Block.h"
Jim Ingham151c0322015-09-15 21:13:50 +000034#include "lldb/Symbol/Function.h"
35#include "lldb/Symbol/ObjectFile.h"
36#include "lldb/Symbol/SymbolVendor.h"
37#include "lldb/Symbol/Type.h"
Sean Callanan8f1f9a12015-09-30 19:57:57 +000038#include "lldb/Symbol/TypeSystem.h"
Jim Ingham151c0322015-09-15 21:13:50 +000039#include "lldb/Symbol/VariableList.h"
40#include "lldb/Target/ExecutionContext.h"
41#include "lldb/Target/Process.h"
42#include "lldb/Target/StackFrame.h"
43#include "lldb/Target/Target.h"
44#include "lldb/Target/ThreadPlan.h"
45#include "lldb/Target/ThreadPlanCallUserExpression.h"
46
Jim Ingham151c0322015-09-15 21:13:50 +000047using namespace lldb_private;
48
Kate Stoneb9c1b512016-09-06 20:57:50 +000049UserExpression::UserExpression(ExecutionContextScope &exe_scope,
Zachary Turnerc5d7df92016-11-08 04:52:16 +000050 llvm::StringRef expr, llvm::StringRef prefix,
Kate Stoneb9c1b512016-09-06 20:57:50 +000051 lldb::LanguageType language,
52 ResultType desired_type,
53 const EvaluateExpressionOptions &options)
Zachary Turnerc5d7df92016-11-08 04:52:16 +000054 : Expression(exe_scope), m_expr_text(expr), m_expr_prefix(prefix),
55 m_language(language), m_desired_type(desired_type), m_options(options) {}
Kate Stoneb9c1b512016-09-06 20:57:50 +000056
57UserExpression::~UserExpression() {}
58
59void UserExpression::InstallContext(ExecutionContext &exe_ctx) {
60 m_jit_process_wp = exe_ctx.GetProcessSP();
61
62 lldb::StackFrameSP frame_sp = exe_ctx.GetFrameSP();
63
64 if (frame_sp)
65 m_address = frame_sp->GetFrameCodeAddress();
Jim Ingham151c0322015-09-15 21:13:50 +000066}
67
Kate Stoneb9c1b512016-09-06 20:57:50 +000068bool UserExpression::LockAndCheckContext(ExecutionContext &exe_ctx,
69 lldb::TargetSP &target_sp,
70 lldb::ProcessSP &process_sp,
71 lldb::StackFrameSP &frame_sp) {
72 lldb::ProcessSP expected_process_sp = m_jit_process_wp.lock();
73 process_sp = exe_ctx.GetProcessSP();
Jim Ingham151c0322015-09-15 21:13:50 +000074
Kate Stoneb9c1b512016-09-06 20:57:50 +000075 if (process_sp != expected_process_sp)
76 return false;
Jim Ingham151c0322015-09-15 21:13:50 +000077
Kate Stoneb9c1b512016-09-06 20:57:50 +000078 process_sp = exe_ctx.GetProcessSP();
79 target_sp = exe_ctx.GetTargetSP();
80 frame_sp = exe_ctx.GetFrameSP();
Jim Ingham151c0322015-09-15 21:13:50 +000081
Kate Stoneb9c1b512016-09-06 20:57:50 +000082 if (m_address.IsValid()) {
Jim Ingham151c0322015-09-15 21:13:50 +000083 if (!frame_sp)
Kate Stoneb9c1b512016-09-06 20:57:50 +000084 return false;
85 else
86 return (0 == Address::CompareLoadAddress(m_address,
87 frame_sp->GetFrameCodeAddress(),
88 target_sp.get()));
89 }
Jim Ingham151c0322015-09-15 21:13:50 +000090
Kate Stoneb9c1b512016-09-06 20:57:50 +000091 return true;
Jim Ingham151c0322015-09-15 21:13:50 +000092}
93
Kate Stoneb9c1b512016-09-06 20:57:50 +000094bool UserExpression::MatchesContext(ExecutionContext &exe_ctx) {
95 lldb::TargetSP target_sp;
96 lldb::ProcessSP process_sp;
97 lldb::StackFrameSP frame_sp;
Jim Ingham151c0322015-09-15 21:13:50 +000098
Kate Stoneb9c1b512016-09-06 20:57:50 +000099 return LockAndCheckContext(exe_ctx, target_sp, process_sp, frame_sp);
100}
Jim Ingham151c0322015-09-15 21:13:50 +0000101
Kate Stoneb9c1b512016-09-06 20:57:50 +0000102lldb::addr_t UserExpression::GetObjectPointer(lldb::StackFrameSP frame_sp,
103 ConstString &object_name,
104 Error &err) {
105 err.Clear();
Jim Ingham151c0322015-09-15 21:13:50 +0000106
Kate Stoneb9c1b512016-09-06 20:57:50 +0000107 if (!frame_sp) {
108 err.SetErrorStringWithFormat(
109 "Couldn't load '%s' because the context is incomplete",
110 object_name.AsCString());
111 return LLDB_INVALID_ADDRESS;
112 }
Jim Ingham151c0322015-09-15 21:13:50 +0000113
Kate Stoneb9c1b512016-09-06 20:57:50 +0000114 lldb::VariableSP var_sp;
115 lldb::ValueObjectSP valobj_sp;
Jim Ingham151c0322015-09-15 21:13:50 +0000116
Kate Stoneb9c1b512016-09-06 20:57:50 +0000117 valobj_sp = frame_sp->GetValueForVariableExpressionPath(
118 object_name.AsCString(), lldb::eNoDynamicValues,
119 StackFrame::eExpressionPathOptionCheckPtrVsMember |
120 StackFrame::eExpressionPathOptionsNoFragileObjcIvar |
121 StackFrame::eExpressionPathOptionsNoSyntheticChildren |
122 StackFrame::eExpressionPathOptionsNoSyntheticArrayRange,
123 var_sp, err);
Jim Ingham151c0322015-09-15 21:13:50 +0000124
Kate Stoneb9c1b512016-09-06 20:57:50 +0000125 if (!err.Success() || !valobj_sp.get())
126 return LLDB_INVALID_ADDRESS;
Jim Ingham151c0322015-09-15 21:13:50 +0000127
Kate Stoneb9c1b512016-09-06 20:57:50 +0000128 lldb::addr_t ret = valobj_sp->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
Jim Ingham151c0322015-09-15 21:13:50 +0000129
Kate Stoneb9c1b512016-09-06 20:57:50 +0000130 if (ret == LLDB_INVALID_ADDRESS) {
131 err.SetErrorStringWithFormat(
132 "Couldn't load '%s' because its value couldn't be evaluated",
133 object_name.AsCString());
134 return LLDB_INVALID_ADDRESS;
135 }
Dawn Perchik1bbaede2015-10-07 22:01:12 +0000136
Kate Stoneb9c1b512016-09-06 20:57:50 +0000137 return ret;
138}
Jim Ingham151c0322015-09-15 21:13:50 +0000139
Kate Stoneb9c1b512016-09-06 20:57:50 +0000140lldb::ExpressionResults UserExpression::Evaluate(
141 ExecutionContext &exe_ctx, const EvaluateExpressionOptions &options,
Zachary Turnerc5d7df92016-11-08 04:52:16 +0000142 llvm::StringRef expr, llvm::StringRef prefix,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000143 lldb::ValueObjectSP &result_valobj_sp, Error &error, uint32_t line_offset,
144 std::string *fixed_expression, lldb::ModuleSP *jit_module_sp_ptr) {
145 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EXPRESSIONS |
146 LIBLLDB_LOG_STEP));
147
148 lldb_private::ExecutionPolicy execution_policy = options.GetExecutionPolicy();
149 lldb::LanguageType language = options.GetLanguage();
150 const ResultType desired_type = options.DoesCoerceToId()
151 ? UserExpression::eResultTypeId
152 : UserExpression::eResultTypeAny;
153 lldb::ExpressionResults execution_results = lldb::eExpressionSetupError;
154
155 Target *target = exe_ctx.GetTargetPtr();
156 if (!target) {
Jim Ingham151c0322015-09-15 21:13:50 +0000157 if (log)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000158 log->Printf("== [UserExpression::Evaluate] Passed a NULL target, can't "
159 "run expressions.");
Jim Ingham02980822016-11-07 22:47:01 +0000160 error.SetErrorString("expression passed a null target");
Kate Stoneb9c1b512016-09-06 20:57:50 +0000161 return lldb::eExpressionSetupError;
162 }
Jim Ingham151c0322015-09-15 21:13:50 +0000163
Kate Stoneb9c1b512016-09-06 20:57:50 +0000164 Process *process = exe_ctx.GetProcessPtr();
Jim Ingham151c0322015-09-15 21:13:50 +0000165
Kate Stoneb9c1b512016-09-06 20:57:50 +0000166 if (process == NULL || process->GetState() != lldb::eStateStopped) {
167 if (execution_policy == eExecutionPolicyAlways) {
168 if (log)
169 log->Printf("== [UserExpression::Evaluate] Expression may not run, but "
170 "is not constant ==");
171
172 error.SetErrorString("expression needed to run but couldn't");
173
174 return execution_results;
175 }
176 }
177
178 if (process == NULL || !process->CanJIT())
179 execution_policy = eExecutionPolicyNever;
180
181 // We need to set the expression execution thread here, turns out parse can
182 // call functions in the process of
183 // looking up symbols, which will escape the context set by exe_ctx passed to
184 // Execute.
185 lldb::ThreadSP thread_sp = exe_ctx.GetThreadSP();
186 ThreadList::ExpressionExecutionThreadPusher execution_thread_pusher(
187 thread_sp);
188
Zachary Turnerc5d7df92016-11-08 04:52:16 +0000189 llvm::StringRef full_prefix;
190 llvm::StringRef option_prefix(options.GetPrefix());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000191 std::string full_prefix_storage;
Zachary Turnerc5d7df92016-11-08 04:52:16 +0000192 if (!prefix.empty() && !option_prefix.empty()) {
193 full_prefix_storage = prefix;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000194 full_prefix_storage.append(option_prefix);
Zachary Turnerc5d7df92016-11-08 04:52:16 +0000195 full_prefix = full_prefix_storage;
196 } else if (!prefix.empty())
197 full_prefix = prefix;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000198 else
199 full_prefix = option_prefix;
200
201 // If the language was not specified in the expression command,
202 // set it to the language in the target's properties if
203 // specified, else default to the langage for the frame.
204 if (language == lldb::eLanguageTypeUnknown) {
205 if (target->GetLanguage() != lldb::eLanguageTypeUnknown)
206 language = target->GetLanguage();
207 else if (StackFrame *frame = exe_ctx.GetFramePtr())
208 language = frame->GetLanguage();
209 }
210
211 lldb::UserExpressionSP user_expression_sp(
Zachary Turnerc5d7df92016-11-08 04:52:16 +0000212 target->GetUserExpressionForLanguage(expr, full_prefix, language,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000213 desired_type, options, error));
214 if (error.Fail()) {
215 if (log)
216 log->Printf("== [UserExpression::Evaluate] Getting expression: %s ==",
217 error.AsCString());
218 return lldb::eExpressionSetupError;
219 }
220
221 if (log)
222 log->Printf("== [UserExpression::Evaluate] Parsing expression %s ==",
Zachary Turnerc5d7df92016-11-08 04:52:16 +0000223 expr.str().c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000224
225 const bool keep_expression_in_memory = true;
226 const bool generate_debug_info = options.GetGenerateDebugInfo();
227
228 if (options.InvokeCancelCallback(lldb::eExpressionEvaluationParse)) {
229 error.SetErrorString("expression interrupted by callback before parse");
230 result_valobj_sp = ValueObjectConstResult::Create(
231 exe_ctx.GetBestExecutionContextScope(), error);
232 return lldb::eExpressionInterrupted;
233 }
234
235 DiagnosticManager diagnostic_manager;
236
237 bool parse_success =
238 user_expression_sp->Parse(diagnostic_manager, exe_ctx, execution_policy,
239 keep_expression_in_memory, generate_debug_info);
240
241 // Calculate the fixed expression always, since we need it for errors.
242 std::string tmp_fixed_expression;
243 if (fixed_expression == nullptr)
244 fixed_expression = &tmp_fixed_expression;
245
246 const char *fixed_text = user_expression_sp->GetFixedText();
247 if (fixed_text != nullptr)
248 fixed_expression->append(fixed_text);
249
250 // If there is a fixed expression, try to parse it:
251 if (!parse_success) {
252 execution_results = lldb::eExpressionParseError;
253 if (fixed_expression && !fixed_expression->empty() &&
254 options.GetAutoApplyFixIts()) {
255 lldb::UserExpressionSP fixed_expression_sp(
256 target->GetUserExpressionForLanguage(fixed_expression->c_str(),
257 full_prefix, language,
258 desired_type, options, error));
259 DiagnosticManager fixed_diagnostic_manager;
260 parse_success = fixed_expression_sp->Parse(
261 fixed_diagnostic_manager, exe_ctx, execution_policy,
262 keep_expression_in_memory, generate_debug_info);
263 if (parse_success) {
264 diagnostic_manager.Clear();
265 user_expression_sp = fixed_expression_sp;
266 } else {
267 // If the fixed expression failed to parse, don't tell the user about,
268 // that won't help.
269 fixed_expression->clear();
270 }
Jim Ingham151c0322015-09-15 21:13:50 +0000271 }
272
Kate Stoneb9c1b512016-09-06 20:57:50 +0000273 if (!parse_success) {
274 if (!fixed_expression->empty() && target->GetEnableNotifyAboutFixIts()) {
275 error.SetExpressionErrorWithFormat(
276 execution_results,
277 "expression failed to parse, fixed expression suggested:\n %s",
278 fixed_expression->c_str());
279 } else {
280 if (!diagnostic_manager.Diagnostics().size())
281 error.SetExpressionError(execution_results,
282 "expression failed to parse, unknown error");
Jim Ingham151c0322015-09-15 21:13:50 +0000283 else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000284 error.SetExpressionError(execution_results,
285 diagnostic_manager.GetString().c_str());
286 }
Jim Ingham151c0322015-09-15 21:13:50 +0000287 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000288 }
Jim Ingham151c0322015-09-15 21:13:50 +0000289
Kate Stoneb9c1b512016-09-06 20:57:50 +0000290 if (parse_success) {
291 // If a pointer to a lldb::ModuleSP was passed in, return the JIT'ed module
292 // if one was created
293 if (jit_module_sp_ptr)
294 *jit_module_sp_ptr = user_expression_sp->GetJITModule();
295
296 lldb::ExpressionVariableSP expr_result;
297
298 if (execution_policy == eExecutionPolicyNever &&
299 !user_expression_sp->CanInterpret()) {
300 if (log)
301 log->Printf("== [UserExpression::Evaluate] Expression may not run, but "
302 "is not constant ==");
303
304 if (!diagnostic_manager.Diagnostics().size())
305 error.SetExpressionError(lldb::eExpressionSetupError,
306 "expression needed to run but couldn't");
307 } else if (execution_policy == eExecutionPolicyTopLevel) {
308 error.SetError(UserExpression::kNoResult, lldb::eErrorTypeGeneric);
309 return lldb::eExpressionCompleted;
310 } else {
311 if (options.InvokeCancelCallback(lldb::eExpressionEvaluationExecution)) {
312 error.SetExpressionError(
313 lldb::eExpressionInterrupted,
314 "expression interrupted by callback before execution");
315 result_valobj_sp = ValueObjectConstResult::Create(
316 exe_ctx.GetBestExecutionContextScope(), error);
Jim Ingham151c0322015-09-15 21:13:50 +0000317 return lldb::eExpressionInterrupted;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000318 }
Jim Ingham151c0322015-09-15 21:13:50 +0000319
Kate Stoneb9c1b512016-09-06 20:57:50 +0000320 diagnostic_manager.Clear();
Jim Ingham151c0322015-09-15 21:13:50 +0000321
Kate Stoneb9c1b512016-09-06 20:57:50 +0000322 if (log)
323 log->Printf("== [UserExpression::Evaluate] Executing expression ==");
324
325 execution_results =
326 user_expression_sp->Execute(diagnostic_manager, exe_ctx, options,
327 user_expression_sp, expr_result);
328
329 if (execution_results != lldb::eExpressionCompleted) {
330 if (log)
331 log->Printf("== [UserExpression::Evaluate] Execution completed "
332 "abnormally ==");
333
334 if (!diagnostic_manager.Diagnostics().size())
335 error.SetExpressionError(
336 execution_results, "expression failed to execute, unknown error");
337 else
338 error.SetExpressionError(execution_results,
339 diagnostic_manager.GetString().c_str());
340 } else {
341 if (expr_result) {
342 result_valobj_sp = expr_result->GetValueObject();
343
344 if (log)
345 log->Printf("== [UserExpression::Evaluate] Execution completed "
346 "normally with result %s ==",
347 result_valobj_sp->GetValueAsCString());
348 } else {
349 if (log)
350 log->Printf("== [UserExpression::Evaluate] Execution completed "
351 "normally with no result ==");
352
353 error.SetError(UserExpression::kNoResult, lldb::eErrorTypeGeneric);
354 }
355 }
356 }
357 }
358
359 if (options.InvokeCancelCallback(lldb::eExpressionEvaluationComplete)) {
360 error.SetExpressionError(
361 lldb::eExpressionInterrupted,
362 "expression interrupted by callback after complete");
363 return lldb::eExpressionInterrupted;
364 }
365
366 if (result_valobj_sp.get() == NULL) {
367 result_valobj_sp = ValueObjectConstResult::Create(
368 exe_ctx.GetBestExecutionContextScope(), error);
369 }
370
371 return execution_results;
Jim Ingham151c0322015-09-15 21:13:50 +0000372}
Jim Inghamff7ac6a2016-04-12 17:17:35 +0000373
374lldb::ExpressionResults
375UserExpression::Execute(DiagnosticManager &diagnostic_manager,
376 ExecutionContext &exe_ctx,
377 const EvaluateExpressionOptions &options,
378 lldb::UserExpressionSP &shared_ptr_to_me,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000379 lldb::ExpressionVariableSP &result_var) {
380 lldb::ExpressionResults expr_result = DoExecute(
381 diagnostic_manager, exe_ctx, options, shared_ptr_to_me, result_var);
382 Target *target = exe_ctx.GetTargetPtr();
383 if (options.GetResultIsInternal() && result_var && target) {
384 target->GetPersistentExpressionStateForLanguage(m_language)
385 ->RemovePersistentVariable(result_var);
386 }
387 return expr_result;
Jim Inghamff7ac6a2016-04-12 17:17:35 +0000388}