blob: e707c60ffced69590df184cce4fcd6c06b0b9087 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- ClangFunction.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
11// C Includes
12// C++ Includes
13// Other libraries and framework includes
Chris Lattner30fdc8d2010-06-08 16:52:24 +000014#include "clang/AST/ASTContext.h"
15#include "clang/AST/RecordLayout.h"
Greg Claytond2d60ce2010-07-02 18:39:06 +000016#include "clang/CodeGen/CodeGenAction.h"
17#include "clang/CodeGen/ModuleBuilder.h"
18#include "clang/Frontend/CompilerInstance.h"
19#include "llvm/ADT/StringRef.h"
Greg Clayton514487e2011-02-15 21:59:32 +000020#include "llvm/ADT/Triple.h"
Greg Claytond2d60ce2010-07-02 18:39:06 +000021#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chandler Carruth1e157582013-01-02 12:20:07 +000022#include "llvm/IR/Module.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000023
24// Project includes
Sean Callanan1a8d4092010-08-27 01:01:44 +000025#include "lldb/Expression/ASTStructExtractor.h"
26#include "lldb/Expression/ClangExpressionParser.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000027#include "lldb/Expression/ClangFunction.h"
Greg Claytone01e07b2013-04-18 18:10:51 +000028#include "lldb/Expression/IRExecutionUnit.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000029#include "lldb/Symbol/Type.h"
30#include "lldb/Core/DataExtractor.h"
Jim Ingham0d8bcc72010-11-17 02:32:00 +000031#include "lldb/Core/State.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000032#include "lldb/Core/ValueObject.h"
33#include "lldb/Core/ValueObjectList.h"
34#include "lldb/Interpreter/CommandReturnObject.h"
35#include "lldb/Symbol/ClangASTContext.h"
36#include "lldb/Symbol/Function.h"
37#include "lldb/Target/ExecutionContext.h"
38#include "lldb/Target/Process.h"
Sean Callananebf77072010-07-23 00:16:21 +000039#include "lldb/Target/RegisterContext.h"
Greg Clayton514487e2011-02-15 21:59:32 +000040#include "lldb/Target/Target.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000041#include "lldb/Target/Thread.h"
42#include "lldb/Target/ThreadPlan.h"
43#include "lldb/Target/ThreadPlanCallFunction.h"
44#include "lldb/Core/Log.h"
45
46using namespace lldb_private;
Sean Callanan1a8d4092010-08-27 01:01:44 +000047
Chris Lattner30fdc8d2010-06-08 16:52:24 +000048//----------------------------------------------------------------------
49// ClangFunction constructor
50//----------------------------------------------------------------------
Greg Clayton7b462cc2010-10-15 22:48:33 +000051ClangFunction::ClangFunction
52(
Jim Ingham35944dd2011-03-17 20:02:56 +000053 ExecutionContextScope &exe_scope,
Greg Clayton57ee3062013-07-11 22:46:58 +000054 const ClangASTType &return_type,
Greg Clayton7b462cc2010-10-15 22:48:33 +000055 const Address& functionAddress,
56 const ValueList &arg_value_list
57) :
Chris Lattner30fdc8d2010-06-08 16:52:24 +000058 m_function_ptr (NULL),
Greg Claytonc982c762010-07-09 20:39:50 +000059 m_function_addr (functionAddress),
Greg Clayton57ee3062013-07-11 22:46:58 +000060 m_function_return_type(return_type),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000061 m_wrapper_function_name ("__lldb_caller_function"),
62 m_wrapper_struct_name ("__lldb_caller_struct"),
Greg Claytonc982c762010-07-09 20:39:50 +000063 m_wrapper_args_addrs (),
Greg Claytonc982c762010-07-09 20:39:50 +000064 m_arg_values (arg_value_list),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000065 m_compiled (false),
66 m_JITted (false)
67{
Enrico Granatadfc88a02012-09-18 00:08:47 +000068 m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess());
Jim Ingham35944dd2011-03-17 20:02:56 +000069 // Can't make a ClangFunction without a process.
Enrico Granatadfc88a02012-09-18 00:08:47 +000070 assert (m_jit_process_wp.lock());
Chris Lattner30fdc8d2010-06-08 16:52:24 +000071}
72
Greg Clayton7b462cc2010-10-15 22:48:33 +000073ClangFunction::ClangFunction
74(
Jim Ingham35944dd2011-03-17 20:02:56 +000075 ExecutionContextScope &exe_scope,
Greg Clayton7b462cc2010-10-15 22:48:33 +000076 Function &function,
77 ClangASTContext *ast_context,
78 const ValueList &arg_value_list
79) :
Chris Lattner30fdc8d2010-06-08 16:52:24 +000080 m_function_ptr (&function),
Greg Claytonc982c762010-07-09 20:39:50 +000081 m_function_addr (),
Greg Clayton57ee3062013-07-11 22:46:58 +000082 m_function_return_type (),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000083 m_wrapper_function_name ("__lldb_function_caller"),
84 m_wrapper_struct_name ("__lldb_caller_struct"),
Greg Claytonc982c762010-07-09 20:39:50 +000085 m_wrapper_args_addrs (),
Greg Claytonc982c762010-07-09 20:39:50 +000086 m_arg_values (arg_value_list),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000087 m_compiled (false),
88 m_JITted (false)
89{
Enrico Granatadfc88a02012-09-18 00:08:47 +000090 m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess());
Jim Ingham35944dd2011-03-17 20:02:56 +000091 // Can't make a ClangFunction without a process.
Enrico Granatadfc88a02012-09-18 00:08:47 +000092 assert (m_jit_process_wp.lock());
Greg Clayton514487e2011-02-15 21:59:32 +000093
Chris Lattner30fdc8d2010-06-08 16:52:24 +000094 m_function_addr = m_function_ptr->GetAddressRange().GetBaseAddress();
Greg Clayton57ee3062013-07-11 22:46:58 +000095 m_function_return_type = m_function_ptr->GetClangType().GetFunctionReturnType();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000096}
97
98//----------------------------------------------------------------------
99// Destructor
100//----------------------------------------------------------------------
101ClangFunction::~ClangFunction()
102{
103}
104
105unsigned
106ClangFunction::CompileFunction (Stream &errors)
107{
Sean Callanan1a8d4092010-08-27 01:01:44 +0000108 if (m_compiled)
109 return 0;
110
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000111 // FIXME: How does clang tell us there's no return value? We need to handle that case.
112 unsigned num_errors = 0;
113
Jim Inghamfb6fc0d2013-09-27 20:59:37 +0000114 std::string return_type_str (m_function_return_type.GetTypeName().AsCString(""));
Sean Callanan1a8d4092010-08-27 01:01:44 +0000115
116 // Cons up the function we're going to wrap our call in, then compile it...
117 // We declare the function "extern "C"" because the compiler might be in C++
118 // mode which would mangle the name and then we couldn't find it again...
119 m_wrapper_function_text.clear();
120 m_wrapper_function_text.append ("extern \"C\" void ");
121 m_wrapper_function_text.append (m_wrapper_function_name);
122 m_wrapper_function_text.append (" (void *input)\n{\n struct ");
123 m_wrapper_function_text.append (m_wrapper_struct_name);
124 m_wrapper_function_text.append (" \n {\n");
125 m_wrapper_function_text.append (" ");
126 m_wrapper_function_text.append (return_type_str);
127 m_wrapper_function_text.append (" (*fn_ptr) (");
128
129 // Get the number of arguments. If we have a function type and it is prototyped,
130 // trust that, otherwise use the values we were given.
131
132 // FIXME: This will need to be extended to handle Variadic functions. We'll need
133 // to pull the defined arguments out of the function, then add the types from the
134 // arguments list for the variable arguments.
135
Greg Clayton57ee3062013-07-11 22:46:58 +0000136 uint32_t num_args = UINT32_MAX;
Sean Callanan1a8d4092010-08-27 01:01:44 +0000137 bool trust_function = false;
138 // GetArgumentCount returns -1 for an unprototyped function.
Greg Clayton57ee3062013-07-11 22:46:58 +0000139 ClangASTType function_clang_type;
Sean Callanan1a8d4092010-08-27 01:01:44 +0000140 if (m_function_ptr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000141 {
Greg Clayton57ee3062013-07-11 22:46:58 +0000142 function_clang_type = m_function_ptr->GetClangType();
143 if (function_clang_type)
144 {
145 int num_func_args = function_clang_type.GetFunctionArgumentCount();
146 if (num_func_args >= 0)
147 {
148 trust_function = true;
149 num_args = num_func_args;
150 }
151 }
Sean Callanan1a8d4092010-08-27 01:01:44 +0000152 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000153
Sean Callanan1a8d4092010-08-27 01:01:44 +0000154 if (num_args == UINT32_MAX)
155 num_args = m_arg_values.GetSize();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000156
Sean Callanan1a8d4092010-08-27 01:01:44 +0000157 std::string args_buffer; // This one stores the definition of all the args in "struct caller".
158 std::string args_list_buffer; // This one stores the argument list called from the structure.
159 for (size_t i = 0; i < num_args; i++)
160 {
Greg Claytonf4ecaa52011-02-16 23:00:21 +0000161 std::string type_name;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000162
Sean Callanan1a8d4092010-08-27 01:01:44 +0000163 if (trust_function)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000164 {
Sean Callananddd7a2a2013-10-03 22:27:29 +0000165 type_name = function_clang_type.GetFunctionArgumentTypeAtIndex(i).GetTypeName().AsCString("");
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000166 }
Sean Callanan1a8d4092010-08-27 01:01:44 +0000167 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000168 {
Greg Clayton57ee3062013-07-11 22:46:58 +0000169 ClangASTType clang_qual_type = m_arg_values.GetValueAtIndex(i)->GetClangType ();
170 if (clang_qual_type)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000171 {
Sean Callananddd7a2a2013-10-03 22:27:29 +0000172 type_name = clang_qual_type.GetTypeName().AsCString("");
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000173 }
174 else
Sean Callanan1a8d4092010-08-27 01:01:44 +0000175 {
Sylvestre Ledru779f9212013-10-31 23:55:19 +0000176 errors.Printf("Could not determine type of input value %zu.", i);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000177 return 1;
178 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000179 }
Sean Callanan1a8d4092010-08-27 01:01:44 +0000180
Greg Claytonf4ecaa52011-02-16 23:00:21 +0000181 m_wrapper_function_text.append (type_name);
Sean Callanan1a8d4092010-08-27 01:01:44 +0000182 if (i < num_args - 1)
183 m_wrapper_function_text.append (", ");
184
185 char arg_buf[32];
186 args_buffer.append (" ");
Greg Claytonf4ecaa52011-02-16 23:00:21 +0000187 args_buffer.append (type_name);
Daniel Malead01b2952012-11-29 21:49:15 +0000188 snprintf(arg_buf, 31, "arg_%" PRIu64, (uint64_t)i);
Sean Callanan1a8d4092010-08-27 01:01:44 +0000189 args_buffer.push_back (' ');
190 args_buffer.append (arg_buf);
191 args_buffer.append (";\n");
192
193 args_list_buffer.append ("__lldb_fn_data->");
194 args_list_buffer.append (arg_buf);
195 if (i < num_args - 1)
196 args_list_buffer.append (", ");
197
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000198 }
Sean Callanan1a8d4092010-08-27 01:01:44 +0000199 m_wrapper_function_text.append (");\n"); // Close off the function calling prototype.
200
201 m_wrapper_function_text.append (args_buffer);
202
203 m_wrapper_function_text.append (" ");
204 m_wrapper_function_text.append (return_type_str);
205 m_wrapper_function_text.append (" return_value;");
206 m_wrapper_function_text.append ("\n };\n struct ");
207 m_wrapper_function_text.append (m_wrapper_struct_name);
208 m_wrapper_function_text.append ("* __lldb_fn_data = (struct ");
209 m_wrapper_function_text.append (m_wrapper_struct_name);
210 m_wrapper_function_text.append (" *) input;\n");
211
212 m_wrapper_function_text.append (" __lldb_fn_data->return_value = __lldb_fn_data->fn_ptr (");
213 m_wrapper_function_text.append (args_list_buffer);
214 m_wrapper_function_text.append (");\n}\n");
215
Greg Clayton5160ce52013-03-27 23:08:40 +0000216 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan1a8d4092010-08-27 01:01:44 +0000217 if (log)
218 log->Printf ("Expression: \n\n%s\n\n", m_wrapper_function_text.c_str());
219
220 // Okay, now compile this expression
Sean Callanan1a8d4092010-08-27 01:01:44 +0000221
Enrico Granatadfc88a02012-09-18 00:08:47 +0000222 lldb::ProcessSP jit_process_sp(m_jit_process_wp.lock());
223 if (jit_process_sp)
224 {
225 m_parser.reset(new ClangExpressionParser(jit_process_sp.get(), *this));
226
227 num_errors = m_parser->Parse (errors);
228 }
229 else
230 {
231 errors.Printf("no process - unable to inject function");
232 num_errors = 1;
233 }
Sean Callanan1a8d4092010-08-27 01:01:44 +0000234
235 m_compiled = (num_errors == 0);
236
237 if (!m_compiled)
238 return num_errors;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000239
240 return num_errors;
241}
242
243bool
Sean Callanan138e74e2010-07-26 22:14:36 +0000244ClangFunction::WriteFunctionWrapper (ExecutionContext &exe_ctx, Stream &errors)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000245{
Greg Claytonc14ee322011-09-22 04:58:26 +0000246 Process *process = exe_ctx.GetProcessPtr();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000247
Sean Callanan1a8d4092010-08-27 01:01:44 +0000248 if (!process)
249 return false;
Enrico Granatadfc88a02012-09-18 00:08:47 +0000250
251 lldb::ProcessSP jit_process_sp(m_jit_process_wp.lock());
252
253 if (process != jit_process_sp.get())
Jim Ingham35944dd2011-03-17 20:02:56 +0000254 return false;
Sean Callanan1a8d4092010-08-27 01:01:44 +0000255
256 if (!m_compiled)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000257 return false;
258
Sean Callanan1a8d4092010-08-27 01:01:44 +0000259 if (m_JITted)
260 return true;
Sean Callanan1582ee62013-04-18 22:06:33 +0000261
262 bool can_interpret = false; // should stay that way
Sean Callanan3bfdaa22011-09-15 02:13:07 +0000263
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000264 Error jit_error (m_parser->PrepareForExecution (m_jit_start_addr,
Sean Callanan3bfdaa22011-09-15 02:13:07 +0000265 m_jit_end_addr,
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000266 m_execution_unit_ap,
Sean Callanan3bfdaa22011-09-15 02:13:07 +0000267 exe_ctx,
Sean Callanan1582ee62013-04-18 22:06:33 +0000268 can_interpret,
Sean Callanan3bfdaa22011-09-15 02:13:07 +0000269 eExecutionPolicyAlways));
Sean Callanan1a8d4092010-08-27 01:01:44 +0000270
271 if (!jit_error.Success())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000272 return false;
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000273
274 if (process && m_jit_start_addr)
Enrico Granatadfc88a02012-09-18 00:08:47 +0000275 m_jit_process_wp = lldb::ProcessWP(process->shared_from_this());
Sean Callanand14fac12013-01-14 21:45:38 +0000276
277 m_JITted = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000278
279 return true;
280}
281
282bool
Sean Callanan138e74e2010-07-26 22:14:36 +0000283ClangFunction::WriteFunctionArguments (ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Stream &errors)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000284{
Sean Callanan138e74e2010-07-26 22:14:36 +0000285 return WriteFunctionArguments(exe_ctx, args_addr_ref, m_function_addr, m_arg_values, errors);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000286}
287
288// FIXME: Assure that the ValueList we were passed in is consistent with the one that defined this function.
289
290bool
Jim Inghambaae1682010-09-10 23:07:48 +0000291ClangFunction::WriteFunctionArguments (ExecutionContext &exe_ctx,
292 lldb::addr_t &args_addr_ref,
293 Address function_address,
294 ValueList &arg_values,
295 Stream &errors)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000296{
Sean Callanan1a8d4092010-08-27 01:01:44 +0000297 // All the information to reconstruct the struct is provided by the
298 // StructExtractor.
299 if (!m_struct_valid)
300 {
301 errors.Printf("Argument information was not correctly parsed, so the function cannot be called.");
302 return false;
303 }
304
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000305 Error error;
306 using namespace clang;
Greg Claytone0d378b2011-03-24 21:19:54 +0000307 ExecutionResults return_value = eExecutionSetupError;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000308
Greg Claytonc14ee322011-09-22 04:58:26 +0000309 Process *process = exe_ctx.GetProcessPtr();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000310
311 if (process == NULL)
312 return return_value;
Jim Ingham35944dd2011-03-17 20:02:56 +0000313
Enrico Granatadfc88a02012-09-18 00:08:47 +0000314 lldb::ProcessSP jit_process_sp(m_jit_process_wp.lock());
315
316 if (process != jit_process_sp.get())
Jim Ingham35944dd2011-03-17 20:02:56 +0000317 return false;
Sean Callanan1a8d4092010-08-27 01:01:44 +0000318
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000319 if (args_addr_ref == LLDB_INVALID_ADDRESS)
320 {
Sean Callanan1a8d4092010-08-27 01:01:44 +0000321 args_addr_ref = process->AllocateMemory(m_struct_size, lldb::ePermissionsReadable|lldb::ePermissionsWritable, error);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000322 if (args_addr_ref == LLDB_INVALID_ADDRESS)
323 return false;
324 m_wrapper_args_addrs.push_back (args_addr_ref);
325 }
326 else
327 {
328 // Make sure this is an address that we've already handed out.
329 if (find (m_wrapper_args_addrs.begin(), m_wrapper_args_addrs.end(), args_addr_ref) == m_wrapper_args_addrs.end())
330 {
331 return false;
332 }
333 }
334
Greg Claytonf3ef3d22011-05-22 22:46:53 +0000335 // TODO: verify fun_addr needs to be a callable address
Greg Claytonc14ee322011-09-22 04:58:26 +0000336 Scalar fun_addr (function_address.GetCallableLoadAddress(exe_ctx.GetTargetPtr()));
Greg Claytonc7bece562013-01-25 18:06:21 +0000337 uint64_t first_offset = m_member_offsets[0];
Greg Claytonf3ef3d22011-05-22 22:46:53 +0000338 process->WriteScalarToMemory(args_addr_ref + first_offset, fun_addr, process->GetAddressByteSize(), error);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000339
340 // FIXME: We will need to extend this for Variadic functions.
341
342 Error value_error;
343
344 size_t num_args = arg_values.GetSize();
345 if (num_args != m_arg_values.GetSize())
346 {
Sylvestre Ledru779f9212013-10-31 23:55:19 +0000347 errors.Printf ("Wrong number of arguments - was: %zu should be: %zu", num_args, m_arg_values.GetSize());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000348 return false;
349 }
350
Greg Claytonc982c762010-07-09 20:39:50 +0000351 for (size_t i = 0; i < num_args; i++)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000352 {
353 // FIXME: We should sanity check sizes.
354
Greg Claytonc7bece562013-01-25 18:06:21 +0000355 uint64_t offset = m_member_offsets[i+1]; // Clang sizes are in bytes.
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000356 Value *arg_value = arg_values.GetValueAtIndex(i);
357
358 // FIXME: For now just do scalars:
359
360 // Special case: if it's a pointer, don't do anything (the ABI supports passing cstrings)
361
362 if (arg_value->GetValueType() == Value::eValueTypeHostAddress &&
Greg Clayton57ee3062013-07-11 22:46:58 +0000363 arg_value->GetContextType() == Value::eContextTypeInvalid &&
364 arg_value->GetClangType().IsPointerType())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000365 continue;
366
Greg Clayton57ee3062013-07-11 22:46:58 +0000367 const Scalar &arg_scalar = arg_value->ResolveValue(&exe_ctx);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000368
Greg Claytonf3ef3d22011-05-22 22:46:53 +0000369 if (!process->WriteScalarToMemory(args_addr_ref + offset, arg_scalar, arg_scalar.GetByteSize(), error))
370 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000371 }
372
373 return true;
374}
375
376bool
Sean Callanan138e74e2010-07-26 22:14:36 +0000377ClangFunction::InsertFunction (ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Stream &errors)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000378{
379 using namespace clang;
380
381 if (CompileFunction(errors) != 0)
382 return false;
Sean Callanan138e74e2010-07-26 22:14:36 +0000383 if (!WriteFunctionWrapper(exe_ctx, errors))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000384 return false;
Sean Callanan138e74e2010-07-26 22:14:36 +0000385 if (!WriteFunctionArguments(exe_ctx, args_addr_ref, errors))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000386 return false;
387
Greg Clayton5160ce52013-03-27 23:08:40 +0000388 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000389 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +0000390 log->Printf ("Call Address: 0x%" PRIx64 " Struct Address: 0x%" PRIx64 ".\n", m_jit_start_addr, args_addr_ref);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000391
392 return true;
393}
394
395ThreadPlan *
Jim Ingham399f1ca2010-11-05 19:25:48 +0000396ClangFunction::GetThreadPlanToCallFunction (ExecutionContext &exe_ctx,
Sean Callanana464f3d2013-11-08 01:14:26 +0000397 lldb::addr_t args_addr,
Jim Ingham6fbc48b2013-11-07 00:11:47 +0000398 const EvaluateExpressionOptions &options,
399 Stream &errors)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000400{
Greg Clayton5160ce52013-03-27 23:08:40 +0000401 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_EXPRESSIONS | LIBLLDB_LOG_STEP));
Sean Callananf58b12d2013-03-06 19:57:25 +0000402
403 if (log)
404 log->Printf("-- [ClangFunction::GetThreadPlanToCallFunction] Creating thread plan to call function --");
405
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000406 // FIXME: Use the errors Stream for better error reporting.
Greg Claytonc14ee322011-09-22 04:58:26 +0000407 Thread *thread = exe_ctx.GetThreadPtr();
408 if (thread == NULL)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000409 {
Greg Clayton7e9b1fd2011-08-12 21:40:01 +0000410 errors.Printf("Can't call a function without a valid thread.");
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000411 return NULL;
412 }
413
414 // Okay, now run the function:
415
Jim Ingham6fbc48b2013-11-07 00:11:47 +0000416 Address wrapper_address (m_jit_start_addr);
Sean Callanana464f3d2013-11-08 01:14:26 +0000417
418 lldb::addr_t args = { args_addr };
419
Greg Claytonc14ee322011-09-22 04:58:26 +0000420 ThreadPlan *new_plan = new ThreadPlanCallFunction (*thread,
Sean Callanan17827832010-12-13 22:46:15 +0000421 wrapper_address,
Jim Inghamef651602011-12-22 19:12:40 +0000422 ClangASTType(),
Sean Callanana464f3d2013-11-08 01:14:26 +0000423 args,
424 options);
Jim Ingham923886c2012-05-11 18:43:38 +0000425 new_plan->SetIsMasterPlan(true);
426 new_plan->SetOkayToDiscard (false);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000427 return new_plan;
428}
429
430bool
Sean Callanan138e74e2010-07-26 22:14:36 +0000431ClangFunction::FetchFunctionResults (ExecutionContext &exe_ctx, lldb::addr_t args_addr, Value &ret_value)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000432{
433 // Read the return value - it is the last field in the struct:
434 // FIXME: How does clang tell us there's no return value? We need to handle that case.
Jim Inghamef651602011-12-22 19:12:40 +0000435 // FIXME: Create our ThreadPlanCallFunction with the return ClangASTType, and then use GetReturnValueObject
436 // to fetch the value. That way we can fetch any values we need.
Sean Callananf58b12d2013-03-06 19:57:25 +0000437
Greg Clayton5160ce52013-03-27 23:08:40 +0000438 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_EXPRESSIONS | LIBLLDB_LOG_STEP));
Sean Callananf58b12d2013-03-06 19:57:25 +0000439
440 if (log)
441 log->Printf("-- [ClangFunction::FetchFunctionResults] Fetching function results --");
442
Greg Claytonc14ee322011-09-22 04:58:26 +0000443 Process *process = exe_ctx.GetProcessPtr();
Jim Ingham35944dd2011-03-17 20:02:56 +0000444
445 if (process == NULL)
446 return false;
Enrico Granatadfc88a02012-09-18 00:08:47 +0000447
448 lldb::ProcessSP jit_process_sp(m_jit_process_wp.lock());
449
450 if (process != jit_process_sp.get())
Jim Ingham35944dd2011-03-17 20:02:56 +0000451 return false;
452
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000453 Error error;
Greg Claytonf3ef3d22011-05-22 22:46:53 +0000454 ret_value.GetScalar() = process->ReadUnsignedIntegerFromMemory (args_addr + m_return_offset, m_return_size, 0, error);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000455
Greg Claytonf3ef3d22011-05-22 22:46:53 +0000456 if (error.Fail())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000457 return false;
458
Greg Clayton57ee3062013-07-11 22:46:58 +0000459 ret_value.SetClangType(m_function_return_type);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000460 ret_value.SetValueType(Value::eValueTypeScalar);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000461 return true;
462}
463
464void
Sean Callanan138e74e2010-07-26 22:14:36 +0000465ClangFunction::DeallocateFunctionResults (ExecutionContext &exe_ctx, lldb::addr_t args_addr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000466{
467 std::list<lldb::addr_t>::iterator pos;
468 pos = std::find(m_wrapper_args_addrs.begin(), m_wrapper_args_addrs.end(), args_addr);
469 if (pos != m_wrapper_args_addrs.end())
470 m_wrapper_args_addrs.erase(pos);
471
Greg Claytonc14ee322011-09-22 04:58:26 +0000472 exe_ctx.GetProcessRef().DeallocateMemory(args_addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000473}
474
Greg Claytone0d378b2011-03-24 21:19:54 +0000475ExecutionResults
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000476ClangFunction::ExecuteFunction(
Sean Callanan138e74e2010-07-26 22:14:36 +0000477 ExecutionContext &exe_ctx,
Jim Ingham6fbc48b2013-11-07 00:11:47 +0000478 lldb::addr_t *args_addr_ptr,
479 const EvaluateExpressionOptions &options,
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000480 Stream &errors,
Sean Callananebf77072010-07-23 00:16:21 +0000481 Value &results)
482{
483 using namespace clang;
Greg Claytone0d378b2011-03-24 21:19:54 +0000484 ExecutionResults return_value = eExecutionSetupError;
Sean Callananebf77072010-07-23 00:16:21 +0000485
Jim Ingham6fbc48b2013-11-07 00:11:47 +0000486 // ClangFunction::ExecuteFunction execution is always just to get the result. Do make sure we ignore
487 // breakpoints, unwind on error, and don't try to debug it.
488 EvaluateExpressionOptions real_options = options;
489 real_options.SetDebug(false);
490 real_options.SetUnwindOnError(true);
491 real_options.SetIgnoreBreakpoints(true);
492
Sean Callananebf77072010-07-23 00:16:21 +0000493 lldb::addr_t args_addr;
494
495 if (args_addr_ptr != NULL)
496 args_addr = *args_addr_ptr;
497 else
498 args_addr = LLDB_INVALID_ADDRESS;
499
500 if (CompileFunction(errors) != 0)
Greg Claytone0d378b2011-03-24 21:19:54 +0000501 return eExecutionSetupError;
Sean Callananebf77072010-07-23 00:16:21 +0000502
503 if (args_addr == LLDB_INVALID_ADDRESS)
504 {
Sean Callanan138e74e2010-07-26 22:14:36 +0000505 if (!InsertFunction(exe_ctx, args_addr, errors))
Greg Claytone0d378b2011-03-24 21:19:54 +0000506 return eExecutionSetupError;
Sean Callananebf77072010-07-23 00:16:21 +0000507 }
Sean Callananebf77072010-07-23 00:16:21 +0000508
Jim Ingham6fbc48b2013-11-07 00:11:47 +0000509 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_EXPRESSIONS | LIBLLDB_LOG_STEP));
510
511 if (log)
512 log->Printf("== [ClangFunction::ExecuteFunction] Executing function ==");
513
514 lldb::ThreadPlanSP call_plan_sp (GetThreadPlanToCallFunction (exe_ctx,
515 args_addr,
516 real_options,
517 errors));
518 if (!call_plan_sp)
519 return eExecutionSetupError;
520
521 // <rdar://problem/12027563> we need to make sure we record the fact that we are running an expression here
522 // otherwise this fact will fail to be recorded when fetching an Objective-C object description
523 if (exe_ctx.GetProcessPtr())
524 exe_ctx.GetProcessPtr()->SetRunningUserExpression(true);
525
526 return_value = exe_ctx.GetProcessRef().RunThreadPlan (exe_ctx,
527 call_plan_sp,
528 real_options,
529 errors);
530
531 if (log)
532 {
533 if (return_value != eExecutionCompleted)
534 {
535 log->Printf("== [ClangFunction::ExecuteFunction] Execution completed abnormally ==");
536 }
537 else
538 {
539 log->Printf("== [ClangFunction::ExecuteFunction] Execution completed normally ==");
540 }
541 }
542
543 if (exe_ctx.GetProcessPtr())
544 exe_ctx.GetProcessPtr()->SetRunningUserExpression(false);
545
Sean Callananebf77072010-07-23 00:16:21 +0000546 if (args_addr_ptr != NULL)
547 *args_addr_ptr = args_addr;
548
Greg Claytone0d378b2011-03-24 21:19:54 +0000549 if (return_value != eExecutionCompleted)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000550 return return_value;
551
Sean Callanan138e74e2010-07-26 22:14:36 +0000552 FetchFunctionResults(exe_ctx, args_addr, results);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000553
554 if (args_addr_ptr == NULL)
Sean Callanan138e74e2010-07-26 22:14:36 +0000555 DeallocateFunctionResults(exe_ctx, args_addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000556
Greg Claytone0d378b2011-03-24 21:19:54 +0000557 return eExecutionCompleted;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000558}
559
Sean Callanan1a8d4092010-08-27 01:01:44 +0000560clang::ASTConsumer *
561ClangFunction::ASTTransformer (clang::ASTConsumer *passthrough)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000562{
Sean Callanan394e36d2013-10-10 00:39:23 +0000563 m_struct_extractor.reset(new ASTStructExtractor(passthrough, m_wrapper_struct_name.c_str(), *this));
564
565 return m_struct_extractor.get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000566}