blob: 1acc6ef96e86db03c2a79f208e72bf00a2c3e061 [file] [log] [blame]
Zachary Turnere2411fa2016-11-12 19:12:56 +00001//===-- FunctionCaller.cpp ---------------------------------------*- C++-*-===//
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002//
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
Chris Lattner30fdc8d2010-06-08 16:52:24 +000010// C Includes
11// C++ Includes
12// Other libraries and framework includes
Chris Lattner30fdc8d2010-06-08 16:52:24 +000013
14// Project includes
Sean Callanan579e70c2016-03-19 00:03:59 +000015#include "lldb/Expression/FunctionCaller.h"
Greg Clayton23f8c952014-03-24 23:10:19 +000016#include "lldb/Core/DataExtractor.h"
Greg Clayton23f8c952014-03-24 23:10:19 +000017#include "lldb/Core/Module.h"
18#include "lldb/Core/State.h"
19#include "lldb/Core/ValueObject.h"
20#include "lldb/Core/ValueObjectList.h"
Sean Callanan579e70c2016-03-19 00:03:59 +000021#include "lldb/Expression/DiagnosticManager.h"
Greg Claytone01e07b2013-04-18 18:10:51 +000022#include "lldb/Expression/IRExecutionUnit.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000023#include "lldb/Interpreter/CommandReturnObject.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000024#include "lldb/Symbol/Function.h"
Greg Clayton23f8c952014-03-24 23:10:19 +000025#include "lldb/Symbol/Type.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000026#include "lldb/Target/ExecutionContext.h"
27#include "lldb/Target/Process.h"
Sean Callananebf77072010-07-23 00:16:21 +000028#include "lldb/Target/RegisterContext.h"
Greg Clayton514487e2011-02-15 21:59:32 +000029#include "lldb/Target/Target.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000030#include "lldb/Target/Thread.h"
31#include "lldb/Target/ThreadPlan.h"
32#include "lldb/Target/ThreadPlanCallFunction.h"
Zachary Turner6f9e6902017-03-03 20:56:28 +000033#include "lldb/Utility/Log.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000034
35using namespace lldb_private;
Sean Callanan1a8d4092010-08-27 01:01:44 +000036
Chris Lattner30fdc8d2010-06-08 16:52:24 +000037//----------------------------------------------------------------------
Jim Ingham151c0322015-09-15 21:13:50 +000038// FunctionCaller constructor
Chris Lattner30fdc8d2010-06-08 16:52:24 +000039//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +000040FunctionCaller::FunctionCaller(ExecutionContextScope &exe_scope,
41 const CompilerType &return_type,
42 const Address &functionAddress,
43 const ValueList &arg_value_list,
44 const char *name)
45 : Expression(exe_scope), m_execution_unit_sp(), m_parser(),
46 m_jit_module_wp(), m_name(name ? name : "<unknown>"),
47 m_function_ptr(NULL), m_function_addr(functionAddress),
48 m_function_return_type(return_type),
49 m_wrapper_function_name("__lldb_caller_function"),
50 m_wrapper_struct_name("__lldb_caller_struct"), m_wrapper_args_addrs(),
51 m_arg_values(arg_value_list), m_compiled(false), m_JITted(false) {
52 m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess());
53 // Can't make a FunctionCaller without a process.
54 assert(m_jit_process_wp.lock());
Chris Lattner30fdc8d2010-06-08 16:52:24 +000055}
56
Chris Lattner30fdc8d2010-06-08 16:52:24 +000057//----------------------------------------------------------------------
58// Destructor
59//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +000060FunctionCaller::~FunctionCaller() {
61 lldb::ProcessSP process_sp(m_jit_process_wp.lock());
62 if (process_sp) {
63 lldb::ModuleSP jit_module_sp(m_jit_module_wp.lock());
64 if (jit_module_sp)
65 process_sp->GetTarget().GetImages().Remove(jit_module_sp);
66 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +000067}
68
Kate Stoneb9c1b512016-09-06 20:57:50 +000069bool FunctionCaller::WriteFunctionWrapper(
70 ExecutionContext &exe_ctx, DiagnosticManager &diagnostic_manager) {
71 Process *process = exe_ctx.GetProcessPtr();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000072
Kate Stoneb9c1b512016-09-06 20:57:50 +000073 if (!process)
74 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000075
Kate Stoneb9c1b512016-09-06 20:57:50 +000076 lldb::ProcessSP jit_process_sp(m_jit_process_wp.lock());
Chris Lattner30fdc8d2010-06-08 16:52:24 +000077
Kate Stoneb9c1b512016-09-06 20:57:50 +000078 if (process != jit_process_sp.get())
79 return false;
80
81 if (!m_compiled)
82 return false;
83
84 if (m_JITted)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000085 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000086
Kate Stoneb9c1b512016-09-06 20:57:50 +000087 bool can_interpret = false; // should stay that way
Chris Lattner30fdc8d2010-06-08 16:52:24 +000088
Kate Stoneb9c1b512016-09-06 20:57:50 +000089 Error jit_error(m_parser->PrepareForExecution(
90 m_jit_start_addr, m_jit_end_addr, m_execution_unit_sp, exe_ctx,
91 can_interpret, eExecutionPolicyAlways));
Chris Lattner30fdc8d2010-06-08 16:52:24 +000092
Kate Stoneb9c1b512016-09-06 20:57:50 +000093 if (!jit_error.Success())
94 return false;
95
96 if (m_parser->GetGenerateDebugInfo()) {
97 lldb::ModuleSP jit_module_sp(m_execution_unit_sp->GetJITModule());
98
99 if (jit_module_sp) {
100 ConstString const_func_name(FunctionName());
101 FileSpec jit_file;
102 jit_file.GetFilename() = const_func_name;
103 jit_module_sp->SetFileSpecAndObjectName(jit_file, ConstString());
104 m_jit_module_wp = jit_module_sp;
105 process->GetTarget().GetImages().Append(jit_module_sp);
Sean Callanan1a8d4092010-08-27 01:01:44 +0000106 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000107 }
108 if (process && m_jit_start_addr)
109 m_jit_process_wp = process->shared_from_this();
Sean Callanan579e70c2016-03-19 00:03:59 +0000110
Kate Stoneb9c1b512016-09-06 20:57:50 +0000111 m_JITted = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000112
Kate Stoneb9c1b512016-09-06 20:57:50 +0000113 return true;
114}
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000115
Kate Stoneb9c1b512016-09-06 20:57:50 +0000116bool FunctionCaller::WriteFunctionArguments(
117 ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref,
118 DiagnosticManager &diagnostic_manager) {
119 return WriteFunctionArguments(exe_ctx, args_addr_ref, m_arg_values,
120 diagnostic_manager);
121}
Jim Ingham35944dd2011-03-17 20:02:56 +0000122
Kate Stoneb9c1b512016-09-06 20:57:50 +0000123// FIXME: Assure that the ValueList we were passed in is consistent with the one
124// that defined this function.
125
126bool FunctionCaller::WriteFunctionArguments(
127 ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref,
128 ValueList &arg_values, DiagnosticManager &diagnostic_manager) {
129 // All the information to reconstruct the struct is provided by the
130 // StructExtractor.
131 if (!m_struct_valid) {
Zachary Turnere2411fa2016-11-12 19:12:56 +0000132 diagnostic_manager.PutString(eDiagnosticSeverityError,
133 "Argument information was not correctly "
134 "parsed, so the function cannot be called.");
Kate Stoneb9c1b512016-09-06 20:57:50 +0000135 return false;
136 }
137
138 Error error;
139 lldb::ExpressionResults return_value = lldb::eExpressionSetupError;
140
141 Process *process = exe_ctx.GetProcessPtr();
142
143 if (process == NULL)
144 return return_value;
145
146 lldb::ProcessSP jit_process_sp(m_jit_process_wp.lock());
147
148 if (process != jit_process_sp.get())
149 return false;
150
151 if (args_addr_ref == LLDB_INVALID_ADDRESS) {
152 args_addr_ref = process->AllocateMemory(
153 m_struct_size, lldb::ePermissionsReadable | lldb::ePermissionsWritable,
154 error);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000155 if (args_addr_ref == LLDB_INVALID_ADDRESS)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000156 return false;
157 m_wrapper_args_addrs.push_back(args_addr_ref);
158 } else {
159 // Make sure this is an address that we've already handed out.
160 if (find(m_wrapper_args_addrs.begin(), m_wrapper_args_addrs.end(),
161 args_addr_ref) == m_wrapper_args_addrs.end()) {
162 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000163 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000164 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000165
Kate Stoneb9c1b512016-09-06 20:57:50 +0000166 // TODO: verify fun_addr needs to be a callable address
167 Scalar fun_addr(
168 m_function_addr.GetCallableLoadAddress(exe_ctx.GetTargetPtr()));
169 uint64_t first_offset = m_member_offsets[0];
170 process->WriteScalarToMemory(args_addr_ref + first_offset, fun_addr,
171 process->GetAddressByteSize(), error);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000172
Kate Stoneb9c1b512016-09-06 20:57:50 +0000173 // FIXME: We will need to extend this for Variadic functions.
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000174
Kate Stoneb9c1b512016-09-06 20:57:50 +0000175 Error value_error;
Sean Callanan579e70c2016-03-19 00:03:59 +0000176
Kate Stoneb9c1b512016-09-06 20:57:50 +0000177 size_t num_args = arg_values.GetSize();
178 if (num_args != m_arg_values.GetSize()) {
179 diagnostic_manager.Printf(
180 eDiagnosticSeverityError,
181 "Wrong number of arguments - was: %" PRIu64 " should be: %" PRIu64 "",
182 (uint64_t)num_args, (uint64_t)m_arg_values.GetSize());
183 return false;
184 }
Sean Callanan579e70c2016-03-19 00:03:59 +0000185
Kate Stoneb9c1b512016-09-06 20:57:50 +0000186 for (size_t i = 0; i < num_args; i++) {
187 // FIXME: We should sanity check sizes.
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000188
Kate Stoneb9c1b512016-09-06 20:57:50 +0000189 uint64_t offset = m_member_offsets[i + 1]; // Clang sizes are in bytes.
190 Value *arg_value = arg_values.GetValueAtIndex(i);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000191
Kate Stoneb9c1b512016-09-06 20:57:50 +0000192 // FIXME: For now just do scalars:
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000193
Kate Stoneb9c1b512016-09-06 20:57:50 +0000194 // Special case: if it's a pointer, don't do anything (the ABI supports
195 // passing cstrings)
196
197 if (arg_value->GetValueType() == Value::eValueTypeHostAddress &&
198 arg_value->GetContextType() == Value::eContextTypeInvalid &&
199 arg_value->GetCompilerType().IsPointerType())
200 continue;
201
202 const Scalar &arg_scalar = arg_value->ResolveValue(&exe_ctx);
203
204 if (!process->WriteScalarToMemory(args_addr_ref + offset, arg_scalar,
205 arg_scalar.GetByteSize(), error))
206 return false;
207 }
208
209 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000210}
211
Kate Stoneb9c1b512016-09-06 20:57:50 +0000212bool FunctionCaller::InsertFunction(ExecutionContext &exe_ctx,
213 lldb::addr_t &args_addr_ref,
214 DiagnosticManager &diagnostic_manager) {
215 if (CompileFunction(exe_ctx.GetThreadSP(), diagnostic_manager) != 0)
216 return false;
217 if (!WriteFunctionWrapper(exe_ctx, diagnostic_manager))
218 return false;
219 if (!WriteFunctionArguments(exe_ctx, args_addr_ref, diagnostic_manager))
220 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000221
Kate Stoneb9c1b512016-09-06 20:57:50 +0000222 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
223 if (log)
224 log->Printf("Call Address: 0x%" PRIx64 " Struct Address: 0x%" PRIx64 ".\n",
225 m_jit_start_addr, args_addr_ref);
226
227 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000228}
229
Kate Stoneb9c1b512016-09-06 20:57:50 +0000230lldb::ThreadPlanSP FunctionCaller::GetThreadPlanToCallFunction(
231 ExecutionContext &exe_ctx, lldb::addr_t args_addr,
232 const EvaluateExpressionOptions &options,
233 DiagnosticManager &diagnostic_manager) {
234 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EXPRESSIONS |
235 LIBLLDB_LOG_STEP));
Sean Callanan579e70c2016-03-19 00:03:59 +0000236
Kate Stoneb9c1b512016-09-06 20:57:50 +0000237 if (log)
238 log->Printf("-- [FunctionCaller::GetThreadPlanToCallFunction] Creating "
239 "thread plan to call function \"%s\" --",
240 m_name.c_str());
241
242 // FIXME: Use the errors Stream for better error reporting.
243 Thread *thread = exe_ctx.GetThreadPtr();
244 if (thread == NULL) {
Zachary Turnere2411fa2016-11-12 19:12:56 +0000245 diagnostic_manager.PutString(
Kate Stoneb9c1b512016-09-06 20:57:50 +0000246 eDiagnosticSeverityError,
247 "Can't call a function without a valid thread.");
248 return NULL;
249 }
250
251 // Okay, now run the function:
252
253 Address wrapper_address(m_jit_start_addr);
254
255 lldb::addr_t args = {args_addr};
256
257 lldb::ThreadPlanSP new_plan_sp(new ThreadPlanCallFunction(
258 *thread, wrapper_address, CompilerType(), args, options));
259 new_plan_sp->SetIsMasterPlan(true);
260 new_plan_sp->SetOkayToDiscard(false);
261 return new_plan_sp;
262}
263
264bool FunctionCaller::FetchFunctionResults(ExecutionContext &exe_ctx,
265 lldb::addr_t args_addr,
266 Value &ret_value) {
267 // Read the return value - it is the last field in the struct:
268 // FIXME: How does clang tell us there's no return value? We need to handle
269 // that case.
270 // FIXME: Create our ThreadPlanCallFunction with the return CompilerType, and
271 // then use GetReturnValueObject
272 // to fetch the value. That way we can fetch any values we need.
273
274 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EXPRESSIONS |
275 LIBLLDB_LOG_STEP));
276
277 if (log)
278 log->Printf("-- [FunctionCaller::FetchFunctionResults] Fetching function "
279 "results for \"%s\"--",
280 m_name.c_str());
281
282 Process *process = exe_ctx.GetProcessPtr();
283
284 if (process == NULL)
285 return false;
286
287 lldb::ProcessSP jit_process_sp(m_jit_process_wp.lock());
288
289 if (process != jit_process_sp.get())
290 return false;
291
292 Error error;
293 ret_value.GetScalar() = process->ReadUnsignedIntegerFromMemory(
294 args_addr + m_return_offset, m_return_size, 0, error);
295
296 if (error.Fail())
297 return false;
298
299 ret_value.SetCompilerType(m_function_return_type);
300 ret_value.SetValueType(Value::eValueTypeScalar);
301 return true;
302}
303
304void FunctionCaller::DeallocateFunctionResults(ExecutionContext &exe_ctx,
305 lldb::addr_t args_addr) {
306 std::list<lldb::addr_t>::iterator pos;
307 pos = std::find(m_wrapper_args_addrs.begin(), m_wrapper_args_addrs.end(),
308 args_addr);
309 if (pos != m_wrapper_args_addrs.end())
310 m_wrapper_args_addrs.erase(pos);
311
312 exe_ctx.GetProcessRef().DeallocateMemory(args_addr);
313}
314
315lldb::ExpressionResults FunctionCaller::ExecuteFunction(
316 ExecutionContext &exe_ctx, lldb::addr_t *args_addr_ptr,
317 const EvaluateExpressionOptions &options,
318 DiagnosticManager &diagnostic_manager, Value &results) {
319 lldb::ExpressionResults return_value = lldb::eExpressionSetupError;
320
321 // FunctionCaller::ExecuteFunction execution is always just to get the result.
322 // Do make sure we ignore
323 // breakpoints, unwind on error, and don't try to debug it.
324 EvaluateExpressionOptions real_options = options;
325 real_options.SetDebug(false);
326 real_options.SetUnwindOnError(true);
327 real_options.SetIgnoreBreakpoints(true);
328
329 lldb::addr_t args_addr;
330
331 if (args_addr_ptr != NULL)
332 args_addr = *args_addr_ptr;
333 else
334 args_addr = LLDB_INVALID_ADDRESS;
335
336 if (CompileFunction(exe_ctx.GetThreadSP(), diagnostic_manager) != 0)
337 return lldb::eExpressionSetupError;
338
339 if (args_addr == LLDB_INVALID_ADDRESS) {
340 if (!InsertFunction(exe_ctx, args_addr, diagnostic_manager))
341 return lldb::eExpressionSetupError;
342 }
343
344 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EXPRESSIONS |
345 LIBLLDB_LOG_STEP));
346
347 if (log)
348 log->Printf(
349 "== [FunctionCaller::ExecuteFunction] Executing function \"%s\" ==",
350 m_name.c_str());
351
352 lldb::ThreadPlanSP call_plan_sp = GetThreadPlanToCallFunction(
353 exe_ctx, args_addr, real_options, diagnostic_manager);
354 if (!call_plan_sp)
355 return lldb::eExpressionSetupError;
356
357 // We need to make sure we record the fact that we are running an expression
358 // here
359 // otherwise this fact will fail to be recorded when fetching an Objective-C
360 // object description
361 if (exe_ctx.GetProcessPtr())
362 exe_ctx.GetProcessPtr()->SetRunningUserExpression(true);
363
364 return_value = exe_ctx.GetProcessRef().RunThreadPlan(
365 exe_ctx, call_plan_sp, real_options, diagnostic_manager);
366
367 if (log) {
368 if (return_value != lldb::eExpressionCompleted) {
369 log->Printf("== [FunctionCaller::ExecuteFunction] Execution of \"%s\" "
370 "completed abnormally ==",
371 m_name.c_str());
372 } else {
373 log->Printf("== [FunctionCaller::ExecuteFunction] Execution of \"%s\" "
374 "completed normally ==",
375 m_name.c_str());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000376 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000377 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000378
Kate Stoneb9c1b512016-09-06 20:57:50 +0000379 if (exe_ctx.GetProcessPtr())
380 exe_ctx.GetProcessPtr()->SetRunningUserExpression(false);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000381
Kate Stoneb9c1b512016-09-06 20:57:50 +0000382 if (args_addr_ptr != NULL)
383 *args_addr_ptr = args_addr;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000384
Kate Stoneb9c1b512016-09-06 20:57:50 +0000385 if (return_value != lldb::eExpressionCompleted)
386 return return_value;
Enrico Granatadfc88a02012-09-18 00:08:47 +0000387
Kate Stoneb9c1b512016-09-06 20:57:50 +0000388 FetchFunctionResults(exe_ctx, args_addr, results);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000389
Kate Stoneb9c1b512016-09-06 20:57:50 +0000390 if (args_addr_ptr == NULL)
391 DeallocateFunctionResults(exe_ctx, args_addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000392
Kate Stoneb9c1b512016-09-06 20:57:50 +0000393 return lldb::eExpressionCompleted;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000394}