15ec532a9SColin Riley //===-- RenderScriptRuntime.cpp ---------------------------------*- C++ -*-===//
25ec532a9SColin Riley //
35ec532a9SColin Riley //                     The LLVM Compiler Infrastructure
45ec532a9SColin Riley //
55ec532a9SColin Riley // This file is distributed under the University of Illinois Open Source
65ec532a9SColin Riley // License. See LICENSE.TXT for details.
75ec532a9SColin Riley //
85ec532a9SColin Riley //===----------------------------------------------------------------------===//
95ec532a9SColin Riley 
10222b937cSEugene Zelenko // C Includes
11222b937cSEugene Zelenko // C++ Includes
12222b937cSEugene Zelenko // Other libraries and framework includes
13222b937cSEugene Zelenko // Project includes
145ec532a9SColin Riley #include "RenderScriptRuntime.h"
155ec532a9SColin Riley 
16b3f7f69dSAidan Dodds #include "lldb/Breakpoint/StoppointCallbackContext.h"
175ec532a9SColin Riley #include "lldb/Core/ConstString.h"
185ec532a9SColin Riley #include "lldb/Core/Debugger.h"
195ec532a9SColin Riley #include "lldb/Core/Error.h"
205ec532a9SColin Riley #include "lldb/Core/Log.h"
215ec532a9SColin Riley #include "lldb/Core/PluginManager.h"
22018f5a7eSEwan Crawford #include "lldb/Core/RegularExpression.h"
23b3f7f69dSAidan Dodds #include "lldb/Core/ValueObjectVariable.h"
248b244e21SEwan Crawford #include "lldb/DataFormatters/DumpValueObjectOptions.h"
25b3f7f69dSAidan Dodds #include "lldb/Expression/UserExpression.h"
26a0f08674SEwan Crawford #include "lldb/Host/StringConvert.h"
27b3f7f69dSAidan Dodds #include "lldb/Interpreter/Args.h"
28b3f7f69dSAidan Dodds #include "lldb/Interpreter/CommandInterpreter.h"
29b3f7f69dSAidan Dodds #include "lldb/Interpreter/CommandObjectMultiword.h"
30b3f7f69dSAidan Dodds #include "lldb/Interpreter/CommandReturnObject.h"
31b3f7f69dSAidan Dodds #include "lldb/Interpreter/Options.h"
325ec532a9SColin Riley #include "lldb/Symbol/Symbol.h"
334640cde1SColin Riley #include "lldb/Symbol/Type.h"
34b3f7f69dSAidan Dodds #include "lldb/Symbol/VariableList.h"
355ec532a9SColin Riley #include "lldb/Target/Process.h"
36b3f7f69dSAidan Dodds #include "lldb/Target/RegisterContext.h"
375ec532a9SColin Riley #include "lldb/Target/Target.h"
38018f5a7eSEwan Crawford #include "lldb/Target/Thread.h"
395ec532a9SColin Riley 
405ec532a9SColin Riley using namespace lldb;
415ec532a9SColin Riley using namespace lldb_private;
4298156583SEwan Crawford using namespace lldb_renderscript;
435ec532a9SColin Riley 
44b3f7f69dSAidan Dodds namespace
45b3f7f69dSAidan Dodds {
4678f339d1SEwan Crawford 
4778f339d1SEwan Crawford // The empirical_type adds a basic level of validation to arbitrary data
4878f339d1SEwan Crawford // allowing us to track if data has been discovered and stored or not.
4978f339d1SEwan Crawford // An empirical_type will be marked as valid only if it has been explicitly assigned to.
50b3f7f69dSAidan Dodds template <typename type_t> class empirical_type
5178f339d1SEwan Crawford {
5278f339d1SEwan Crawford public:
5378f339d1SEwan Crawford     // Ctor. Contents is invalid when constructed.
54b3f7f69dSAidan Dodds     empirical_type() : valid(false) {}
5578f339d1SEwan Crawford 
5678f339d1SEwan Crawford     // Return true and copy contents to out if valid, else return false.
57b3f7f69dSAidan Dodds     bool
58b3f7f69dSAidan Dodds     get(type_t &out) const
5978f339d1SEwan Crawford     {
6078f339d1SEwan Crawford         if (valid)
6178f339d1SEwan Crawford             out = data;
6278f339d1SEwan Crawford         return valid;
6378f339d1SEwan Crawford     }
6478f339d1SEwan Crawford 
6578f339d1SEwan Crawford     // Return a pointer to the contents or nullptr if it was not valid.
66b3f7f69dSAidan Dodds     const type_t *
67b3f7f69dSAidan Dodds     get() const
6878f339d1SEwan Crawford     {
6978f339d1SEwan Crawford         return valid ? &data : nullptr;
7078f339d1SEwan Crawford     }
7178f339d1SEwan Crawford 
7278f339d1SEwan Crawford     // Assign data explicitly.
73b3f7f69dSAidan Dodds     void
74b3f7f69dSAidan Dodds     set(const type_t in)
7578f339d1SEwan Crawford     {
7678f339d1SEwan Crawford         data = in;
7778f339d1SEwan Crawford         valid = true;
7878f339d1SEwan Crawford     }
7978f339d1SEwan Crawford 
8078f339d1SEwan Crawford     // Mark contents as invalid.
81b3f7f69dSAidan Dodds     void
82b3f7f69dSAidan Dodds     invalidate()
8378f339d1SEwan Crawford     {
8478f339d1SEwan Crawford         valid = false;
8578f339d1SEwan Crawford     }
8678f339d1SEwan Crawford 
8778f339d1SEwan Crawford     // Returns true if this type contains valid data.
88b3f7f69dSAidan Dodds     bool
89b3f7f69dSAidan Dodds     isValid() const
9078f339d1SEwan Crawford     {
9178f339d1SEwan Crawford         return valid;
9278f339d1SEwan Crawford     }
9378f339d1SEwan Crawford 
9478f339d1SEwan Crawford     // Assignment operator.
95b3f7f69dSAidan Dodds     empirical_type<type_t> &
96b3f7f69dSAidan Dodds     operator=(const type_t in)
9778f339d1SEwan Crawford     {
9878f339d1SEwan Crawford         set(in);
9978f339d1SEwan Crawford         return *this;
10078f339d1SEwan Crawford     }
10178f339d1SEwan Crawford 
10278f339d1SEwan Crawford     // Dereference operator returns contents.
10378f339d1SEwan Crawford     // Warning: Will assert if not valid so use only when you know data is valid.
10478f339d1SEwan Crawford     const type_t &operator*() const
10578f339d1SEwan Crawford     {
10678f339d1SEwan Crawford         assert(valid);
10778f339d1SEwan Crawford         return data;
10878f339d1SEwan Crawford     }
10978f339d1SEwan Crawford 
11078f339d1SEwan Crawford protected:
11178f339d1SEwan Crawford     bool valid;
11278f339d1SEwan Crawford     type_t data;
11378f339d1SEwan Crawford };
11478f339d1SEwan Crawford 
115f4786785SAidan Dodds // ArgItem is used by the GetArgs() function when reading function arguments from the target.
116f4786785SAidan Dodds struct ArgItem
117f4786785SAidan Dodds {
118f4786785SAidan Dodds     enum
119f4786785SAidan Dodds     {
120f4786785SAidan Dodds         ePointer,
121f4786785SAidan Dodds         eInt32,
122f4786785SAidan Dodds         eInt64,
123f4786785SAidan Dodds         eLong,
124f4786785SAidan Dodds         eBool
125f4786785SAidan Dodds     } type;
126f4786785SAidan Dodds 
127f4786785SAidan Dodds     uint64_t value;
128f4786785SAidan Dodds 
129f4786785SAidan Dodds     explicit operator uint64_t() const { return value; }
130f4786785SAidan Dodds };
131f4786785SAidan Dodds 
132f4786785SAidan Dodds // Context structure to be passed into GetArgsXXX(), argument reading functions below.
133f4786785SAidan Dodds struct GetArgsCtx
134f4786785SAidan Dodds {
135f4786785SAidan Dodds     RegisterContext *reg_ctx;
136f4786785SAidan Dodds     Process *process;
137f4786785SAidan Dodds };
138f4786785SAidan Dodds 
139f4786785SAidan Dodds bool
140f4786785SAidan Dodds GetArgsX86(const GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args)
141f4786785SAidan Dodds {
142f4786785SAidan Dodds     Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
143f4786785SAidan Dodds 
144f4786785SAidan Dodds     // get the current stack pointer
145f4786785SAidan Dodds     uint64_t sp = ctx.reg_ctx->GetSP();
146f4786785SAidan Dodds 
147f4786785SAidan Dodds     for (size_t i = 0; i < num_args; ++i)
148f4786785SAidan Dodds     {
149f4786785SAidan Dodds         ArgItem &arg = arg_list[i];
150f4786785SAidan Dodds         // advance up the stack by one argument
151f4786785SAidan Dodds         sp += sizeof(uint32_t);
152f4786785SAidan Dodds         // get the argument type size
153f4786785SAidan Dodds         size_t arg_size = sizeof(uint32_t);
154f4786785SAidan Dodds         // read the argument from memory
155f4786785SAidan Dodds         arg.value = 0;
156f4786785SAidan Dodds         Error error;
157f4786785SAidan Dodds         size_t read = ctx.process->ReadMemory(sp, &arg.value, sizeof(uint32_t), error);
158f4786785SAidan Dodds         if (read != arg_size || !error.Success())
159f4786785SAidan Dodds         {
160f4786785SAidan Dodds             if (log)
161f4786785SAidan Dodds                 log->Printf("%s - error reading argument: %" PRIu64 " '%s'", __FUNCTION__, uint64_t(i),
162f4786785SAidan Dodds                             error.AsCString());
163f4786785SAidan Dodds             return false;
164f4786785SAidan Dodds         }
165f4786785SAidan Dodds     }
166f4786785SAidan Dodds     return true;
167f4786785SAidan Dodds }
168f4786785SAidan Dodds 
169f4786785SAidan Dodds bool
170f4786785SAidan Dodds GetArgsX86_64(GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args)
171f4786785SAidan Dodds {
172f4786785SAidan Dodds     Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
173f4786785SAidan Dodds 
174f4786785SAidan Dodds     // number of arguments passed in registers
175f4786785SAidan Dodds     static const uint32_t c_args_in_reg = 6;
176f4786785SAidan Dodds     // register passing order
1771ee07253SSaleem Abdulrasool     static const std::array<const char *, c_args_in_reg> c_reg_names{{"rdi", "rsi", "rdx", "rcx", "r8", "r9"}};
178f4786785SAidan Dodds     // argument type to size mapping
1791ee07253SSaleem Abdulrasool     static const std::array<size_t, 5> arg_size{{
180f4786785SAidan Dodds         8, // ePointer,
181f4786785SAidan Dodds         4, // eInt32,
182f4786785SAidan Dodds         8, // eInt64,
183f4786785SAidan Dodds         8, // eLong,
184f4786785SAidan Dodds         4, // eBool,
1851ee07253SSaleem Abdulrasool     }};
186f4786785SAidan Dodds 
187f4786785SAidan Dodds     // get the current stack pointer
188f4786785SAidan Dodds     uint64_t sp = ctx.reg_ctx->GetSP();
189f4786785SAidan Dodds     // step over the return address
190f4786785SAidan Dodds     sp += sizeof(uint64_t);
191f4786785SAidan Dodds 
192f4786785SAidan Dodds     // check the stack alignment was correct (16 byte aligned)
193f4786785SAidan Dodds     if ((sp & 0xf) != 0x0)
194f4786785SAidan Dodds     {
195f4786785SAidan Dodds         if (log)
196f4786785SAidan Dodds             log->Printf("%s - stack misaligned", __FUNCTION__);
197f4786785SAidan Dodds         return false;
198f4786785SAidan Dodds     }
199f4786785SAidan Dodds 
200f4786785SAidan Dodds     // find the start of arguments on the stack
201f4786785SAidan Dodds     uint64_t sp_offset = 0;
202f4786785SAidan Dodds     for (uint32_t i = c_args_in_reg; i < num_args; ++i)
203f4786785SAidan Dodds     {
204f4786785SAidan Dodds         sp_offset += arg_size[arg_list[i].type];
205f4786785SAidan Dodds     }
206f4786785SAidan Dodds     // round up to multiple of 16
207f4786785SAidan Dodds     sp_offset = (sp_offset + 0xf) & 0xf;
208f4786785SAidan Dodds     sp += sp_offset;
209f4786785SAidan Dodds 
210f4786785SAidan Dodds     for (size_t i = 0; i < num_args; ++i)
211f4786785SAidan Dodds     {
212f4786785SAidan Dodds         bool success = false;
213f4786785SAidan Dodds         ArgItem &arg = arg_list[i];
214f4786785SAidan Dodds         // arguments passed in registers
215f4786785SAidan Dodds         if (i < c_args_in_reg)
216f4786785SAidan Dodds         {
217f4786785SAidan Dodds             const RegisterInfo *rArg = ctx.reg_ctx->GetRegisterInfoByName(c_reg_names[i]);
218f4786785SAidan Dodds             RegisterValue rVal;
219f4786785SAidan Dodds             if (ctx.reg_ctx->ReadRegister(rArg, rVal))
220f4786785SAidan Dodds                 arg.value = rVal.GetAsUInt64(0, &success);
221f4786785SAidan Dodds         }
222f4786785SAidan Dodds         // arguments passed on the stack
223f4786785SAidan Dodds         else
224f4786785SAidan Dodds         {
225f4786785SAidan Dodds             // get the argument type size
226f4786785SAidan Dodds             const size_t size = arg_size[arg_list[i].type];
227f4786785SAidan Dodds             // read the argument from memory
228f4786785SAidan Dodds             arg.value = 0;
229f4786785SAidan Dodds             // note: due to little endian layout reading 4 or 8 bytes will give the correct value.
230f4786785SAidan Dodds             Error error;
231f4786785SAidan Dodds             size_t read = ctx.process->ReadMemory(sp, &arg.value, size, error);
232f4786785SAidan Dodds             success = (error.Success() && read==size);
233f4786785SAidan Dodds             // advance past this argument
234f4786785SAidan Dodds             sp -= size;
235f4786785SAidan Dodds         }
236f4786785SAidan Dodds         // fail if we couldn't read this argument
237f4786785SAidan Dodds         if (!success)
238f4786785SAidan Dodds         {
239f4786785SAidan Dodds             if (log)
240f4786785SAidan Dodds                 log->Printf("%s - error reading argument: %" PRIu64, __FUNCTION__, uint64_t(i));
241f4786785SAidan Dodds             return false;
242f4786785SAidan Dodds         }
243f4786785SAidan Dodds     }
244f4786785SAidan Dodds     return true;
245f4786785SAidan Dodds }
246f4786785SAidan Dodds 
247f4786785SAidan Dodds bool
248f4786785SAidan Dodds GetArgsArm(GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args)
249f4786785SAidan Dodds {
250f4786785SAidan Dodds     // number of arguments passed in registers
251f4786785SAidan Dodds     static const uint32_t c_args_in_reg = 4;
252f4786785SAidan Dodds 
253f4786785SAidan Dodds     Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
254f4786785SAidan Dodds 
255f4786785SAidan Dodds     // get the current stack pointer
256f4786785SAidan Dodds     uint64_t sp = ctx.reg_ctx->GetSP();
257f4786785SAidan Dodds 
258f4786785SAidan Dodds     for (size_t i = 0; i < num_args; ++i)
259f4786785SAidan Dodds     {
260f4786785SAidan Dodds         bool success = false;
261f4786785SAidan Dodds         ArgItem &arg = arg_list[i];
262f4786785SAidan Dodds         // arguments passed in registers
263f4786785SAidan Dodds         if (i < c_args_in_reg)
264f4786785SAidan Dodds         {
265f4786785SAidan Dodds             const RegisterInfo *rArg = ctx.reg_ctx->GetRegisterInfoAtIndex(i);
266f4786785SAidan Dodds             RegisterValue rVal;
267f4786785SAidan Dodds             if (ctx.reg_ctx->ReadRegister(rArg, rVal))
268f4786785SAidan Dodds                 arg.value = rVal.GetAsUInt32(0, &success);
269f4786785SAidan Dodds         }
270f4786785SAidan Dodds         // arguments passed on the stack
271f4786785SAidan Dodds         else
272f4786785SAidan Dodds         {
273f4786785SAidan Dodds             // get the argument type size
274f4786785SAidan Dodds             const size_t arg_size = sizeof(uint32_t);
275f4786785SAidan Dodds             // clear all 64bits
276f4786785SAidan Dodds             arg.value = 0;
277f4786785SAidan Dodds             // read this argument from memory
278f4786785SAidan Dodds             Error error;
279f4786785SAidan Dodds             size_t bytes_read = ctx.process->ReadMemory(sp, &arg.value, arg_size, error);
280f4786785SAidan Dodds             success = (error.Success() && bytes_read == arg_size);
281f4786785SAidan Dodds             // advance the stack pointer
282f4786785SAidan Dodds             sp += sizeof(uint32_t);
283f4786785SAidan Dodds         }
284f4786785SAidan Dodds         // fail if we couldn't read this argument
285f4786785SAidan Dodds         if (!success)
286f4786785SAidan Dodds         {
287f4786785SAidan Dodds             if (log)
288f4786785SAidan Dodds                 log->Printf("%s - error reading argument: %" PRIu64, __FUNCTION__, uint64_t(i));
289f4786785SAidan Dodds             return false;
290f4786785SAidan Dodds         }
291f4786785SAidan Dodds     }
292f4786785SAidan Dodds     return true;
293f4786785SAidan Dodds }
294f4786785SAidan Dodds 
295f4786785SAidan Dodds bool
296f4786785SAidan Dodds GetArgsAarch64(GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args)
297f4786785SAidan Dodds {
298f4786785SAidan Dodds     // number of arguments passed in registers
299f4786785SAidan Dodds     static const uint32_t c_args_in_reg = 8;
300f4786785SAidan Dodds 
301f4786785SAidan Dodds     Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
302f4786785SAidan Dodds 
303f4786785SAidan Dodds     for (size_t i = 0; i < num_args; ++i)
304f4786785SAidan Dodds     {
305f4786785SAidan Dodds         bool success = false;
306f4786785SAidan Dodds         ArgItem &arg = arg_list[i];
307f4786785SAidan Dodds         // arguments passed in registers
308f4786785SAidan Dodds         if (i < c_args_in_reg)
309f4786785SAidan Dodds         {
310f4786785SAidan Dodds             const RegisterInfo *rArg = ctx.reg_ctx->GetRegisterInfoAtIndex(i);
311f4786785SAidan Dodds             RegisterValue rVal;
312f4786785SAidan Dodds             if (ctx.reg_ctx->ReadRegister(rArg, rVal))
313f4786785SAidan Dodds                 arg.value = rVal.GetAsUInt64(0, &success);
314f4786785SAidan Dodds         }
315f4786785SAidan Dodds         // arguments passed on the stack
316f4786785SAidan Dodds         else
317f4786785SAidan Dodds         {
318f4786785SAidan Dodds             if (log)
319f4786785SAidan Dodds                 log->Printf("%s - reading arguments spilled to stack not implemented", __FUNCTION__);
320f4786785SAidan Dodds         }
321f4786785SAidan Dodds         // fail if we couldn't read this argument
322f4786785SAidan Dodds         if (!success)
323f4786785SAidan Dodds         {
324f4786785SAidan Dodds             if (log)
325f4786785SAidan Dodds                 log->Printf("%s - error reading argument: %" PRIu64, __FUNCTION__,
326f4786785SAidan Dodds                             uint64_t(i));
327f4786785SAidan Dodds             return false;
328f4786785SAidan Dodds         }
329f4786785SAidan Dodds     }
330f4786785SAidan Dodds     return true;
331f4786785SAidan Dodds }
332f4786785SAidan Dodds 
333f4786785SAidan Dodds bool
334f4786785SAidan Dodds GetArgsMipsel(GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args)
335f4786785SAidan Dodds {
336f4786785SAidan Dodds     // number of arguments passed in registers
337f4786785SAidan Dodds     static const uint32_t c_args_in_reg = 4;
338f4786785SAidan Dodds     // register file offset to first argument
339f4786785SAidan Dodds     static const uint32_t c_reg_offset = 4;
340f4786785SAidan Dodds 
341f4786785SAidan Dodds     Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
342f4786785SAidan Dodds 
343f4786785SAidan Dodds     for (size_t i = 0; i < num_args; ++i)
344f4786785SAidan Dodds     {
345f4786785SAidan Dodds         bool success = false;
346f4786785SAidan Dodds         ArgItem &arg = arg_list[i];
347f4786785SAidan Dodds         // arguments passed in registers
348f4786785SAidan Dodds         if (i < c_args_in_reg)
349f4786785SAidan Dodds         {
350f4786785SAidan Dodds             const RegisterInfo *rArg = ctx.reg_ctx->GetRegisterInfoAtIndex(i + c_reg_offset);
351f4786785SAidan Dodds             RegisterValue rVal;
352f4786785SAidan Dodds             if (ctx.reg_ctx->ReadRegister(rArg, rVal))
353f4786785SAidan Dodds                 arg.value = rVal.GetAsUInt64(0, &success);
354f4786785SAidan Dodds         }
355f4786785SAidan Dodds         // arguments passed on the stack
356f4786785SAidan Dodds         else
357f4786785SAidan Dodds         {
358f4786785SAidan Dodds             if (log)
359f4786785SAidan Dodds                 log->Printf("%s - reading arguments spilled to stack not implemented.", __FUNCTION__);
360f4786785SAidan Dodds         }
361f4786785SAidan Dodds         // fail if we couldn't read this argument
362f4786785SAidan Dodds         if (!success)
363f4786785SAidan Dodds         {
364f4786785SAidan Dodds             if (log)
365f4786785SAidan Dodds                 log->Printf("%s - error reading argument: %" PRIu64, __FUNCTION__, uint64_t(i));
366f4786785SAidan Dodds             return false;
367f4786785SAidan Dodds         }
368f4786785SAidan Dodds     }
369f4786785SAidan Dodds     return true;
370f4786785SAidan Dodds }
371f4786785SAidan Dodds 
372f4786785SAidan Dodds bool
373f4786785SAidan Dodds GetArgsMips64el(GetArgsCtx &ctx, ArgItem *arg_list, size_t num_args)
374f4786785SAidan Dodds {
375f4786785SAidan Dodds     // number of arguments passed in registers
376f4786785SAidan Dodds     static const uint32_t c_args_in_reg = 8;
377f4786785SAidan Dodds     // register file offset to first argument
378f4786785SAidan Dodds     static const uint32_t c_reg_offset = 4;
379f4786785SAidan Dodds 
380f4786785SAidan Dodds     Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
381f4786785SAidan Dodds 
382f4786785SAidan Dodds     // get the current stack pointer
383f4786785SAidan Dodds     uint64_t sp = ctx.reg_ctx->GetSP();
384f4786785SAidan Dodds 
385f4786785SAidan Dodds     for (size_t i = 0; i < num_args; ++i)
386f4786785SAidan Dodds     {
387f4786785SAidan Dodds         bool success = false;
388f4786785SAidan Dodds         ArgItem &arg = arg_list[i];
389f4786785SAidan Dodds         // arguments passed in registers
390f4786785SAidan Dodds         if (i < c_args_in_reg)
391f4786785SAidan Dodds         {
392f4786785SAidan Dodds             const RegisterInfo *rArg = ctx.reg_ctx->GetRegisterInfoAtIndex(i + c_reg_offset);
393f4786785SAidan Dodds             RegisterValue rVal;
394f4786785SAidan Dodds             if (ctx.reg_ctx->ReadRegister(rArg, rVal))
39572f77525SAidan Dodds                 arg.value = rVal.GetAsUInt64(0, &success);
396f4786785SAidan Dodds         }
397f4786785SAidan Dodds         // arguments passed on the stack
398f4786785SAidan Dodds         else
399f4786785SAidan Dodds         {
400f4786785SAidan Dodds             // get the argument type size
401f4786785SAidan Dodds             const size_t arg_size = sizeof(uint64_t);
402f4786785SAidan Dodds             // clear all 64bits
403f4786785SAidan Dodds             arg.value = 0;
404f4786785SAidan Dodds             // read this argument from memory
405f4786785SAidan Dodds             Error error;
406f4786785SAidan Dodds             size_t bytes_read = ctx.process->ReadMemory(sp, &arg.value, arg_size, error);
407f4786785SAidan Dodds             success = (error.Success() && bytes_read == arg_size);
408f4786785SAidan Dodds             // advance the stack pointer
409f4786785SAidan Dodds             sp += arg_size;
410f4786785SAidan Dodds         }
411f4786785SAidan Dodds         // fail if we couldn't read this argument
412f4786785SAidan Dodds         if (!success)
413f4786785SAidan Dodds         {
414f4786785SAidan Dodds             if (log)
415f4786785SAidan Dodds                 log->Printf("%s - error reading argument: %" PRIu64, __FUNCTION__, uint64_t(i));
416f4786785SAidan Dodds             return false;
417f4786785SAidan Dodds         }
418f4786785SAidan Dodds     }
419f4786785SAidan Dodds     return true;
420f4786785SAidan Dodds }
421f4786785SAidan Dodds 
422f4786785SAidan Dodds bool
423f4786785SAidan Dodds GetArgs(ExecutionContext &context, ArgItem *arg_list, size_t num_args)
424f4786785SAidan Dodds {
425f4786785SAidan Dodds     Log *log = GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE);
426f4786785SAidan Dodds 
427f4786785SAidan Dodds     // verify that we have a target
428f4786785SAidan Dodds     if (!context.GetTargetPtr())
429f4786785SAidan Dodds     {
430f4786785SAidan Dodds         if (log)
431f4786785SAidan Dodds             log->Printf("%s - invalid target", __FUNCTION__);
432f4786785SAidan Dodds         return false;
433f4786785SAidan Dodds     }
434f4786785SAidan Dodds 
435f4786785SAidan Dodds     GetArgsCtx ctx = {context.GetRegisterContext(), context.GetProcessPtr()};
436f4786785SAidan Dodds     assert(ctx.reg_ctx && ctx.process);
437f4786785SAidan Dodds 
438f4786785SAidan Dodds     // dispatch based on architecture
439f4786785SAidan Dodds     switch (context.GetTargetPtr()->GetArchitecture().GetMachine())
440f4786785SAidan Dodds     {
441f4786785SAidan Dodds         case llvm::Triple::ArchType::x86:
442f4786785SAidan Dodds             return GetArgsX86(ctx, arg_list, num_args);
443f4786785SAidan Dodds 
444f4786785SAidan Dodds         case llvm::Triple::ArchType::x86_64:
445f4786785SAidan Dodds             return GetArgsX86_64(ctx, arg_list, num_args);
446f4786785SAidan Dodds 
447f4786785SAidan Dodds         case llvm::Triple::ArchType::arm:
448f4786785SAidan Dodds             return GetArgsArm(ctx, arg_list, num_args);
449f4786785SAidan Dodds 
450f4786785SAidan Dodds         case llvm::Triple::ArchType::aarch64:
451f4786785SAidan Dodds             return GetArgsAarch64(ctx, arg_list, num_args);
452f4786785SAidan Dodds 
453f4786785SAidan Dodds         case llvm::Triple::ArchType::mipsel:
454f4786785SAidan Dodds             return GetArgsMipsel(ctx, arg_list, num_args);
455f4786785SAidan Dodds 
456f4786785SAidan Dodds         case llvm::Triple::ArchType::mips64el:
457f4786785SAidan Dodds             return GetArgsMips64el(ctx, arg_list, num_args);
458f4786785SAidan Dodds 
459f4786785SAidan Dodds         default:
460f4786785SAidan Dodds             // unsupported architecture
461f4786785SAidan Dodds             if (log)
462f4786785SAidan Dodds             {
463f4786785SAidan Dodds                 log->Printf("%s - architecture not supported: '%s'", __FUNCTION__,
464f4786785SAidan Dodds                             context.GetTargetRef().GetArchitecture().GetArchitectureName());
465f4786785SAidan Dodds             }
466f4786785SAidan Dodds             return false;
467f4786785SAidan Dodds     }
468f4786785SAidan Dodds }
469222b937cSEugene Zelenko } // anonymous namespace
47078f339d1SEwan Crawford 
47178f339d1SEwan Crawford // The ScriptDetails class collects data associated with a single script instance.
47278f339d1SEwan Crawford struct RenderScriptRuntime::ScriptDetails
47378f339d1SEwan Crawford {
474222b937cSEugene Zelenko     ~ScriptDetails() = default;
47578f339d1SEwan Crawford 
47678f339d1SEwan Crawford     enum ScriptType
47778f339d1SEwan Crawford     {
47878f339d1SEwan Crawford         eScript,
47978f339d1SEwan Crawford         eScriptC
48078f339d1SEwan Crawford     };
48178f339d1SEwan Crawford 
48278f339d1SEwan Crawford     // The derived type of the script.
48378f339d1SEwan Crawford     empirical_type<ScriptType> type;
48478f339d1SEwan Crawford     // The name of the original source file.
48578f339d1SEwan Crawford     empirical_type<std::string> resName;
48678f339d1SEwan Crawford     // Path to script .so file on the device.
48778f339d1SEwan Crawford     empirical_type<std::string> scriptDyLib;
48878f339d1SEwan Crawford     // Directory where kernel objects are cached on device.
48978f339d1SEwan Crawford     empirical_type<std::string> cacheDir;
49078f339d1SEwan Crawford     // Pointer to the context which owns this script.
49178f339d1SEwan Crawford     empirical_type<lldb::addr_t> context;
49278f339d1SEwan Crawford     // Pointer to the script object itself.
49378f339d1SEwan Crawford     empirical_type<lldb::addr_t> script;
49478f339d1SEwan Crawford };
49578f339d1SEwan Crawford 
4968b244e21SEwan Crawford // This Element class represents the Element object in RS,
4978b244e21SEwan Crawford // defining the type associated with an Allocation.
4988b244e21SEwan Crawford struct RenderScriptRuntime::Element
49978f339d1SEwan Crawford {
50015f2bd95SEwan Crawford     // Taken from rsDefines.h
50115f2bd95SEwan Crawford     enum DataKind
50215f2bd95SEwan Crawford     {
50315f2bd95SEwan Crawford         RS_KIND_USER,
50415f2bd95SEwan Crawford         RS_KIND_PIXEL_L = 7,
50515f2bd95SEwan Crawford         RS_KIND_PIXEL_A,
50615f2bd95SEwan Crawford         RS_KIND_PIXEL_LA,
50715f2bd95SEwan Crawford         RS_KIND_PIXEL_RGB,
50815f2bd95SEwan Crawford         RS_KIND_PIXEL_RGBA,
50915f2bd95SEwan Crawford         RS_KIND_PIXEL_DEPTH,
51015f2bd95SEwan Crawford         RS_KIND_PIXEL_YUV,
51115f2bd95SEwan Crawford         RS_KIND_INVALID = 100
51215f2bd95SEwan Crawford     };
51378f339d1SEwan Crawford 
51415f2bd95SEwan Crawford     // Taken from rsDefines.h
51578f339d1SEwan Crawford     enum DataType
51678f339d1SEwan Crawford     {
51715f2bd95SEwan Crawford         RS_TYPE_NONE = 0,
51815f2bd95SEwan Crawford         RS_TYPE_FLOAT_16,
51915f2bd95SEwan Crawford         RS_TYPE_FLOAT_32,
52015f2bd95SEwan Crawford         RS_TYPE_FLOAT_64,
52115f2bd95SEwan Crawford         RS_TYPE_SIGNED_8,
52215f2bd95SEwan Crawford         RS_TYPE_SIGNED_16,
52315f2bd95SEwan Crawford         RS_TYPE_SIGNED_32,
52415f2bd95SEwan Crawford         RS_TYPE_SIGNED_64,
52515f2bd95SEwan Crawford         RS_TYPE_UNSIGNED_8,
52615f2bd95SEwan Crawford         RS_TYPE_UNSIGNED_16,
52715f2bd95SEwan Crawford         RS_TYPE_UNSIGNED_32,
52815f2bd95SEwan Crawford         RS_TYPE_UNSIGNED_64,
5292e920715SEwan Crawford         RS_TYPE_BOOLEAN,
5302e920715SEwan Crawford 
5312e920715SEwan Crawford         RS_TYPE_UNSIGNED_5_6_5,
5322e920715SEwan Crawford         RS_TYPE_UNSIGNED_5_5_5_1,
5332e920715SEwan Crawford         RS_TYPE_UNSIGNED_4_4_4_4,
5342e920715SEwan Crawford 
5352e920715SEwan Crawford         RS_TYPE_MATRIX_4X4,
5362e920715SEwan Crawford         RS_TYPE_MATRIX_3X3,
5372e920715SEwan Crawford         RS_TYPE_MATRIX_2X2,
5382e920715SEwan Crawford 
5392e920715SEwan Crawford         RS_TYPE_ELEMENT = 1000,
5402e920715SEwan Crawford         RS_TYPE_TYPE,
5412e920715SEwan Crawford         RS_TYPE_ALLOCATION,
5422e920715SEwan Crawford         RS_TYPE_SAMPLER,
5432e920715SEwan Crawford         RS_TYPE_SCRIPT,
5442e920715SEwan Crawford         RS_TYPE_MESH,
5452e920715SEwan Crawford         RS_TYPE_PROGRAM_FRAGMENT,
5462e920715SEwan Crawford         RS_TYPE_PROGRAM_VERTEX,
5472e920715SEwan Crawford         RS_TYPE_PROGRAM_RASTER,
5482e920715SEwan Crawford         RS_TYPE_PROGRAM_STORE,
5492e920715SEwan Crawford         RS_TYPE_FONT,
5502e920715SEwan Crawford 
5512e920715SEwan Crawford         RS_TYPE_INVALID = 10000
55278f339d1SEwan Crawford     };
55378f339d1SEwan Crawford 
5548b244e21SEwan Crawford     std::vector<Element> children;            // Child Element fields for structs
5558b244e21SEwan Crawford     empirical_type<lldb::addr_t> element_ptr; // Pointer to the RS Element of the Type
5568b244e21SEwan Crawford     empirical_type<DataType> type;            // Type of each data pointer stored by the allocation
5578b244e21SEwan Crawford     empirical_type<DataKind> type_kind;       // Defines pixel type if Allocation is created from an image
5588b244e21SEwan Crawford     empirical_type<uint32_t> type_vec_size;   // Vector size of each data point, e.g '4' for uchar4
5598b244e21SEwan Crawford     empirical_type<uint32_t> field_count;     // Number of Subelements
5608b244e21SEwan Crawford     empirical_type<uint32_t> datum_size;      // Size of a single Element with padding
5618b244e21SEwan Crawford     empirical_type<uint32_t> padding;         // Number of padding bytes
5628b244e21SEwan Crawford     empirical_type<uint32_t> array_size;      // Number of items in array, only needed for strucrs
5638b244e21SEwan Crawford     ConstString type_name;                    // Name of type, only needed for structs
5648b244e21SEwan Crawford 
565b3f7f69dSAidan Dodds     static const ConstString &
566b3f7f69dSAidan Dodds     GetFallbackStructName(); // Print this as the type name of a struct Element
5678b244e21SEwan Crawford                              // If we can't resolve the actual struct name
5688b59062aSEwan Crawford 
569b3f7f69dSAidan Dodds     bool
570b3f7f69dSAidan Dodds     shouldRefresh() const
5718b59062aSEwan Crawford     {
5728b59062aSEwan Crawford         const bool valid_ptr = element_ptr.isValid() && *element_ptr.get() != 0x0;
5738b59062aSEwan Crawford         const bool valid_type = type.isValid() && type_vec_size.isValid() && type_kind.isValid();
5748b59062aSEwan Crawford         return !valid_ptr || !valid_type || !datum_size.isValid();
5758b59062aSEwan Crawford     }
5768b244e21SEwan Crawford };
5778b244e21SEwan Crawford 
5788b244e21SEwan Crawford // This AllocationDetails class collects data associated with a single
5798b244e21SEwan Crawford // allocation instance.
5808b244e21SEwan Crawford struct RenderScriptRuntime::AllocationDetails
5818b244e21SEwan Crawford {
58215f2bd95SEwan Crawford     struct Dimension
58378f339d1SEwan Crawford     {
58415f2bd95SEwan Crawford         uint32_t dim_1;
58515f2bd95SEwan Crawford         uint32_t dim_2;
58615f2bd95SEwan Crawford         uint32_t dim_3;
58715f2bd95SEwan Crawford         uint32_t cubeMap;
58815f2bd95SEwan Crawford 
58915f2bd95SEwan Crawford         Dimension()
59015f2bd95SEwan Crawford         {
59115f2bd95SEwan Crawford             dim_1 = 0;
59215f2bd95SEwan Crawford             dim_2 = 0;
59315f2bd95SEwan Crawford             dim_3 = 0;
59415f2bd95SEwan Crawford             cubeMap = 0;
59515f2bd95SEwan Crawford         }
59678f339d1SEwan Crawford     };
59778f339d1SEwan Crawford 
59826e52a70SEwan Crawford     // The FileHeader struct specifies the header we use for writing allocations to a binary file.
59926e52a70SEwan Crawford     // Our format begins with the ASCII characters "RSAD", identifying the file as an allocation dump.
60026e52a70SEwan Crawford     // Member variables dims and hdr_size are then written consecutively, immediately followed by an instance of
60126e52a70SEwan Crawford     // the ElementHeader struct. Because Elements can contain subelements, there may be more than one instance
60226e52a70SEwan Crawford     // of the ElementHeader struct. With this first instance being the root element, and the other instances being
60326e52a70SEwan Crawford     // the root's descendants. To identify which instances are an ElementHeader's children, each struct
60426e52a70SEwan Crawford     // is immediately followed by a sequence of consecutive offsets to the start of its child structs.
60526e52a70SEwan Crawford     // These offsets are 4 bytes in size, and the 0 offset signifies no more children.
60655232f09SEwan Crawford     struct FileHeader
60755232f09SEwan Crawford     {
60855232f09SEwan Crawford         uint8_t ident[4];  // ASCII 'RSAD' identifying the file
60926e52a70SEwan Crawford         uint32_t dims[3];  // Dimensions
61026e52a70SEwan Crawford         uint16_t hdr_size; // Header size in bytes, including all element headers
61126e52a70SEwan Crawford     };
61226e52a70SEwan Crawford 
61326e52a70SEwan Crawford     struct ElementHeader
61426e52a70SEwan Crawford     {
61555232f09SEwan Crawford         uint16_t type;         // DataType enum
61655232f09SEwan Crawford         uint32_t kind;         // DataKind enum
61755232f09SEwan Crawford         uint32_t element_size; // Size of a single element, including padding
61826e52a70SEwan Crawford         uint16_t vector_size;  // Vector width
61926e52a70SEwan Crawford         uint32_t array_size;   // Number of elements in array
62055232f09SEwan Crawford     };
62155232f09SEwan Crawford 
62215f2bd95SEwan Crawford     // Monotonically increasing from 1
623b3f7f69dSAidan Dodds     static uint32_t ID;
62415f2bd95SEwan Crawford 
62515f2bd95SEwan Crawford     // Maps Allocation DataType enum and vector size to printable strings
62615f2bd95SEwan Crawford     // using mapping from RenderScript numerical types summary documentation
62715f2bd95SEwan Crawford     static const char *RsDataTypeToString[][4];
62815f2bd95SEwan Crawford 
62915f2bd95SEwan Crawford     // Maps Allocation DataKind enum to printable strings
63015f2bd95SEwan Crawford     static const char *RsDataKindToString[];
63115f2bd95SEwan Crawford 
632a0f08674SEwan Crawford     // Maps allocation types to format sizes for printing.
633b3f7f69dSAidan Dodds     static const uint32_t RSTypeToFormat[][3];
634a0f08674SEwan Crawford 
63515f2bd95SEwan Crawford     // Give each allocation an ID as a way
63615f2bd95SEwan Crawford     // for commands to reference it.
637b3f7f69dSAidan Dodds     const uint32_t id;
63815f2bd95SEwan Crawford 
6398b244e21SEwan Crawford     RenderScriptRuntime::Element element;  // Allocation Element type
64015f2bd95SEwan Crawford     empirical_type<Dimension> dimension;   // Dimensions of the Allocation
64115f2bd95SEwan Crawford     empirical_type<lldb::addr_t> address;  // Pointer to address of the RS Allocation
64215f2bd95SEwan Crawford     empirical_type<lldb::addr_t> data_ptr; // Pointer to the data held by the Allocation
64315f2bd95SEwan Crawford     empirical_type<lldb::addr_t> type_ptr; // Pointer to the RS Type of the Allocation
64415f2bd95SEwan Crawford     empirical_type<lldb::addr_t> context;  // Pointer to the RS Context of the Allocation
645a0f08674SEwan Crawford     empirical_type<uint32_t> size;         // Size of the allocation
646a0f08674SEwan Crawford     empirical_type<uint32_t> stride;       // Stride between rows of the allocation
64715f2bd95SEwan Crawford 
64815f2bd95SEwan Crawford     // Give each allocation an id, so we can reference it in user commands.
649b3f7f69dSAidan Dodds     AllocationDetails() : id(ID++) {}
6508b59062aSEwan Crawford 
651b3f7f69dSAidan Dodds     bool
652b3f7f69dSAidan Dodds     shouldRefresh() const
6538b59062aSEwan Crawford     {
6548b59062aSEwan Crawford         bool valid_ptrs = data_ptr.isValid() && *data_ptr.get() != 0x0;
6558b59062aSEwan Crawford         valid_ptrs = valid_ptrs && type_ptr.isValid() && *type_ptr.get() != 0x0;
6568b59062aSEwan Crawford         return !valid_ptrs || !dimension.isValid() || !size.isValid() || element.shouldRefresh();
6578b59062aSEwan Crawford     }
65815f2bd95SEwan Crawford };
65915f2bd95SEwan Crawford 
660fe06b5adSAdrian McCarthy const ConstString &
661fe06b5adSAdrian McCarthy RenderScriptRuntime::Element::GetFallbackStructName()
662fe06b5adSAdrian McCarthy {
663fe06b5adSAdrian McCarthy     static const ConstString FallbackStructName("struct");
664fe06b5adSAdrian McCarthy     return FallbackStructName;
665fe06b5adSAdrian McCarthy }
6668b244e21SEwan Crawford 
667b3f7f69dSAidan Dodds uint32_t RenderScriptRuntime::AllocationDetails::ID = 1;
66815f2bd95SEwan Crawford 
669b3f7f69dSAidan Dodds const char *RenderScriptRuntime::AllocationDetails::RsDataKindToString[] = {
67015f2bd95SEwan Crawford     "User",
671b3f7f69dSAidan Dodds     "Undefined",  "Undefined",   "Undefined", "Undefined", "Undefined",  "Undefined", // Enum jumps from 0 to 7
672b3f7f69dSAidan Dodds     "L Pixel",    "A Pixel",     "LA Pixel",  "RGB Pixel",
673b3f7f69dSAidan Dodds     "RGBA Pixel", "Pixel Depth", "YUV Pixel"};
67415f2bd95SEwan Crawford 
675b3f7f69dSAidan Dodds const char *RenderScriptRuntime::AllocationDetails::RsDataTypeToString[][4] = {
67615f2bd95SEwan Crawford     {"None", "None", "None", "None"},
67715f2bd95SEwan Crawford     {"half", "half2", "half3", "half4"},
67815f2bd95SEwan Crawford     {"float", "float2", "float3", "float4"},
67915f2bd95SEwan Crawford     {"double", "double2", "double3", "double4"},
68015f2bd95SEwan Crawford     {"char", "char2", "char3", "char4"},
68115f2bd95SEwan Crawford     {"short", "short2", "short3", "short4"},
68215f2bd95SEwan Crawford     {"int", "int2", "int3", "int4"},
68315f2bd95SEwan Crawford     {"long", "long2", "long3", "long4"},
68415f2bd95SEwan Crawford     {"uchar", "uchar2", "uchar3", "uchar4"},
68515f2bd95SEwan Crawford     {"ushort", "ushort2", "ushort3", "ushort4"},
68615f2bd95SEwan Crawford     {"uint", "uint2", "uint3", "uint4"},
68715f2bd95SEwan Crawford     {"ulong", "ulong2", "ulong3", "ulong4"},
6882e920715SEwan Crawford     {"bool", "bool2", "bool3", "bool4"},
6892e920715SEwan Crawford     {"packed_565", "packed_565", "packed_565", "packed_565"},
6902e920715SEwan Crawford     {"packed_5551", "packed_5551", "packed_5551", "packed_5551"},
6912e920715SEwan Crawford     {"packed_4444", "packed_4444", "packed_4444", "packed_4444"},
6922e920715SEwan Crawford     {"rs_matrix4x4", "rs_matrix4x4", "rs_matrix4x4", "rs_matrix4x4"},
6932e920715SEwan Crawford     {"rs_matrix3x3", "rs_matrix3x3", "rs_matrix3x3", "rs_matrix3x3"},
6942e920715SEwan Crawford     {"rs_matrix2x2", "rs_matrix2x2", "rs_matrix2x2", "rs_matrix2x2"},
6952e920715SEwan Crawford 
6962e920715SEwan Crawford     // Handlers
6972e920715SEwan Crawford     {"RS Element", "RS Element", "RS Element", "RS Element"},
6982e920715SEwan Crawford     {"RS Type", "RS Type", "RS Type", "RS Type"},
6992e920715SEwan Crawford     {"RS Allocation", "RS Allocation", "RS Allocation", "RS Allocation"},
7002e920715SEwan Crawford     {"RS Sampler", "RS Sampler", "RS Sampler", "RS Sampler"},
7012e920715SEwan Crawford     {"RS Script", "RS Script", "RS Script", "RS Script"},
7022e920715SEwan Crawford 
7032e920715SEwan Crawford     // Deprecated
7042e920715SEwan Crawford     {"RS Mesh", "RS Mesh", "RS Mesh", "RS Mesh"},
7052e920715SEwan Crawford     {"RS Program Fragment", "RS Program Fragment", "RS Program Fragment", "RS Program Fragment"},
7062e920715SEwan Crawford     {"RS Program Vertex", "RS Program Vertex", "RS Program Vertex", "RS Program Vertex"},
7072e920715SEwan Crawford     {"RS Program Raster", "RS Program Raster", "RS Program Raster", "RS Program Raster"},
7082e920715SEwan Crawford     {"RS Program Store", "RS Program Store", "RS Program Store", "RS Program Store"},
709b3f7f69dSAidan Dodds     {"RS Font", "RS Font", "RS Font", "RS Font"}};
71078f339d1SEwan Crawford 
711a0f08674SEwan Crawford // Used as an index into the RSTypeToFormat array elements
712b3f7f69dSAidan Dodds enum TypeToFormatIndex
713b3f7f69dSAidan Dodds {
714a0f08674SEwan Crawford     eFormatSingle = 0,
715a0f08674SEwan Crawford     eFormatVector,
716a0f08674SEwan Crawford     eElementSize
717a0f08674SEwan Crawford };
718a0f08674SEwan Crawford 
719a0f08674SEwan Crawford // { format enum of single element, format enum of element vector, size of element}
720b3f7f69dSAidan Dodds const uint32_t RenderScriptRuntime::AllocationDetails::RSTypeToFormat[][3] = {
721a0f08674SEwan Crawford     {eFormatHex, eFormatHex, 1},                                          // RS_TYPE_NONE
722a0f08674SEwan Crawford     {eFormatFloat, eFormatVectorOfFloat16, 2},                            // RS_TYPE_FLOAT_16
723a0f08674SEwan Crawford     {eFormatFloat, eFormatVectorOfFloat32, sizeof(float)},                // RS_TYPE_FLOAT_32
724a0f08674SEwan Crawford     {eFormatFloat, eFormatVectorOfFloat64, sizeof(double)},               // RS_TYPE_FLOAT_64
725a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfSInt8, sizeof(int8_t)},               // RS_TYPE_SIGNED_8
726a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfSInt16, sizeof(int16_t)},             // RS_TYPE_SIGNED_16
727a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfSInt32, sizeof(int32_t)},             // RS_TYPE_SIGNED_32
728a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfSInt64, sizeof(int64_t)},             // RS_TYPE_SIGNED_64
729a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfUInt8, sizeof(uint8_t)},              // RS_TYPE_UNSIGNED_8
730a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfUInt16, sizeof(uint16_t)},            // RS_TYPE_UNSIGNED_16
731a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfUInt32, sizeof(uint32_t)},            // RS_TYPE_UNSIGNED_32
732a0f08674SEwan Crawford     {eFormatDecimal, eFormatVectorOfUInt64, sizeof(uint64_t)},            // RS_TYPE_UNSIGNED_64
7332e920715SEwan Crawford     {eFormatBoolean, eFormatBoolean, 1},                                  // RS_TYPE_BOOL
7342e920715SEwan Crawford     {eFormatHex, eFormatHex, sizeof(uint16_t)},                           // RS_TYPE_UNSIGNED_5_6_5
7352e920715SEwan Crawford     {eFormatHex, eFormatHex, sizeof(uint16_t)},                           // RS_TYPE_UNSIGNED_5_5_5_1
7362e920715SEwan Crawford     {eFormatHex, eFormatHex, sizeof(uint16_t)},                           // RS_TYPE_UNSIGNED_4_4_4_4
7372e920715SEwan Crawford     {eFormatVectorOfFloat32, eFormatVectorOfFloat32, sizeof(float) * 16}, // RS_TYPE_MATRIX_4X4
7382e920715SEwan Crawford     {eFormatVectorOfFloat32, eFormatVectorOfFloat32, sizeof(float) * 9},  // RS_TYPE_MATRIX_3X3
7392e920715SEwan Crawford     {eFormatVectorOfFloat32, eFormatVectorOfFloat32, sizeof(float) * 4}   // RS_TYPE_MATRIX_2X2
740a0f08674SEwan Crawford };
741a0f08674SEwan Crawford 
7424f8817c2SEwan Crawford const std::string RenderScriptRuntime::s_runtimeExpandSuffix(".expand");
743a9759599SPavel Labath const std::array<const char *, 3> RenderScriptRuntime::s_runtimeCoordVars{{"rsIndex", "p->current.y", "p->current.z"}};
7445ec532a9SColin Riley //------------------------------------------------------------------
7455ec532a9SColin Riley // Static Functions
7465ec532a9SColin Riley //------------------------------------------------------------------
7475ec532a9SColin Riley LanguageRuntime *
7485ec532a9SColin Riley RenderScriptRuntime::CreateInstance(Process *process, lldb::LanguageType language)
7495ec532a9SColin Riley {
7505ec532a9SColin Riley 
7515ec532a9SColin Riley     if (language == eLanguageTypeExtRenderScript)
7525ec532a9SColin Riley         return new RenderScriptRuntime(process);
7535ec532a9SColin Riley     else
754b3f7f69dSAidan Dodds         return nullptr;
7555ec532a9SColin Riley }
7565ec532a9SColin Riley 
75798156583SEwan Crawford // Callback with a module to search for matching symbols.
75898156583SEwan Crawford // We first check that the module contains RS kernels.
75998156583SEwan Crawford // Then look for a symbol which matches our kernel name.
76098156583SEwan Crawford // The breakpoint address is finally set using the address of this symbol.
76198156583SEwan Crawford Searcher::CallbackReturn
762b3f7f69dSAidan Dodds RSBreakpointResolver::SearchCallback(SearchFilter &filter, SymbolContext &context, Address *, bool)
76398156583SEwan Crawford {
76498156583SEwan Crawford     ModuleSP module = context.module_sp;
76598156583SEwan Crawford 
76698156583SEwan Crawford     if (!module)
76798156583SEwan Crawford         return Searcher::eCallbackReturnContinue;
76898156583SEwan Crawford 
76998156583SEwan Crawford     // Is this a module containing renderscript kernels?
77098156583SEwan Crawford     if (nullptr == module->FindFirstSymbolWithNameAndType(ConstString(".rs.info"), eSymbolTypeData))
77198156583SEwan Crawford         return Searcher::eCallbackReturnContinue;
77298156583SEwan Crawford 
77398156583SEwan Crawford     // Attempt to set a breakpoint on the kernel name symbol within the module library.
77498156583SEwan Crawford     // If it's not found, it's likely debug info is unavailable - try to set a
77598156583SEwan Crawford     // breakpoint on <name>.expand.
77698156583SEwan Crawford 
77798156583SEwan Crawford     const Symbol *kernel_sym = module->FindFirstSymbolWithNameAndType(m_kernel_name, eSymbolTypeCode);
77898156583SEwan Crawford     if (!kernel_sym)
77998156583SEwan Crawford     {
78098156583SEwan Crawford         std::string kernel_name_expanded(m_kernel_name.AsCString());
78198156583SEwan Crawford         kernel_name_expanded.append(".expand");
78298156583SEwan Crawford         kernel_sym = module->FindFirstSymbolWithNameAndType(ConstString(kernel_name_expanded.c_str()), eSymbolTypeCode);
78398156583SEwan Crawford     }
78498156583SEwan Crawford 
78598156583SEwan Crawford     if (kernel_sym)
78698156583SEwan Crawford     {
78798156583SEwan Crawford         Address bp_addr = kernel_sym->GetAddress();
78898156583SEwan Crawford         if (filter.AddressPasses(bp_addr))
78998156583SEwan Crawford             m_breakpoint->AddLocation(bp_addr);
79098156583SEwan Crawford     }
79198156583SEwan Crawford 
79298156583SEwan Crawford     return Searcher::eCallbackReturnContinue;
79398156583SEwan Crawford }
79498156583SEwan Crawford 
7955ec532a9SColin Riley void
7965ec532a9SColin Riley RenderScriptRuntime::Initialize()
7975ec532a9SColin Riley {
798b3f7f69dSAidan Dodds     PluginManager::RegisterPlugin(GetPluginNameStatic(), "RenderScript language support", CreateInstance,
799b3f7f69dSAidan Dodds                                   GetCommandObject);
8005ec532a9SColin Riley }
8015ec532a9SColin Riley 
8025ec532a9SColin Riley void
8035ec532a9SColin Riley RenderScriptRuntime::Terminate()
8045ec532a9SColin Riley {
8055ec532a9SColin Riley     PluginManager::UnregisterPlugin(CreateInstance);
8065ec532a9SColin Riley }
8075ec532a9SColin Riley 
8085ec532a9SColin Riley lldb_private::ConstString
8095ec532a9SColin Riley RenderScriptRuntime::GetPluginNameStatic()
8105ec532a9SColin Riley {
8115ec532a9SColin Riley     static ConstString g_name("renderscript");
8125ec532a9SColin Riley     return g_name;
8135ec532a9SColin Riley }
8145ec532a9SColin Riley 
815ef20b08fSColin Riley RenderScriptRuntime::ModuleKind
816ef20b08fSColin Riley RenderScriptRuntime::GetModuleKind(const lldb::ModuleSP &module_sp)
817ef20b08fSColin Riley {
818ef20b08fSColin Riley     if (module_sp)
819ef20b08fSColin Riley     {
820ef20b08fSColin Riley         // Is this a module containing renderscript kernels?
821ef20b08fSColin Riley         const Symbol *info_sym = module_sp->FindFirstSymbolWithNameAndType(ConstString(".rs.info"), eSymbolTypeData);
822ef20b08fSColin Riley         if (info_sym)
823ef20b08fSColin Riley         {
824ef20b08fSColin Riley             return eModuleKindKernelObj;
825ef20b08fSColin Riley         }
8264640cde1SColin Riley 
8274640cde1SColin Riley         // Is this the main RS runtime library
8284640cde1SColin Riley         const ConstString rs_lib("libRS.so");
8294640cde1SColin Riley         if (module_sp->GetFileSpec().GetFilename() == rs_lib)
8304640cde1SColin Riley         {
8314640cde1SColin Riley             return eModuleKindLibRS;
8324640cde1SColin Riley         }
8334640cde1SColin Riley 
8344640cde1SColin Riley         const ConstString rs_driverlib("libRSDriver.so");
8354640cde1SColin Riley         if (module_sp->GetFileSpec().GetFilename() == rs_driverlib)
8364640cde1SColin Riley         {
8374640cde1SColin Riley             return eModuleKindDriver;
8384640cde1SColin Riley         }
8394640cde1SColin Riley 
84015f2bd95SEwan Crawford         const ConstString rs_cpureflib("libRSCpuRef.so");
8414640cde1SColin Riley         if (module_sp->GetFileSpec().GetFilename() == rs_cpureflib)
8424640cde1SColin Riley         {
8434640cde1SColin Riley             return eModuleKindImpl;
8444640cde1SColin Riley         }
845ef20b08fSColin Riley     }
846ef20b08fSColin Riley     return eModuleKindIgnored;
847ef20b08fSColin Riley }
848ef20b08fSColin Riley 
849ef20b08fSColin Riley bool
850ef20b08fSColin Riley RenderScriptRuntime::IsRenderScriptModule(const lldb::ModuleSP &module_sp)
851ef20b08fSColin Riley {
852ef20b08fSColin Riley     return GetModuleKind(module_sp) != eModuleKindIgnored;
853ef20b08fSColin Riley }
854ef20b08fSColin Riley 
855ef20b08fSColin Riley void
856ef20b08fSColin Riley RenderScriptRuntime::ModulesDidLoad(const ModuleList &module_list)
857ef20b08fSColin Riley {
858ef20b08fSColin Riley     Mutex::Locker locker(module_list.GetMutex());
859ef20b08fSColin Riley 
860ef20b08fSColin Riley     size_t num_modules = module_list.GetSize();
861ef20b08fSColin Riley     for (size_t i = 0; i < num_modules; i++)
862ef20b08fSColin Riley     {
863ef20b08fSColin Riley         auto mod = module_list.GetModuleAtIndex(i);
864ef20b08fSColin Riley         if (IsRenderScriptModule(mod))
865ef20b08fSColin Riley         {
866ef20b08fSColin Riley             LoadModule(mod);
867ef20b08fSColin Riley         }
868ef20b08fSColin Riley     }
869ef20b08fSColin Riley }
870ef20b08fSColin Riley 
8715ec532a9SColin Riley //------------------------------------------------------------------
8725ec532a9SColin Riley // PluginInterface protocol
8735ec532a9SColin Riley //------------------------------------------------------------------
8745ec532a9SColin Riley lldb_private::ConstString
8755ec532a9SColin Riley RenderScriptRuntime::GetPluginName()
8765ec532a9SColin Riley {
8775ec532a9SColin Riley     return GetPluginNameStatic();
8785ec532a9SColin Riley }
8795ec532a9SColin Riley 
8805ec532a9SColin Riley uint32_t
8815ec532a9SColin Riley RenderScriptRuntime::GetPluginVersion()
8825ec532a9SColin Riley {
8835ec532a9SColin Riley     return 1;
8845ec532a9SColin Riley }
8855ec532a9SColin Riley 
8865ec532a9SColin Riley bool
8875ec532a9SColin Riley RenderScriptRuntime::IsVTableName(const char *name)
8885ec532a9SColin Riley {
8895ec532a9SColin Riley     return false;
8905ec532a9SColin Riley }
8915ec532a9SColin Riley 
8925ec532a9SColin Riley bool
8935ec532a9SColin Riley RenderScriptRuntime::GetDynamicTypeAndAddress(ValueObject &in_value, lldb::DynamicValueType use_dynamic,
8940b6003f3SEnrico Granata                                               TypeAndOrName &class_type_or_name, Address &address,
8950b6003f3SEnrico Granata                                               Value::ValueType &value_type)
8965ec532a9SColin Riley {
8975ec532a9SColin Riley     return false;
8985ec532a9SColin Riley }
8995ec532a9SColin Riley 
900c74275bcSEnrico Granata TypeAndOrName
901b3f7f69dSAidan Dodds RenderScriptRuntime::FixUpDynamicType(const TypeAndOrName &type_and_or_name, ValueObject &static_value)
902c74275bcSEnrico Granata {
903c74275bcSEnrico Granata     return type_and_or_name;
904c74275bcSEnrico Granata }
905c74275bcSEnrico Granata 
9065ec532a9SColin Riley bool
9075ec532a9SColin Riley RenderScriptRuntime::CouldHaveDynamicValue(ValueObject &in_value)
9085ec532a9SColin Riley {
9095ec532a9SColin Riley     return false;
9105ec532a9SColin Riley }
9115ec532a9SColin Riley 
9125ec532a9SColin Riley lldb::BreakpointResolverSP
9135ec532a9SColin Riley RenderScriptRuntime::CreateExceptionResolver(Breakpoint *bkpt, bool catch_bp, bool throw_bp)
9145ec532a9SColin Riley {
9155ec532a9SColin Riley     BreakpointResolverSP resolver_sp;
9165ec532a9SColin Riley     return resolver_sp;
9175ec532a9SColin Riley }
9185ec532a9SColin Riley 
919b3f7f69dSAidan Dodds const RenderScriptRuntime::HookDefn RenderScriptRuntime::s_runtimeHookDefns[] = {
9204640cde1SColin Riley     // rsdScript
92182780287SAidan Dodds     {
922b3f7f69dSAidan Dodds         "rsdScriptInit",
923b3f7f69dSAidan Dodds         "_Z13rsdScriptInitPKN7android12renderscript7ContextEPNS0_7ScriptCEPKcS7_PKhjj",
924b3f7f69dSAidan Dodds         "_Z13rsdScriptInitPKN7android12renderscript7ContextEPNS0_7ScriptCEPKcS7_PKhmj",
925b3f7f69dSAidan Dodds         0,
926b3f7f69dSAidan Dodds         RenderScriptRuntime::eModuleKindDriver,
927b3f7f69dSAidan Dodds         &lldb_private::RenderScriptRuntime::CaptureScriptInit
92882780287SAidan Dodds     },
92982780287SAidan Dodds     {
930b3f7f69dSAidan Dodds         "rsdScriptInvokeForEachMulti",
931b3f7f69dSAidan Dodds         "_Z27rsdScriptInvokeForEachMultiPKN7android12renderscript7ContextEPNS0_6ScriptEjPPKNS0_10AllocationEjPS6_PKvjPK12RsScriptCall",
932b3f7f69dSAidan Dodds         "_Z27rsdScriptInvokeForEachMultiPKN7android12renderscript7ContextEPNS0_6ScriptEjPPKNS0_10AllocationEmPS6_PKvmPK12RsScriptCall",
933b3f7f69dSAidan Dodds         0,
934b3f7f69dSAidan Dodds         RenderScriptRuntime::eModuleKindDriver,
935b3f7f69dSAidan Dodds         &lldb_private::RenderScriptRuntime::CaptureScriptInvokeForEachMulti
93682780287SAidan Dodds     },
93782780287SAidan Dodds     {
938b3f7f69dSAidan Dodds         "rsdScriptSetGlobalVar",
939b3f7f69dSAidan Dodds         "_Z21rsdScriptSetGlobalVarPKN7android12renderscript7ContextEPKNS0_6ScriptEjPvj",
940b3f7f69dSAidan Dodds         "_Z21rsdScriptSetGlobalVarPKN7android12renderscript7ContextEPKNS0_6ScriptEjPvm",
941b3f7f69dSAidan Dodds         0,
942b3f7f69dSAidan Dodds         RenderScriptRuntime::eModuleKindDriver,
943b3f7f69dSAidan Dodds         &lldb_private::RenderScriptRuntime::CaptureSetGlobalVar
94482780287SAidan Dodds     },
9454640cde1SColin Riley 
9464640cde1SColin Riley     // rsdAllocation
94782780287SAidan Dodds     {
948b3f7f69dSAidan Dodds         "rsdAllocationInit",
949b3f7f69dSAidan Dodds         "_Z17rsdAllocationInitPKN7android12renderscript7ContextEPNS0_10AllocationEb",
950b3f7f69dSAidan Dodds         "_Z17rsdAllocationInitPKN7android12renderscript7ContextEPNS0_10AllocationEb",
951b3f7f69dSAidan Dodds         0,
952b3f7f69dSAidan Dodds         RenderScriptRuntime::eModuleKindDriver,
953b3f7f69dSAidan Dodds         &lldb_private::RenderScriptRuntime::CaptureAllocationInit
95482780287SAidan Dodds     },
95582780287SAidan Dodds     {
956b3f7f69dSAidan Dodds         "rsdAllocationRead2D",
957b3f7f69dSAidan Dodds         "_Z19rsdAllocationRead2DPKN7android12renderscript7ContextEPKNS0_10AllocationEjjj23RsAllocationCubemapFacejjPvjj",
958b3f7f69dSAidan Dodds         "_Z19rsdAllocationRead2DPKN7android12renderscript7ContextEPKNS0_10AllocationEjjj23RsAllocationCubemapFacejjPvmm",
959b3f7f69dSAidan Dodds         0,
960b3f7f69dSAidan Dodds         RenderScriptRuntime::eModuleKindDriver,
961b3f7f69dSAidan Dodds         nullptr
96282780287SAidan Dodds     },
963e69df382SEwan Crawford     {
964b3f7f69dSAidan Dodds         "rsdAllocationDestroy",
965b3f7f69dSAidan Dodds         "_Z20rsdAllocationDestroyPKN7android12renderscript7ContextEPNS0_10AllocationE",
966b3f7f69dSAidan Dodds         "_Z20rsdAllocationDestroyPKN7android12renderscript7ContextEPNS0_10AllocationE",
967b3f7f69dSAidan Dodds         0,
968b3f7f69dSAidan Dodds         RenderScriptRuntime::eModuleKindDriver,
969b3f7f69dSAidan Dodds         &lldb_private::RenderScriptRuntime::CaptureAllocationDestroy
970e69df382SEwan Crawford     },
9714640cde1SColin Riley };
9724640cde1SColin Riley 
973222b937cSEugene Zelenko const size_t RenderScriptRuntime::s_runtimeHookCount = sizeof(s_runtimeHookDefns) / sizeof(s_runtimeHookDefns[0]);
9744640cde1SColin Riley 
9754640cde1SColin Riley bool
976b3f7f69dSAidan Dodds RenderScriptRuntime::HookCallback(void *baton, StoppointCallbackContext *ctx, lldb::user_id_t break_id,
977b3f7f69dSAidan Dodds                                   lldb::user_id_t break_loc_id)
9784640cde1SColin Riley {
9794640cde1SColin Riley     RuntimeHook *hook_info = (RuntimeHook *)baton;
9804640cde1SColin Riley     ExecutionContext context(ctx->exe_ctx_ref);
9814640cde1SColin Riley 
982b3f7f69dSAidan Dodds     RenderScriptRuntime *lang_rt =
983b3f7f69dSAidan Dodds         (RenderScriptRuntime *)context.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
9844640cde1SColin Riley 
9854640cde1SColin Riley     lang_rt->HookCallback(hook_info, context);
9864640cde1SColin Riley 
9874640cde1SColin Riley     return false;
9884640cde1SColin Riley }
9894640cde1SColin Riley 
9904640cde1SColin Riley void
9914640cde1SColin Riley RenderScriptRuntime::HookCallback(RuntimeHook *hook_info, ExecutionContext &context)
9924640cde1SColin Riley {
9934640cde1SColin Riley     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
9944640cde1SColin Riley 
9954640cde1SColin Riley     if (log)
996b3f7f69dSAidan Dodds         log->Printf("%s - '%s'", __FUNCTION__, hook_info->defn->name);
9974640cde1SColin Riley 
9984640cde1SColin Riley     if (hook_info->defn->grabber)
9994640cde1SColin Riley     {
10004640cde1SColin Riley         (this->*(hook_info->defn->grabber))(hook_info, context);
10014640cde1SColin Riley     }
10024640cde1SColin Riley }
10034640cde1SColin Riley 
10044640cde1SColin Riley void
1005e09c44b6SAidan Dodds RenderScriptRuntime::CaptureScriptInvokeForEachMulti(RuntimeHook* hook_info,
1006e09c44b6SAidan Dodds                                                      ExecutionContext& context)
1007e09c44b6SAidan Dodds {
1008e09c44b6SAidan Dodds     Log* log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
1009e09c44b6SAidan Dodds 
1010f4786785SAidan Dodds     enum
1011e09c44b6SAidan Dodds     {
1012f4786785SAidan Dodds         eRsContext = 0,
1013f4786785SAidan Dodds         eRsScript,
1014f4786785SAidan Dodds         eRsSlot,
1015f4786785SAidan Dodds         eRsAIns,
1016f4786785SAidan Dodds         eRsInLen,
1017f4786785SAidan Dodds         eRsAOut,
1018f4786785SAidan Dodds         eRsUsr,
1019f4786785SAidan Dodds         eRsUsrLen,
1020f4786785SAidan Dodds         eRsSc,
1021f4786785SAidan Dodds     };
1022e09c44b6SAidan Dodds 
10231ee07253SSaleem Abdulrasool     std::array<ArgItem, 9> args{{
1024f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // const Context       *rsc
1025f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // Script              *s
1026f4786785SAidan Dodds         ArgItem{ArgItem::eInt32, 0},   // uint32_t             slot
1027f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // const Allocation   **aIns
1028f4786785SAidan Dodds         ArgItem{ArgItem::eInt32, 0},   // size_t               inLen
1029f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // Allocation          *aout
1030f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // const void          *usr
1031f4786785SAidan Dodds         ArgItem{ArgItem::eInt32, 0},   // size_t               usrLen
1032f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // const RsScriptCall  *sc
10331ee07253SSaleem Abdulrasool     }};
1034e09c44b6SAidan Dodds 
1035f4786785SAidan Dodds     bool success = GetArgs(context, &args[0], args.size());
1036e09c44b6SAidan Dodds     if (!success)
1037e09c44b6SAidan Dodds     {
1038e09c44b6SAidan Dodds         if (log)
1039b3f7f69dSAidan Dodds             log->Printf("%s - Error while reading the function parameters", __FUNCTION__);
1040e09c44b6SAidan Dodds         return;
1041e09c44b6SAidan Dodds     }
1042e09c44b6SAidan Dodds 
1043e09c44b6SAidan Dodds     const uint32_t target_ptr_size = m_process->GetAddressByteSize();
1044e09c44b6SAidan Dodds     Error error;
1045e09c44b6SAidan Dodds     std::vector<uint64_t> allocs;
1046e09c44b6SAidan Dodds 
1047e09c44b6SAidan Dodds     // traverse allocation list
1048f4786785SAidan Dodds     for (uint64_t i = 0; i < uint64_t(args[eRsInLen]); ++i)
1049e09c44b6SAidan Dodds     {
1050e09c44b6SAidan Dodds         // calculate offest to allocation pointer
1051f4786785SAidan Dodds         const addr_t addr = addr_t(args[eRsAIns]) + i * target_ptr_size;
1052e09c44b6SAidan Dodds 
1053e09c44b6SAidan Dodds         // Note: due to little endian layout, reading 32bits or 64bits into res64 will
1054e09c44b6SAidan Dodds         //       give the correct results.
1055e09c44b6SAidan Dodds 
1056e09c44b6SAidan Dodds         uint64_t res64 = 0;
1057e09c44b6SAidan Dodds         size_t read = m_process->ReadMemory(addr, &res64, target_ptr_size, error);
1058e09c44b6SAidan Dodds         if (read != target_ptr_size || !error.Success())
1059e09c44b6SAidan Dodds         {
1060e09c44b6SAidan Dodds             if (log)
1061f4786785SAidan Dodds                 log->Printf("%s - Error while reading allocation list argument %" PRIu64, __FUNCTION__, i);
1062e09c44b6SAidan Dodds         }
1063e09c44b6SAidan Dodds         else
1064e09c44b6SAidan Dodds         {
1065e09c44b6SAidan Dodds             allocs.push_back(res64);
1066e09c44b6SAidan Dodds         }
1067e09c44b6SAidan Dodds     }
1068e09c44b6SAidan Dodds 
1069e09c44b6SAidan Dodds     // if there is an output allocation track it
1070f4786785SAidan Dodds     if (uint64_t aOut = uint64_t(args[eRsAOut]))
1071e09c44b6SAidan Dodds     {
1072f4786785SAidan Dodds         allocs.push_back(aOut);
1073e09c44b6SAidan Dodds     }
1074e09c44b6SAidan Dodds 
1075e09c44b6SAidan Dodds     // for all allocations we have found
1076e09c44b6SAidan Dodds     for (const uint64_t alloc_addr : allocs)
1077e09c44b6SAidan Dodds     {
1078e09c44b6SAidan Dodds         AllocationDetails* alloc = LookUpAllocation(alloc_addr, true);
1079e09c44b6SAidan Dodds         if (alloc)
1080e09c44b6SAidan Dodds         {
1081e09c44b6SAidan Dodds             // save the allocation address
1082e09c44b6SAidan Dodds             if (alloc->address.isValid())
1083e09c44b6SAidan Dodds             {
1084e09c44b6SAidan Dodds                 // check the allocation address we already have matches
1085e09c44b6SAidan Dodds                 assert(*alloc->address.get() == alloc_addr);
1086e09c44b6SAidan Dodds             }
1087e09c44b6SAidan Dodds             else
1088e09c44b6SAidan Dodds             {
1089e09c44b6SAidan Dodds                 alloc->address = alloc_addr;
1090e09c44b6SAidan Dodds             }
1091e09c44b6SAidan Dodds 
1092e09c44b6SAidan Dodds             // save the context
1093e09c44b6SAidan Dodds             if (log)
1094e09c44b6SAidan Dodds             {
1095f4786785SAidan Dodds                 if (alloc->context.isValid() && *alloc->context.get() != addr_t(args[eRsContext]))
1096b3f7f69dSAidan Dodds                     log->Printf("%s - Allocation used by multiple contexts", __FUNCTION__);
1097e09c44b6SAidan Dodds             }
1098f4786785SAidan Dodds             alloc->context = addr_t(args[eRsContext]);
1099e09c44b6SAidan Dodds         }
1100e09c44b6SAidan Dodds     }
1101e09c44b6SAidan Dodds 
1102e09c44b6SAidan Dodds     // make sure we track this script object
1103f4786785SAidan Dodds     if (lldb_private::RenderScriptRuntime::ScriptDetails *script = LookUpScript(addr_t(args[eRsScript]), true))
1104e09c44b6SAidan Dodds     {
1105e09c44b6SAidan Dodds         if (log)
1106e09c44b6SAidan Dodds         {
1107f4786785SAidan Dodds             if (script->context.isValid() && *script->context.get() != addr_t(args[eRsContext]))
1108b3f7f69dSAidan Dodds                 log->Printf("%s - Script used by multiple contexts", __FUNCTION__);
1109e09c44b6SAidan Dodds         }
1110f4786785SAidan Dodds         script->context = addr_t(args[eRsContext]);
1111e09c44b6SAidan Dodds     }
1112e09c44b6SAidan Dodds }
1113e09c44b6SAidan Dodds 
1114e09c44b6SAidan Dodds void
1115b3f7f69dSAidan Dodds RenderScriptRuntime::CaptureSetGlobalVar(RuntimeHook *hook_info, ExecutionContext &context)
11164640cde1SColin Riley {
11174640cde1SColin Riley     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
11184640cde1SColin Riley 
1119f4786785SAidan Dodds     enum
1120f4786785SAidan Dodds     {
1121f4786785SAidan Dodds         eRsContext,
1122f4786785SAidan Dodds         eRsScript,
1123f4786785SAidan Dodds         eRsId,
1124f4786785SAidan Dodds         eRsData,
1125f4786785SAidan Dodds         eRsLength,
1126f4786785SAidan Dodds     };
11274640cde1SColin Riley 
11281ee07253SSaleem Abdulrasool     std::array<ArgItem, 5> args{{
1129f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // eRsContext
1130f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // eRsScript
1131f4786785SAidan Dodds         ArgItem{ArgItem::eInt32, 0},   // eRsId
1132f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // eRsData
1133f4786785SAidan Dodds         ArgItem{ArgItem::eInt32, 0},   // eRsLength
11341ee07253SSaleem Abdulrasool     }};
11354640cde1SColin Riley 
1136f4786785SAidan Dodds     bool success = GetArgs(context, &args[0], args.size());
113782780287SAidan Dodds     if (!success)
113882780287SAidan Dodds     {
113982780287SAidan Dodds         if (log)
1140b3f7f69dSAidan Dodds             log->Printf("%s - error reading the function parameters.", __FUNCTION__);
114182780287SAidan Dodds         return;
114282780287SAidan Dodds     }
11434640cde1SColin Riley 
11444640cde1SColin Riley     if (log)
11454640cde1SColin Riley     {
1146f4786785SAidan Dodds         log->Printf("%s - 0x%" PRIx64 ",0x%" PRIx64 " slot %" PRIu64 " = 0x%" PRIx64 ":%" PRIu64 "bytes.", __FUNCTION__,
1147f4786785SAidan Dodds                     uint64_t(args[eRsContext]), uint64_t(args[eRsScript]), uint64_t(args[eRsId]),
1148f4786785SAidan Dodds                     uint64_t(args[eRsData]), uint64_t(args[eRsLength]));
11494640cde1SColin Riley 
1150f4786785SAidan Dodds         addr_t script_addr = addr_t(args[eRsScript]);
11514640cde1SColin Riley         if (m_scriptMappings.find(script_addr) != m_scriptMappings.end())
11524640cde1SColin Riley         {
11534640cde1SColin Riley             auto rsm = m_scriptMappings[script_addr];
1154f4786785SAidan Dodds             if (uint64_t(args[eRsId]) < rsm->m_globals.size())
11554640cde1SColin Riley             {
1156f4786785SAidan Dodds                 auto rsg = rsm->m_globals[uint64_t(args[eRsId])];
1157f4786785SAidan Dodds                 log->Printf("%s - Setting of '%s' within '%s' inferred", __FUNCTION__, rsg.m_name.AsCString(),
1158f4786785SAidan Dodds                             rsm->m_module->GetFileSpec().GetFilename().AsCString());
11594640cde1SColin Riley             }
11604640cde1SColin Riley         }
11614640cde1SColin Riley     }
11624640cde1SColin Riley }
11634640cde1SColin Riley 
11644640cde1SColin Riley void
1165b3f7f69dSAidan Dodds RenderScriptRuntime::CaptureAllocationInit(RuntimeHook *hook_info, ExecutionContext &context)
11664640cde1SColin Riley {
11674640cde1SColin Riley     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
11684640cde1SColin Riley 
1169f4786785SAidan Dodds     enum
1170f4786785SAidan Dodds     {
1171f4786785SAidan Dodds         eRsContext,
1172f4786785SAidan Dodds         eRsAlloc,
1173f4786785SAidan Dodds         eRsForceZero
1174f4786785SAidan Dodds     };
11754640cde1SColin Riley 
11761ee07253SSaleem Abdulrasool     std::array<ArgItem, 3> args{{
1177f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // eRsContext
1178f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // eRsAlloc
1179f4786785SAidan Dodds         ArgItem{ArgItem::eBool, 0},    // eRsForceZero
11801ee07253SSaleem Abdulrasool     }};
11814640cde1SColin Riley 
1182f4786785SAidan Dodds     bool success = GetArgs(context, &args[0], args.size());
118382780287SAidan Dodds     if (!success) // error case
118482780287SAidan Dodds     {
118582780287SAidan Dodds         if (log)
1186b3f7f69dSAidan Dodds             log->Printf("%s - error while reading the function parameters", __FUNCTION__);
118782780287SAidan Dodds         return; // abort
118882780287SAidan Dodds     }
11894640cde1SColin Riley 
11904640cde1SColin Riley     if (log)
1191f4786785SAidan Dodds         log->Printf("%s - 0x%" PRIx64 ",0x%" PRIx64 ",0x%" PRIx64 " .", __FUNCTION__, uint64_t(args[eRsContext]),
1192f4786785SAidan Dodds                     uint64_t(args[eRsAlloc]), uint64_t(args[eRsForceZero]));
119378f339d1SEwan Crawford 
1194f4786785SAidan Dodds     AllocationDetails *alloc = LookUpAllocation(uint64_t(args[eRsAlloc]), true);
119578f339d1SEwan Crawford     if (alloc)
1196f4786785SAidan Dodds         alloc->context = uint64_t(args[eRsContext]);
11974640cde1SColin Riley }
11984640cde1SColin Riley 
11994640cde1SColin Riley void
1200e69df382SEwan Crawford RenderScriptRuntime::CaptureAllocationDestroy(RuntimeHook *hook_info, ExecutionContext &context)
1201e69df382SEwan Crawford {
1202e69df382SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
1203e69df382SEwan Crawford 
1204f4786785SAidan Dodds     enum
1205f4786785SAidan Dodds     {
1206f4786785SAidan Dodds         eRsContext,
1207f4786785SAidan Dodds         eRsAlloc,
1208f4786785SAidan Dodds     };
1209e69df382SEwan Crawford 
12101ee07253SSaleem Abdulrasool     std::array<ArgItem, 2> args{{
1211f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // eRsContext
1212f4786785SAidan Dodds         ArgItem{ArgItem::ePointer, 0}, // eRsAlloc
12131ee07253SSaleem Abdulrasool     }};
1214f4786785SAidan Dodds 
1215f4786785SAidan Dodds     bool success = GetArgs(context, &args[0], args.size());
1216b3f7f69dSAidan Dodds     if (!success)
1217e69df382SEwan Crawford     {
1218e69df382SEwan Crawford         if (log)
1219b3f7f69dSAidan Dodds             log->Printf("%s - error while reading the function parameters.", __FUNCTION__);
1220b3f7f69dSAidan Dodds         return;
1221e69df382SEwan Crawford     }
1222e69df382SEwan Crawford 
1223e69df382SEwan Crawford     if (log)
1224f4786785SAidan Dodds         log->Printf("%s - 0x%" PRIx64 ", 0x%" PRIx64 ".", __FUNCTION__, uint64_t(args[eRsContext]),
1225f4786785SAidan Dodds                     uint64_t(args[eRsAlloc]));
1226e69df382SEwan Crawford 
1227e69df382SEwan Crawford     for (auto iter = m_allocations.begin(); iter != m_allocations.end(); ++iter)
1228e69df382SEwan Crawford     {
1229e69df382SEwan Crawford         auto &allocation_ap = *iter; // get the unique pointer
1230f4786785SAidan Dodds         if (allocation_ap->address.isValid() && *allocation_ap->address.get() == addr_t(args[eRsAlloc]))
1231e69df382SEwan Crawford         {
1232e69df382SEwan Crawford             m_allocations.erase(iter);
1233e69df382SEwan Crawford             if (log)
1234b3f7f69dSAidan Dodds                 log->Printf("%s - deleted allocation entry.", __FUNCTION__);
1235e69df382SEwan Crawford             return;
1236e69df382SEwan Crawford         }
1237e69df382SEwan Crawford     }
1238e69df382SEwan Crawford 
1239e69df382SEwan Crawford     if (log)
1240b3f7f69dSAidan Dodds         log->Printf("%s - couldn't find destroyed allocation.", __FUNCTION__);
1241e69df382SEwan Crawford }
1242e69df382SEwan Crawford 
1243e69df382SEwan Crawford void
1244b3f7f69dSAidan Dodds RenderScriptRuntime::CaptureScriptInit(RuntimeHook *hook_info, ExecutionContext &context)
12454640cde1SColin Riley {
12464640cde1SColin Riley     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
12474640cde1SColin Riley 
12484640cde1SColin Riley     Error error;
12494640cde1SColin Riley     Process *process = context.GetProcessPtr();
12504640cde1SColin Riley 
1251f4786785SAidan Dodds     enum
1252f4786785SAidan Dodds     {
1253f4786785SAidan Dodds         eRsContext,
1254f4786785SAidan Dodds         eRsScript,
1255f4786785SAidan Dodds         eRsResNamePtr,
1256f4786785SAidan Dodds         eRsCachedDirPtr
1257f4786785SAidan Dodds     };
12584640cde1SColin Riley 
12591ee07253SSaleem Abdulrasool     std::array<ArgItem, 4> args{{ArgItem{ArgItem::ePointer, 0}, ArgItem{ArgItem::ePointer, 0},
12601ee07253SSaleem Abdulrasool                                  ArgItem{ArgItem::ePointer, 0}, ArgItem{ArgItem::ePointer, 0}}};
1261f4786785SAidan Dodds     bool success = GetArgs(context, &args[0], args.size());
126282780287SAidan Dodds     if (!success)
126382780287SAidan Dodds     {
126482780287SAidan Dodds         if (log)
1265b3f7f69dSAidan Dodds             log->Printf("%s - error while reading the function parameters.", __FUNCTION__);
126682780287SAidan Dodds         return;
126782780287SAidan Dodds     }
126882780287SAidan Dodds 
1269f4786785SAidan Dodds     std::string resname;
1270f4786785SAidan Dodds     process->ReadCStringFromMemory(addr_t(args[eRsResNamePtr]), resname, error);
12714640cde1SColin Riley     if (error.Fail())
12724640cde1SColin Riley     {
12734640cde1SColin Riley         if (log)
1274b3f7f69dSAidan Dodds             log->Printf("%s - error reading resname: %s.", __FUNCTION__, error.AsCString());
12754640cde1SColin Riley     }
12764640cde1SColin Riley 
1277f4786785SAidan Dodds     std::string cachedir;
1278f4786785SAidan Dodds     process->ReadCStringFromMemory(addr_t(args[eRsCachedDirPtr]), cachedir, error);
12794640cde1SColin Riley     if (error.Fail())
12804640cde1SColin Riley     {
12814640cde1SColin Riley         if (log)
1282b3f7f69dSAidan Dodds             log->Printf("%s - error reading cachedir: %s.", __FUNCTION__, error.AsCString());
12834640cde1SColin Riley     }
12844640cde1SColin Riley 
12854640cde1SColin Riley     if (log)
1286f4786785SAidan Dodds         log->Printf("%s - 0x%" PRIx64 ",0x%" PRIx64 " => '%s' at '%s' .", __FUNCTION__, uint64_t(args[eRsContext]),
1287f4786785SAidan Dodds                     uint64_t(args[eRsScript]), resname.c_str(), cachedir.c_str());
12884640cde1SColin Riley 
12894640cde1SColin Riley     if (resname.size() > 0)
12904640cde1SColin Riley     {
12914640cde1SColin Riley         StreamString strm;
12924640cde1SColin Riley         strm.Printf("librs.%s.so", resname.c_str());
12934640cde1SColin Riley 
1294f4786785SAidan Dodds         ScriptDetails *script = LookUpScript(addr_t(args[eRsScript]), true);
129578f339d1SEwan Crawford         if (script)
129678f339d1SEwan Crawford         {
129778f339d1SEwan Crawford             script->type = ScriptDetails::eScriptC;
129878f339d1SEwan Crawford             script->cacheDir = cachedir;
129978f339d1SEwan Crawford             script->resName = resname;
130078f339d1SEwan Crawford             script->scriptDyLib = strm.GetData();
1301f4786785SAidan Dodds             script->context = addr_t(args[eRsContext]);
130278f339d1SEwan Crawford         }
13034640cde1SColin Riley 
13044640cde1SColin Riley         if (log)
1305f4786785SAidan Dodds             log->Printf("%s - '%s' tagged with context 0x%" PRIx64 " and script 0x%" PRIx64 ".", __FUNCTION__,
1306f4786785SAidan Dodds                         strm.GetData(), uint64_t(args[eRsContext]), uint64_t(args[eRsScript]));
13074640cde1SColin Riley     }
13084640cde1SColin Riley     else if (log)
13094640cde1SColin Riley     {
1310b3f7f69dSAidan Dodds         log->Printf("%s - resource name invalid, Script not tagged.", __FUNCTION__);
13114640cde1SColin Riley     }
13124640cde1SColin Riley }
13134640cde1SColin Riley 
13144640cde1SColin Riley void
13154640cde1SColin Riley RenderScriptRuntime::LoadRuntimeHooks(lldb::ModuleSP module, ModuleKind kind)
13164640cde1SColin Riley {
13174640cde1SColin Riley     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
13184640cde1SColin Riley 
13194640cde1SColin Riley     if (!module)
13204640cde1SColin Riley     {
13214640cde1SColin Riley         return;
13224640cde1SColin Riley     }
13234640cde1SColin Riley 
132482780287SAidan Dodds     Target &target = GetProcess()->GetTarget();
132582780287SAidan Dodds     llvm::Triple::ArchType targetArchType = target.GetArchitecture().GetMachine();
132682780287SAidan Dodds 
1327b3f7f69dSAidan Dodds     if (targetArchType != llvm::Triple::ArchType::x86 &&
1328b3f7f69dSAidan Dodds         targetArchType != llvm::Triple::ArchType::arm &&
1329b3f7f69dSAidan Dodds         targetArchType != llvm::Triple::ArchType::aarch64 &&
1330b3f7f69dSAidan Dodds         targetArchType != llvm::Triple::ArchType::mipsel &&
1331b3f7f69dSAidan Dodds         targetArchType != llvm::Triple::ArchType::mips64el &&
1332b3f7f69dSAidan Dodds         targetArchType != llvm::Triple::ArchType::x86_64)
13334640cde1SColin Riley     {
13344640cde1SColin Riley         if (log)
1335b3f7f69dSAidan Dodds             log->Printf("%s - unable to hook runtime functions.", __FUNCTION__);
13364640cde1SColin Riley         return;
13374640cde1SColin Riley     }
13384640cde1SColin Riley 
133982780287SAidan Dodds     uint32_t archByteSize = target.GetArchitecture().GetAddressByteSize();
13404640cde1SColin Riley 
13414640cde1SColin Riley     for (size_t idx = 0; idx < s_runtimeHookCount; idx++)
13424640cde1SColin Riley     {
13434640cde1SColin Riley         const HookDefn *hook_defn = &s_runtimeHookDefns[idx];
1344b3f7f69dSAidan Dodds         if (hook_defn->kind != kind)
1345b3f7f69dSAidan Dodds         {
13464640cde1SColin Riley             continue;
13474640cde1SColin Riley         }
13484640cde1SColin Riley 
134982780287SAidan Dodds         const char *symbol_name = (archByteSize == 4) ? hook_defn->symbol_name_m32 : hook_defn->symbol_name_m64;
135082780287SAidan Dodds 
135182780287SAidan Dodds         const Symbol *sym = module->FindFirstSymbolWithNameAndType(ConstString(symbol_name), eSymbolTypeCode);
1352b3f7f69dSAidan Dodds         if (!sym)
1353b3f7f69dSAidan Dodds         {
1354b3f7f69dSAidan Dodds             if (log)
1355b3f7f69dSAidan Dodds             {
1356b3f7f69dSAidan Dodds                 log->Printf("%s - symbol '%s' related to the function %s not found",
1357b3f7f69dSAidan Dodds                             __FUNCTION__, symbol_name, hook_defn->name);
135882780287SAidan Dodds             }
135982780287SAidan Dodds             continue;
136082780287SAidan Dodds         }
13614640cde1SColin Riley 
1362358cf1eaSGreg Clayton         addr_t addr = sym->GetLoadAddress(&target);
13634640cde1SColin Riley         if (addr == LLDB_INVALID_ADDRESS)
13644640cde1SColin Riley         {
13654640cde1SColin Riley             if (log)
1366b3f7f69dSAidan Dodds                 log->Printf("%s - unable to resolve the address of hook function '%s' with symbol '%s'.",
1367b3f7f69dSAidan Dodds                             __FUNCTION__, hook_defn->name, symbol_name);
13684640cde1SColin Riley             continue;
13694640cde1SColin Riley         }
137082780287SAidan Dodds         else
137182780287SAidan Dodds         {
137282780287SAidan Dodds             if (log)
1373b3f7f69dSAidan Dodds                 log->Printf("%s - function %s, address resolved at 0x%" PRIx64,
1374b3f7f69dSAidan Dodds                             __FUNCTION__, hook_defn->name, addr);
137582780287SAidan Dodds         }
13764640cde1SColin Riley 
13774640cde1SColin Riley         RuntimeHookSP hook(new RuntimeHook());
13784640cde1SColin Riley         hook->address = addr;
13794640cde1SColin Riley         hook->defn = hook_defn;
13804640cde1SColin Riley         hook->bp_sp = target.CreateBreakpoint(addr, true, false);
13814640cde1SColin Riley         hook->bp_sp->SetCallback(HookCallback, hook.get(), true);
13824640cde1SColin Riley         m_runtimeHooks[addr] = hook;
13834640cde1SColin Riley         if (log)
13844640cde1SColin Riley         {
1385b3f7f69dSAidan Dodds             log->Printf("%s - successfully hooked '%s' in '%s' version %" PRIu64 " at 0x%" PRIx64 ".",
1386b3f7f69dSAidan Dodds                         __FUNCTION__, hook_defn->name, module->GetFileSpec().GetFilename().AsCString(),
1387b3f7f69dSAidan Dodds                         (uint64_t)hook_defn->version, (uint64_t)addr);
13884640cde1SColin Riley         }
13894640cde1SColin Riley     }
13904640cde1SColin Riley }
13914640cde1SColin Riley 
13924640cde1SColin Riley void
13934640cde1SColin Riley RenderScriptRuntime::FixupScriptDetails(RSModuleDescriptorSP rsmodule_sp)
13944640cde1SColin Riley {
13954640cde1SColin Riley     if (!rsmodule_sp)
13964640cde1SColin Riley         return;
13974640cde1SColin Riley 
13984640cde1SColin Riley     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
13994640cde1SColin Riley 
14004640cde1SColin Riley     const ModuleSP module = rsmodule_sp->m_module;
14014640cde1SColin Riley     const FileSpec &file = module->GetPlatformFileSpec();
14024640cde1SColin Riley 
140378f339d1SEwan Crawford     // Iterate over all of the scripts that we currently know of.
140478f339d1SEwan Crawford     // Note: We cant push or pop to m_scripts here or it may invalidate rs_script.
14054640cde1SColin Riley     for (const auto &rs_script : m_scripts)
14064640cde1SColin Riley     {
140778f339d1SEwan Crawford         // Extract the expected .so file path for this script.
140878f339d1SEwan Crawford         std::string dylib;
140978f339d1SEwan Crawford         if (!rs_script->scriptDyLib.get(dylib))
141078f339d1SEwan Crawford             continue;
141178f339d1SEwan Crawford 
141278f339d1SEwan Crawford         // Only proceed if the module that has loaded corresponds to this script.
141378f339d1SEwan Crawford         if (file.GetFilename() != ConstString(dylib.c_str()))
141478f339d1SEwan Crawford             continue;
141578f339d1SEwan Crawford 
141678f339d1SEwan Crawford         // Obtain the script address which we use as a key.
141778f339d1SEwan Crawford         lldb::addr_t script;
141878f339d1SEwan Crawford         if (!rs_script->script.get(script))
141978f339d1SEwan Crawford             continue;
142078f339d1SEwan Crawford 
142178f339d1SEwan Crawford         // If we have a script mapping for the current script.
142278f339d1SEwan Crawford         if (m_scriptMappings.find(script) != m_scriptMappings.end())
14234640cde1SColin Riley         {
142478f339d1SEwan Crawford             // if the module we have stored is different to the one we just received.
142578f339d1SEwan Crawford             if (m_scriptMappings[script] != rsmodule_sp)
14264640cde1SColin Riley             {
14274640cde1SColin Riley                 if (log)
1428b3f7f69dSAidan Dodds                     log->Printf("%s - script %" PRIx64 " wants reassigned to new rsmodule '%s'.", __FUNCTION__,
142978f339d1SEwan Crawford                                 (uint64_t)script, rsmodule_sp->m_module->GetFileSpec().GetFilename().AsCString());
14304640cde1SColin Riley             }
14314640cde1SColin Riley         }
143278f339d1SEwan Crawford         // We don't have a script mapping for the current script.
14334640cde1SColin Riley         else
14344640cde1SColin Riley         {
143578f339d1SEwan Crawford             // Obtain the script resource name.
143678f339d1SEwan Crawford             std::string resName;
143778f339d1SEwan Crawford             if (rs_script->resName.get(resName))
143878f339d1SEwan Crawford                 // Set the modules resource name.
143978f339d1SEwan Crawford                 rsmodule_sp->m_resname = resName;
144078f339d1SEwan Crawford             // Add Script/Module pair to map.
144178f339d1SEwan Crawford             m_scriptMappings[script] = rsmodule_sp;
14424640cde1SColin Riley             if (log)
1443b3f7f69dSAidan Dodds                 log->Printf("%s - script %" PRIx64 " associated with rsmodule '%s'.", __FUNCTION__,
144478f339d1SEwan Crawford                             (uint64_t)script, rsmodule_sp->m_module->GetFileSpec().GetFilename().AsCString());
14454640cde1SColin Riley         }
14464640cde1SColin Riley     }
14474640cde1SColin Riley }
14484640cde1SColin Riley 
144915f2bd95SEwan Crawford // Uses the Target API to evaluate the expression passed as a parameter to the function
145015f2bd95SEwan Crawford // The result of that expression is returned an unsigned 64 bit int, via the result* paramter.
145115f2bd95SEwan Crawford // Function returns true on success, and false on failure
145215f2bd95SEwan Crawford bool
145315f2bd95SEwan Crawford RenderScriptRuntime::EvalRSExpression(const char *expression, StackFrame *frame_ptr, uint64_t *result)
145415f2bd95SEwan Crawford {
145515f2bd95SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
145615f2bd95SEwan Crawford     if (log)
1457b3f7f69dSAidan Dodds         log->Printf("%s(%s)", __FUNCTION__, expression);
145815f2bd95SEwan Crawford 
145915f2bd95SEwan Crawford     ValueObjectSP expr_result;
146015f2bd95SEwan Crawford     // Perform the actual expression evaluation
146115f2bd95SEwan Crawford     GetProcess()->GetTarget().EvaluateExpression(expression, frame_ptr, expr_result);
146215f2bd95SEwan Crawford 
146315f2bd95SEwan Crawford     if (!expr_result)
146415f2bd95SEwan Crawford     {
146515f2bd95SEwan Crawford         if (log)
1466b3f7f69dSAidan Dodds             log->Printf("%s: couldn't evaluate expression.", __FUNCTION__);
146715f2bd95SEwan Crawford         return false;
146815f2bd95SEwan Crawford     }
146915f2bd95SEwan Crawford 
147015f2bd95SEwan Crawford     // The result of the expression is invalid
147115f2bd95SEwan Crawford     if (!expr_result->GetError().Success())
147215f2bd95SEwan Crawford     {
147315f2bd95SEwan Crawford         Error err = expr_result->GetError();
147415f2bd95SEwan Crawford         if (err.GetError() == UserExpression::kNoResult) // Expression returned void, so this is actually a success
147515f2bd95SEwan Crawford         {
147615f2bd95SEwan Crawford             if (log)
1477b3f7f69dSAidan Dodds                 log->Printf("%s - expression returned void.", __FUNCTION__);
147815f2bd95SEwan Crawford 
147915f2bd95SEwan Crawford             result = nullptr;
148015f2bd95SEwan Crawford             return true;
148115f2bd95SEwan Crawford         }
148215f2bd95SEwan Crawford 
148315f2bd95SEwan Crawford         if (log)
1484b3f7f69dSAidan Dodds             log->Printf("%s - error evaluating expression result: %s", __FUNCTION__,
1485b3f7f69dSAidan Dodds                         err.AsCString());
148615f2bd95SEwan Crawford         return false;
148715f2bd95SEwan Crawford     }
148815f2bd95SEwan Crawford 
148915f2bd95SEwan Crawford     bool success = false;
1490b3f7f69dSAidan Dodds     *result = expr_result->GetValueAsUnsigned(0, &success); // We only read the result as an uint32_t.
149115f2bd95SEwan Crawford 
149215f2bd95SEwan Crawford     if (!success)
149315f2bd95SEwan Crawford     {
149415f2bd95SEwan Crawford         if (log)
1495b3f7f69dSAidan Dodds             log->Printf("%s - couldn't convert expression result to uint32_t", __FUNCTION__);
149615f2bd95SEwan Crawford         return false;
149715f2bd95SEwan Crawford     }
149815f2bd95SEwan Crawford 
149915f2bd95SEwan Crawford     return true;
150015f2bd95SEwan Crawford }
150115f2bd95SEwan Crawford 
1502ea0636b5SEwan Crawford namespace
1503ea0636b5SEwan Crawford {
1504836d9651SEwan Crawford // Used to index expression format strings
1505836d9651SEwan Crawford enum ExpressionStrings
150615f2bd95SEwan Crawford {
1507836d9651SEwan Crawford    eExprGetOffsetPtr = 0,
1508836d9651SEwan Crawford    eExprAllocGetType,
1509836d9651SEwan Crawford    eExprTypeDimX,
1510836d9651SEwan Crawford    eExprTypeDimY,
1511836d9651SEwan Crawford    eExprTypeDimZ,
1512836d9651SEwan Crawford    eExprTypeElemPtr,
1513836d9651SEwan Crawford    eExprElementType,
1514836d9651SEwan Crawford    eExprElementKind,
1515836d9651SEwan Crawford    eExprElementVec,
1516836d9651SEwan Crawford    eExprElementFieldCount,
1517836d9651SEwan Crawford    eExprSubelementsId,
1518836d9651SEwan Crawford    eExprSubelementsName,
1519ea0636b5SEwan Crawford    eExprSubelementsArrSize,
1520ea0636b5SEwan Crawford 
1521ea0636b5SEwan Crawford    _eExprLast // keep at the end, implicit size of the array runtimeExpressions
1522836d9651SEwan Crawford };
152315f2bd95SEwan Crawford 
1524ea0636b5SEwan Crawford // max length of an expanded expression
1525ea0636b5SEwan Crawford const int jit_max_expr_size = 512;
1526ea0636b5SEwan Crawford 
1527ea0636b5SEwan Crawford // Retrieve the string to JIT for the given expression
1528ea0636b5SEwan Crawford const char*
1529ea0636b5SEwan Crawford JITTemplate(ExpressionStrings e)
153015f2bd95SEwan Crawford {
1531ea0636b5SEwan Crawford     // Format strings containing the expressions we may need to evaluate.
1532ea0636b5SEwan Crawford     static std::array<const char*, _eExprLast> runtimeExpressions = {{
153315f2bd95SEwan Crawford      // Mangled GetOffsetPointer(Allocation*, xoff, yoff, zoff, lod, cubemap)
1534577570b4SAidan Dodds      "(int*)_Z12GetOffsetPtrPKN7android12renderscript10AllocationEjjjj23RsAllocationCubemapFace"
1535577570b4SAidan Dodds      "(0x%" PRIx64 ", %" PRIu32 ", %" PRIu32 ", %" PRIu32 ", 0, 0)",
153615f2bd95SEwan Crawford 
153715f2bd95SEwan Crawford      // Type* rsaAllocationGetType(Context*, Allocation*)
1538577570b4SAidan Dodds      "(void*)rsaAllocationGetType(0x%" PRIx64 ", 0x%" PRIx64 ")",
153915f2bd95SEwan Crawford 
154015f2bd95SEwan Crawford      // rsaTypeGetNativeData(Context*, Type*, void* typeData, size)
154115f2bd95SEwan Crawford      // Pack the data in the following way mHal.state.dimX; mHal.state.dimY; mHal.state.dimZ;
154215f2bd95SEwan Crawford      // mHal.state.lodCount; mHal.state.faces; mElement; into typeData
154315f2bd95SEwan Crawford      // Need to specify 32 or 64 bit for uint_t since this differs between devices
1544577570b4SAidan Dodds      "uint%" PRIu32 "_t data[6]; (void*)rsaTypeGetNativeData(0x%" PRIx64 ", 0x%" PRIx64 ", data, 6); data[0]", // X dim
1545577570b4SAidan Dodds      "uint%" PRIu32 "_t data[6]; (void*)rsaTypeGetNativeData(0x%" PRIx64 ", 0x%" PRIx64 ", data, 6); data[1]", // Y dim
1546577570b4SAidan Dodds      "uint%" PRIu32 "_t data[6]; (void*)rsaTypeGetNativeData(0x%" PRIx64 ", 0x%" PRIx64 ", data, 6); data[2]", // Z dim
1547577570b4SAidan Dodds      "uint%" PRIu32 "_t data[6]; (void*)rsaTypeGetNativeData(0x%" PRIx64 ", 0x%" PRIx64 ", data, 6); data[5]", // Element ptr
154815f2bd95SEwan Crawford 
154915f2bd95SEwan Crawford      // rsaElementGetNativeData(Context*, Element*, uint32_t* elemData,size)
155015f2bd95SEwan Crawford      // Pack mType; mKind; mNormalized; mVectorSize; NumSubElements into elemData
1551577570b4SAidan Dodds      "uint32_t data[5]; (void*)rsaElementGetNativeData(0x%" PRIx64 ", 0x%" PRIx64 ", data, 5); data[0]", // Type
1552577570b4SAidan Dodds      "uint32_t data[5]; (void*)rsaElementGetNativeData(0x%" PRIx64 ", 0x%" PRIx64 ", data, 5); data[1]", // Kind
1553577570b4SAidan Dodds      "uint32_t data[5]; (void*)rsaElementGetNativeData(0x%" PRIx64 ", 0x%" PRIx64 ", data, 5); data[3]", // Vector Size
1554577570b4SAidan Dodds      "uint32_t data[5]; (void*)rsaElementGetNativeData(0x%" PRIx64 ", 0x%" PRIx64 ", data, 5); data[4]", // Field Count
15558b244e21SEwan Crawford 
15568b244e21SEwan Crawford      // rsaElementGetSubElements(RsContext con, RsElement elem, uintptr_t *ids, const char **names,
15578b244e21SEwan Crawford      // size_t *arraySizes, uint32_t dataSize)
15588b244e21SEwan Crawford      // Needed for Allocations of structs to gather details about fields/Subelements
1559577570b4SAidan Dodds      // Element* of field
1560577570b4SAidan Dodds      "void* ids[%" PRIu32 "]; const char* names[%" PRIu32 "]; size_t arr_size[%" PRIu32 "];"
1561577570b4SAidan Dodds      "(void*)rsaElementGetSubElements(0x%" PRIx64 ", 0x%" PRIx64 ", ids, names, arr_size, %" PRIu32 "); ids[%" PRIu32 "]",
15628b244e21SEwan Crawford 
1563577570b4SAidan Dodds      // Name of field
1564577570b4SAidan Dodds      "void* ids[%" PRIu32 "]; const char* names[%" PRIu32 "]; size_t arr_size[%" PRIu32 "];"
1565577570b4SAidan Dodds      "(void*)rsaElementGetSubElements(0x%" PRIx64 ", 0x%" PRIx64 ", ids, names, arr_size, %" PRIu32 "); names[%" PRIu32 "]",
15668b244e21SEwan Crawford 
1567577570b4SAidan Dodds      // Array size of field
1568577570b4SAidan Dodds      "void* ids[%" PRIu32 "]; const char* names[%" PRIu32 "]; size_t arr_size[%" PRIu32 "];"
1569577570b4SAidan Dodds      "(void*)rsaElementGetSubElements(0x%" PRIx64 ", 0x%" PRIx64 ", ids, names, arr_size, %" PRIu32 "); arr_size[%" PRIu32 "]"
1570ea0636b5SEwan Crawford     }};
1571ea0636b5SEwan Crawford 
1572ea0636b5SEwan Crawford     return runtimeExpressions[e];
1573ea0636b5SEwan Crawford }
1574ea0636b5SEwan Crawford } // end of the anonymous namespace
1575ea0636b5SEwan Crawford 
157615f2bd95SEwan Crawford 
157715f2bd95SEwan Crawford // JITs the RS runtime for the internal data pointer of an allocation.
157815f2bd95SEwan Crawford // Is passed x,y,z coordinates for the pointer to a specific element.
157915f2bd95SEwan Crawford // Then sets the data_ptr member in Allocation with the result.
158015f2bd95SEwan Crawford // Returns true on success, false otherwise
158115f2bd95SEwan Crawford bool
1582b3f7f69dSAidan Dodds RenderScriptRuntime::JITDataPointer(AllocationDetails *allocation, StackFrame *frame_ptr, uint32_t x,
1583b3f7f69dSAidan Dodds                                     uint32_t y, uint32_t z)
158415f2bd95SEwan Crawford {
158515f2bd95SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
158615f2bd95SEwan Crawford 
158715f2bd95SEwan Crawford     if (!allocation->address.isValid())
158815f2bd95SEwan Crawford     {
158915f2bd95SEwan Crawford         if (log)
1590b3f7f69dSAidan Dodds             log->Printf("%s - failed to find allocation details.", __FUNCTION__);
159115f2bd95SEwan Crawford         return false;
159215f2bd95SEwan Crawford     }
159315f2bd95SEwan Crawford 
1594ea0636b5SEwan Crawford     const char *expr_cstr = JITTemplate(eExprGetOffsetPtr);
1595ea0636b5SEwan Crawford     char buffer[jit_max_expr_size];
159615f2bd95SEwan Crawford 
1597ea0636b5SEwan Crawford     int chars_written = snprintf(buffer, jit_max_expr_size, expr_cstr, *allocation->address.get(), x, y, z);
159815f2bd95SEwan Crawford     if (chars_written < 0)
159915f2bd95SEwan Crawford     {
160015f2bd95SEwan Crawford         if (log)
1601b3f7f69dSAidan Dodds             log->Printf("%s - encoding error in snprintf().", __FUNCTION__);
160215f2bd95SEwan Crawford         return false;
160315f2bd95SEwan Crawford     }
1604ea0636b5SEwan Crawford     else if (chars_written >= jit_max_expr_size)
160515f2bd95SEwan Crawford     {
160615f2bd95SEwan Crawford         if (log)
1607b3f7f69dSAidan Dodds             log->Printf("%s - expression too long.", __FUNCTION__);
160815f2bd95SEwan Crawford         return false;
160915f2bd95SEwan Crawford     }
161015f2bd95SEwan Crawford 
161115f2bd95SEwan Crawford     uint64_t result = 0;
161215f2bd95SEwan Crawford     if (!EvalRSExpression(buffer, frame_ptr, &result))
161315f2bd95SEwan Crawford         return false;
161415f2bd95SEwan Crawford 
161515f2bd95SEwan Crawford     addr_t mem_ptr = static_cast<lldb::addr_t>(result);
161615f2bd95SEwan Crawford     allocation->data_ptr = mem_ptr;
161715f2bd95SEwan Crawford 
161815f2bd95SEwan Crawford     return true;
161915f2bd95SEwan Crawford }
162015f2bd95SEwan Crawford 
162115f2bd95SEwan Crawford // JITs the RS runtime for the internal pointer to the RS Type of an allocation
162215f2bd95SEwan Crawford // Then sets the type_ptr member in Allocation with the result.
162315f2bd95SEwan Crawford // Returns true on success, false otherwise
162415f2bd95SEwan Crawford bool
162515f2bd95SEwan Crawford RenderScriptRuntime::JITTypePointer(AllocationDetails *allocation, StackFrame *frame_ptr)
162615f2bd95SEwan Crawford {
162715f2bd95SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
162815f2bd95SEwan Crawford 
162915f2bd95SEwan Crawford     if (!allocation->address.isValid() || !allocation->context.isValid())
163015f2bd95SEwan Crawford     {
163115f2bd95SEwan Crawford         if (log)
1632b3f7f69dSAidan Dodds             log->Printf("%s - failed to find allocation details.", __FUNCTION__);
163315f2bd95SEwan Crawford         return false;
163415f2bd95SEwan Crawford     }
163515f2bd95SEwan Crawford 
1636ea0636b5SEwan Crawford     const char *expr_cstr = JITTemplate(eExprAllocGetType);
1637ea0636b5SEwan Crawford     char buffer[jit_max_expr_size];
163815f2bd95SEwan Crawford 
1639ea0636b5SEwan Crawford     int chars_written =
1640ea0636b5SEwan Crawford         snprintf(buffer, jit_max_expr_size, expr_cstr, *allocation->context.get(), *allocation->address.get());
164115f2bd95SEwan Crawford     if (chars_written < 0)
164215f2bd95SEwan Crawford     {
164315f2bd95SEwan Crawford         if (log)
1644b3f7f69dSAidan Dodds             log->Printf("%s - encoding error in snprintf().", __FUNCTION__);
164515f2bd95SEwan Crawford         return false;
164615f2bd95SEwan Crawford     }
1647ea0636b5SEwan Crawford     else if (chars_written >= jit_max_expr_size)
164815f2bd95SEwan Crawford     {
164915f2bd95SEwan Crawford         if (log)
1650b3f7f69dSAidan Dodds             log->Printf("%s - expression too long.", __FUNCTION__);
165115f2bd95SEwan Crawford         return false;
165215f2bd95SEwan Crawford     }
165315f2bd95SEwan Crawford 
165415f2bd95SEwan Crawford     uint64_t result = 0;
165515f2bd95SEwan Crawford     if (!EvalRSExpression(buffer, frame_ptr, &result))
165615f2bd95SEwan Crawford         return false;
165715f2bd95SEwan Crawford 
165815f2bd95SEwan Crawford     addr_t type_ptr = static_cast<lldb::addr_t>(result);
165915f2bd95SEwan Crawford     allocation->type_ptr = type_ptr;
166015f2bd95SEwan Crawford 
166115f2bd95SEwan Crawford     return true;
166215f2bd95SEwan Crawford }
166315f2bd95SEwan Crawford 
166415f2bd95SEwan Crawford // JITs the RS runtime for information about the dimensions and type of an allocation
166515f2bd95SEwan Crawford // Then sets dimension and element_ptr members in Allocation with the result.
166615f2bd95SEwan Crawford // Returns true on success, false otherwise
166715f2bd95SEwan Crawford bool
166815f2bd95SEwan Crawford RenderScriptRuntime::JITTypePacked(AllocationDetails *allocation, StackFrame *frame_ptr)
166915f2bd95SEwan Crawford {
167015f2bd95SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
167115f2bd95SEwan Crawford 
167215f2bd95SEwan Crawford     if (!allocation->type_ptr.isValid() || !allocation->context.isValid())
167315f2bd95SEwan Crawford     {
167415f2bd95SEwan Crawford         if (log)
1675b3f7f69dSAidan Dodds             log->Printf("%s - Failed to find allocation details.", __FUNCTION__);
167615f2bd95SEwan Crawford         return false;
167715f2bd95SEwan Crawford     }
167815f2bd95SEwan Crawford 
167915f2bd95SEwan Crawford     // Expression is different depending on if device is 32 or 64 bit
168015f2bd95SEwan Crawford     uint32_t archByteSize = GetProcess()->GetTarget().GetArchitecture().GetAddressByteSize();
1681b3f7f69dSAidan Dodds     const uint32_t bits = archByteSize == 4 ? 32 : 64;
168215f2bd95SEwan Crawford 
168315f2bd95SEwan Crawford     // We want 4 elements from packed data
1684b3f7f69dSAidan Dodds     const uint32_t num_exprs = 4;
168515f2bd95SEwan Crawford     assert(num_exprs == (eExprTypeElemPtr - eExprTypeDimX + 1) && "Invalid number of expressions");
168615f2bd95SEwan Crawford 
1687ea0636b5SEwan Crawford     char buffer[num_exprs][jit_max_expr_size];
168815f2bd95SEwan Crawford     uint64_t results[num_exprs];
168915f2bd95SEwan Crawford 
1690b3f7f69dSAidan Dodds     for (uint32_t i = 0; i < num_exprs; ++i)
169115f2bd95SEwan Crawford     {
1692ea0636b5SEwan Crawford         const char *expr_cstr = JITTemplate(ExpressionStrings(eExprTypeDimX + i));
1693ea0636b5SEwan Crawford         int chars_written = snprintf(buffer[i], jit_max_expr_size, expr_cstr, bits, *allocation->context.get(),
1694ea0636b5SEwan Crawford                                      *allocation->type_ptr.get());
169515f2bd95SEwan Crawford         if (chars_written < 0)
169615f2bd95SEwan Crawford         {
169715f2bd95SEwan Crawford             if (log)
1698b3f7f69dSAidan Dodds                 log->Printf("%s - encoding error in snprintf().", __FUNCTION__);
169915f2bd95SEwan Crawford             return false;
170015f2bd95SEwan Crawford         }
1701ea0636b5SEwan Crawford         else if (chars_written >= jit_max_expr_size)
170215f2bd95SEwan Crawford         {
170315f2bd95SEwan Crawford             if (log)
1704b3f7f69dSAidan Dodds                 log->Printf("%s - expression too long.", __FUNCTION__);
170515f2bd95SEwan Crawford             return false;
170615f2bd95SEwan Crawford         }
170715f2bd95SEwan Crawford 
170815f2bd95SEwan Crawford         // Perform expression evaluation
170915f2bd95SEwan Crawford         if (!EvalRSExpression(buffer[i], frame_ptr, &results[i]))
171015f2bd95SEwan Crawford             return false;
171115f2bd95SEwan Crawford     }
171215f2bd95SEwan Crawford 
171315f2bd95SEwan Crawford     // Assign results to allocation members
171415f2bd95SEwan Crawford     AllocationDetails::Dimension dims;
171515f2bd95SEwan Crawford     dims.dim_1 = static_cast<uint32_t>(results[0]);
171615f2bd95SEwan Crawford     dims.dim_2 = static_cast<uint32_t>(results[1]);
171715f2bd95SEwan Crawford     dims.dim_3 = static_cast<uint32_t>(results[2]);
171815f2bd95SEwan Crawford     allocation->dimension = dims;
171915f2bd95SEwan Crawford 
172015f2bd95SEwan Crawford     addr_t elem_ptr = static_cast<lldb::addr_t>(results[3]);
17218b244e21SEwan Crawford     allocation->element.element_ptr = elem_ptr;
172215f2bd95SEwan Crawford 
172315f2bd95SEwan Crawford     if (log)
1724b3f7f69dSAidan Dodds         log->Printf("%s - dims (%" PRIu32 ", %" PRIu32 ", %" PRIu32 ") Element*: 0x%" PRIx64 ".", __FUNCTION__,
172515f2bd95SEwan Crawford                     dims.dim_1, dims.dim_2, dims.dim_3, elem_ptr);
172615f2bd95SEwan Crawford 
172715f2bd95SEwan Crawford     return true;
172815f2bd95SEwan Crawford }
172915f2bd95SEwan Crawford 
173015f2bd95SEwan Crawford // JITs the RS runtime for information about the Element of an allocation
17318b244e21SEwan Crawford // Then sets type, type_vec_size, field_count and type_kind members in Element with the result.
173215f2bd95SEwan Crawford // Returns true on success, false otherwise
173315f2bd95SEwan Crawford bool
17348b244e21SEwan Crawford RenderScriptRuntime::JITElementPacked(Element &elem, const lldb::addr_t context, StackFrame *frame_ptr)
173515f2bd95SEwan Crawford {
173615f2bd95SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
173715f2bd95SEwan Crawford 
17388b244e21SEwan Crawford     if (!elem.element_ptr.isValid())
173915f2bd95SEwan Crawford     {
174015f2bd95SEwan Crawford         if (log)
1741b3f7f69dSAidan Dodds             log->Printf("%s - failed to find allocation details.", __FUNCTION__);
174215f2bd95SEwan Crawford         return false;
174315f2bd95SEwan Crawford     }
174415f2bd95SEwan Crawford 
17458b244e21SEwan Crawford     // We want 4 elements from packed data
1746b3f7f69dSAidan Dodds     const uint32_t num_exprs = 4;
17478b244e21SEwan Crawford     assert(num_exprs == (eExprElementFieldCount - eExprElementType + 1) && "Invalid number of expressions");
174815f2bd95SEwan Crawford 
1749ea0636b5SEwan Crawford     char buffer[num_exprs][jit_max_expr_size];
175015f2bd95SEwan Crawford     uint64_t results[num_exprs];
175115f2bd95SEwan Crawford 
1752b3f7f69dSAidan Dodds     for (uint32_t i = 0; i < num_exprs; i++)
175315f2bd95SEwan Crawford     {
1754ea0636b5SEwan Crawford         const char *expr_cstr = JITTemplate(ExpressionStrings(eExprElementType + i));
1755ea0636b5SEwan Crawford         int chars_written = snprintf(buffer[i], jit_max_expr_size, expr_cstr, context, *elem.element_ptr.get());
175615f2bd95SEwan Crawford         if (chars_written < 0)
175715f2bd95SEwan Crawford         {
175815f2bd95SEwan Crawford             if (log)
1759b3f7f69dSAidan Dodds                 log->Printf("%s - encoding error in snprintf().", __FUNCTION__);
176015f2bd95SEwan Crawford             return false;
176115f2bd95SEwan Crawford         }
1762ea0636b5SEwan Crawford         else if (chars_written >= jit_max_expr_size)
176315f2bd95SEwan Crawford         {
176415f2bd95SEwan Crawford             if (log)
1765b3f7f69dSAidan Dodds                 log->Printf("%s - expression too long.", __FUNCTION__);
176615f2bd95SEwan Crawford             return false;
176715f2bd95SEwan Crawford         }
176815f2bd95SEwan Crawford 
176915f2bd95SEwan Crawford         // Perform expression evaluation
177015f2bd95SEwan Crawford         if (!EvalRSExpression(buffer[i], frame_ptr, &results[i]))
177115f2bd95SEwan Crawford             return false;
177215f2bd95SEwan Crawford     }
177315f2bd95SEwan Crawford 
177415f2bd95SEwan Crawford     // Assign results to allocation members
17758b244e21SEwan Crawford     elem.type = static_cast<RenderScriptRuntime::Element::DataType>(results[0]);
17768b244e21SEwan Crawford     elem.type_kind = static_cast<RenderScriptRuntime::Element::DataKind>(results[1]);
17778b244e21SEwan Crawford     elem.type_vec_size = static_cast<uint32_t>(results[2]);
17788b244e21SEwan Crawford     elem.field_count = static_cast<uint32_t>(results[3]);
177915f2bd95SEwan Crawford 
178015f2bd95SEwan Crawford     if (log)
1781b3f7f69dSAidan Dodds         log->Printf("%s - data type %" PRIu32 ", pixel type %" PRIu32 ", vector size %" PRIu32 ", field count %" PRIu32,
1782b3f7f69dSAidan Dodds                     __FUNCTION__, *elem.type.get(), *elem.type_kind.get(), *elem.type_vec_size.get(), *elem.field_count.get());
17838b244e21SEwan Crawford 
17848b244e21SEwan Crawford     // If this Element has subelements then JIT rsaElementGetSubElements() for details about its fields
17858b244e21SEwan Crawford     if (*elem.field_count.get() > 0 && !JITSubelements(elem, context, frame_ptr))
17868b244e21SEwan Crawford         return false;
17878b244e21SEwan Crawford 
17888b244e21SEwan Crawford     return true;
17898b244e21SEwan Crawford }
17908b244e21SEwan Crawford 
17918b244e21SEwan Crawford // JITs the RS runtime for information about the subelements/fields of a struct allocation
17928b244e21SEwan Crawford // This is necessary for infering the struct type so we can pretty print the allocation's contents.
17938b244e21SEwan Crawford // Returns true on success, false otherwise
17948b244e21SEwan Crawford bool
17958b244e21SEwan Crawford RenderScriptRuntime::JITSubelements(Element &elem, const lldb::addr_t context, StackFrame *frame_ptr)
17968b244e21SEwan Crawford {
17978b244e21SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
17988b244e21SEwan Crawford 
17998b244e21SEwan Crawford     if (!elem.element_ptr.isValid() || !elem.field_count.isValid())
18008b244e21SEwan Crawford     {
18018b244e21SEwan Crawford         if (log)
1802b3f7f69dSAidan Dodds             log->Printf("%s - failed to find allocation details.", __FUNCTION__);
18038b244e21SEwan Crawford         return false;
18048b244e21SEwan Crawford     }
18058b244e21SEwan Crawford 
18068b244e21SEwan Crawford     const short num_exprs = 3;
18078b244e21SEwan Crawford     assert(num_exprs == (eExprSubelementsArrSize - eExprSubelementsId + 1) && "Invalid number of expressions");
18088b244e21SEwan Crawford 
1809ea0636b5SEwan Crawford     char expr_buffer[jit_max_expr_size];
18108b244e21SEwan Crawford     uint64_t results;
18118b244e21SEwan Crawford 
18128b244e21SEwan Crawford     // Iterate over struct fields.
18138b244e21SEwan Crawford     const uint32_t field_count = *elem.field_count.get();
1814b3f7f69dSAidan Dodds     for (uint32_t field_index = 0; field_index < field_count; ++field_index)
18158b244e21SEwan Crawford     {
18168b244e21SEwan Crawford         Element child;
1817b3f7f69dSAidan Dodds         for (uint32_t expr_index = 0; expr_index < num_exprs; ++expr_index)
18188b244e21SEwan Crawford         {
1819ea0636b5SEwan Crawford             const char *expr_cstr = JITTemplate(ExpressionStrings(eExprSubelementsId + expr_index));
1820ea0636b5SEwan Crawford             int chars_written = snprintf(expr_buffer, jit_max_expr_size, expr_cstr,
18218b244e21SEwan Crawford                                          field_count, field_count, field_count,
18228b244e21SEwan Crawford                                          context, *elem.element_ptr.get(), field_count, field_index);
18238b244e21SEwan Crawford             if (chars_written < 0)
18248b244e21SEwan Crawford             {
18258b244e21SEwan Crawford                 if (log)
1826b3f7f69dSAidan Dodds                     log->Printf("%s - encoding error in snprintf().", __FUNCTION__);
18278b244e21SEwan Crawford                 return false;
18288b244e21SEwan Crawford             }
1829ea0636b5SEwan Crawford             else if (chars_written >= jit_max_expr_size)
18308b244e21SEwan Crawford             {
18318b244e21SEwan Crawford                 if (log)
1832b3f7f69dSAidan Dodds                     log->Printf("%s - expression too long.", __FUNCTION__);
18338b244e21SEwan Crawford                 return false;
18348b244e21SEwan Crawford             }
18358b244e21SEwan Crawford 
18368b244e21SEwan Crawford             // Perform expression evaluation
18378b244e21SEwan Crawford             if (!EvalRSExpression(expr_buffer, frame_ptr, &results))
18388b244e21SEwan Crawford                 return false;
18398b244e21SEwan Crawford 
18408b244e21SEwan Crawford             if (log)
1841b3f7f69dSAidan Dodds                 log->Printf("%s - expr result 0x%" PRIx64 ".", __FUNCTION__, results);
18428b244e21SEwan Crawford 
18438b244e21SEwan Crawford             switch (expr_index)
18448b244e21SEwan Crawford             {
18458b244e21SEwan Crawford                 case 0: // Element* of child
18468b244e21SEwan Crawford                     child.element_ptr = static_cast<addr_t>(results);
18478b244e21SEwan Crawford                     break;
18488b244e21SEwan Crawford                 case 1: // Name of child
18498b244e21SEwan Crawford                 {
18508b244e21SEwan Crawford                     lldb::addr_t address = static_cast<addr_t>(results);
18518b244e21SEwan Crawford                     Error err;
18528b244e21SEwan Crawford                     std::string name;
18538b244e21SEwan Crawford                     GetProcess()->ReadCStringFromMemory(address, name, err);
18548b244e21SEwan Crawford                     if (!err.Fail())
18558b244e21SEwan Crawford                         child.type_name = ConstString(name);
18568b244e21SEwan Crawford                     else
18578b244e21SEwan Crawford                     {
18588b244e21SEwan Crawford                         if (log)
1859b3f7f69dSAidan Dodds                             log->Printf("%s - warning: Couldn't read field name.", __FUNCTION__);
18608b244e21SEwan Crawford                     }
18618b244e21SEwan Crawford                     break;
18628b244e21SEwan Crawford                 }
18638b244e21SEwan Crawford                 case 2: // Array size of child
18648b244e21SEwan Crawford                     child.array_size = static_cast<uint32_t>(results);
18658b244e21SEwan Crawford                     break;
18668b244e21SEwan Crawford             }
18678b244e21SEwan Crawford         }
18688b244e21SEwan Crawford 
18698b244e21SEwan Crawford         // We need to recursively JIT each Element field of the struct since
18708b244e21SEwan Crawford         // structs can be nested inside structs.
18718b244e21SEwan Crawford         if (!JITElementPacked(child, context, frame_ptr))
18728b244e21SEwan Crawford             return false;
18738b244e21SEwan Crawford         elem.children.push_back(child);
18748b244e21SEwan Crawford     }
18758b244e21SEwan Crawford 
18768b244e21SEwan Crawford     // Try to infer the name of the struct type so we can pretty print the allocation contents.
18778b244e21SEwan Crawford     FindStructTypeName(elem, frame_ptr);
187815f2bd95SEwan Crawford 
187915f2bd95SEwan Crawford     return true;
188015f2bd95SEwan Crawford }
188115f2bd95SEwan Crawford 
1882a0f08674SEwan Crawford // JITs the RS runtime for the address of the last element in the allocation.
1883a0f08674SEwan Crawford // The `elem_size` paramter represents the size of a single element, including padding.
1884a0f08674SEwan Crawford // Which is needed as an offset from the last element pointer.
1885a0f08674SEwan Crawford // Using this offset minus the starting address we can calculate the size of the allocation.
1886a0f08674SEwan Crawford // Returns true on success, false otherwise
1887a0f08674SEwan Crawford bool
18888b244e21SEwan Crawford RenderScriptRuntime::JITAllocationSize(AllocationDetails *allocation, StackFrame *frame_ptr)
1889a0f08674SEwan Crawford {
1890a0f08674SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
1891a0f08674SEwan Crawford 
1892b3f7f69dSAidan Dodds     if (!allocation->address.isValid() || !allocation->dimension.isValid() || !allocation->data_ptr.isValid() ||
1893b3f7f69dSAidan Dodds         !allocation->element.datum_size.isValid())
1894a0f08674SEwan Crawford     {
1895a0f08674SEwan Crawford         if (log)
1896b3f7f69dSAidan Dodds             log->Printf("%s - failed to find allocation details.", __FUNCTION__);
1897a0f08674SEwan Crawford         return false;
1898a0f08674SEwan Crawford     }
1899a0f08674SEwan Crawford 
1900a0f08674SEwan Crawford     // Find dimensions
1901b3f7f69dSAidan Dodds     uint32_t dim_x = allocation->dimension.get()->dim_1;
1902b3f7f69dSAidan Dodds     uint32_t dim_y = allocation->dimension.get()->dim_2;
1903b3f7f69dSAidan Dodds     uint32_t dim_z = allocation->dimension.get()->dim_3;
1904a0f08674SEwan Crawford 
19058b244e21SEwan Crawford     // Our plan of jitting the last element address doesn't seem to work for struct Allocations
19068b244e21SEwan Crawford     // Instead try to infer the size ourselves without any inter element padding.
19078b244e21SEwan Crawford     if (allocation->element.children.size() > 0)
19088b244e21SEwan Crawford     {
19098b244e21SEwan Crawford         if (dim_x == 0) dim_x = 1;
19108b244e21SEwan Crawford         if (dim_y == 0) dim_y = 1;
19118b244e21SEwan Crawford         if (dim_z == 0) dim_z = 1;
19128b244e21SEwan Crawford 
19138b244e21SEwan Crawford         allocation->size = dim_x * dim_y * dim_z * *allocation->element.datum_size.get();
19148b244e21SEwan Crawford 
19158b244e21SEwan Crawford         if (log)
1916b3f7f69dSAidan Dodds             log->Printf("%s - infered size of struct allocation %" PRIu32 ".", __FUNCTION__,
1917b3f7f69dSAidan Dodds                         *allocation->size.get());
19188b244e21SEwan Crawford         return true;
19198b244e21SEwan Crawford     }
19208b244e21SEwan Crawford 
1921ea0636b5SEwan Crawford     const char *expr_cstr = JITTemplate(eExprGetOffsetPtr);
1922ea0636b5SEwan Crawford     char buffer[jit_max_expr_size];
19238b244e21SEwan Crawford 
1924a0f08674SEwan Crawford     // Calculate last element
1925a0f08674SEwan Crawford     dim_x = dim_x == 0 ? 0 : dim_x - 1;
1926a0f08674SEwan Crawford     dim_y = dim_y == 0 ? 0 : dim_y - 1;
1927a0f08674SEwan Crawford     dim_z = dim_z == 0 ? 0 : dim_z - 1;
1928a0f08674SEwan Crawford 
1929ea0636b5SEwan Crawford     int chars_written = snprintf(buffer, jit_max_expr_size, expr_cstr, *allocation->address.get(), dim_x, dim_y, dim_z);
1930a0f08674SEwan Crawford     if (chars_written < 0)
1931a0f08674SEwan Crawford     {
1932a0f08674SEwan Crawford         if (log)
1933b3f7f69dSAidan Dodds             log->Printf("%s - encoding error in snprintf().", __FUNCTION__);
1934a0f08674SEwan Crawford         return false;
1935a0f08674SEwan Crawford     }
1936ea0636b5SEwan Crawford     else if (chars_written >= jit_max_expr_size)
1937a0f08674SEwan Crawford     {
1938a0f08674SEwan Crawford         if (log)
1939b3f7f69dSAidan Dodds             log->Printf("%s - expression too long.", __FUNCTION__);
1940a0f08674SEwan Crawford         return false;
1941a0f08674SEwan Crawford     }
1942a0f08674SEwan Crawford 
1943a0f08674SEwan Crawford     uint64_t result = 0;
1944a0f08674SEwan Crawford     if (!EvalRSExpression(buffer, frame_ptr, &result))
1945a0f08674SEwan Crawford         return false;
1946a0f08674SEwan Crawford 
1947a0f08674SEwan Crawford     addr_t mem_ptr = static_cast<lldb::addr_t>(result);
1948a0f08674SEwan Crawford     // Find pointer to last element and add on size of an element
1949b3f7f69dSAidan Dodds     allocation->size =
1950b3f7f69dSAidan Dodds         static_cast<uint32_t>(mem_ptr - *allocation->data_ptr.get()) + *allocation->element.datum_size.get();
1951a0f08674SEwan Crawford 
1952a0f08674SEwan Crawford     return true;
1953a0f08674SEwan Crawford }
1954a0f08674SEwan Crawford 
1955a0f08674SEwan Crawford // JITs the RS runtime for information about the stride between rows in the allocation.
1956a0f08674SEwan Crawford // This is done to detect padding, since allocated memory is 16-byte aligned.
1957a0f08674SEwan Crawford // Returns true on success, false otherwise
1958a0f08674SEwan Crawford bool
1959a0f08674SEwan Crawford RenderScriptRuntime::JITAllocationStride(AllocationDetails *allocation, StackFrame *frame_ptr)
1960a0f08674SEwan Crawford {
1961a0f08674SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
1962a0f08674SEwan Crawford 
1963a0f08674SEwan Crawford     if (!allocation->address.isValid() || !allocation->data_ptr.isValid())
1964a0f08674SEwan Crawford     {
1965a0f08674SEwan Crawford         if (log)
1966b3f7f69dSAidan Dodds             log->Printf("%s - failed to find allocation details.", __FUNCTION__);
1967a0f08674SEwan Crawford         return false;
1968a0f08674SEwan Crawford     }
1969a0f08674SEwan Crawford 
1970ea0636b5SEwan Crawford     const char *expr_cstr = JITTemplate(eExprGetOffsetPtr);
1971ea0636b5SEwan Crawford     char buffer[jit_max_expr_size];
1972a0f08674SEwan Crawford 
1973ea0636b5SEwan Crawford     int chars_written = snprintf(buffer, jit_max_expr_size, expr_cstr, *allocation->address.get(), 0, 1, 0);
1974a0f08674SEwan Crawford     if (chars_written < 0)
1975a0f08674SEwan Crawford     {
1976a0f08674SEwan Crawford         if (log)
1977b3f7f69dSAidan Dodds             log->Printf("%s - encoding error in snprintf().", __FUNCTION__);
1978a0f08674SEwan Crawford         return false;
1979a0f08674SEwan Crawford     }
1980ea0636b5SEwan Crawford     else if (chars_written >= jit_max_expr_size)
1981a0f08674SEwan Crawford     {
1982a0f08674SEwan Crawford         if (log)
1983b3f7f69dSAidan Dodds             log->Printf("%s - expression too long.", __FUNCTION__);
1984a0f08674SEwan Crawford         return false;
1985a0f08674SEwan Crawford     }
1986a0f08674SEwan Crawford 
1987a0f08674SEwan Crawford     uint64_t result = 0;
1988a0f08674SEwan Crawford     if (!EvalRSExpression(buffer, frame_ptr, &result))
1989a0f08674SEwan Crawford         return false;
1990a0f08674SEwan Crawford 
1991a0f08674SEwan Crawford     addr_t mem_ptr = static_cast<lldb::addr_t>(result);
1992a0f08674SEwan Crawford     allocation->stride = static_cast<uint32_t>(mem_ptr - *allocation->data_ptr.get());
1993a0f08674SEwan Crawford 
1994a0f08674SEwan Crawford     return true;
1995a0f08674SEwan Crawford }
1996a0f08674SEwan Crawford 
199715f2bd95SEwan Crawford // JIT all the current runtime info regarding an allocation
199815f2bd95SEwan Crawford bool
199915f2bd95SEwan Crawford RenderScriptRuntime::RefreshAllocation(AllocationDetails *allocation, StackFrame *frame_ptr)
200015f2bd95SEwan Crawford {
200115f2bd95SEwan Crawford     // GetOffsetPointer()
200215f2bd95SEwan Crawford     if (!JITDataPointer(allocation, frame_ptr))
200315f2bd95SEwan Crawford         return false;
200415f2bd95SEwan Crawford 
200515f2bd95SEwan Crawford     // rsaAllocationGetType()
200615f2bd95SEwan Crawford     if (!JITTypePointer(allocation, frame_ptr))
200715f2bd95SEwan Crawford         return false;
200815f2bd95SEwan Crawford 
200915f2bd95SEwan Crawford     // rsaTypeGetNativeData()
201015f2bd95SEwan Crawford     if (!JITTypePacked(allocation, frame_ptr))
201115f2bd95SEwan Crawford         return false;
201215f2bd95SEwan Crawford 
201315f2bd95SEwan Crawford     // rsaElementGetNativeData()
20148b244e21SEwan Crawford     if (!JITElementPacked(allocation->element, *allocation->context.get(), frame_ptr))
201515f2bd95SEwan Crawford         return false;
201615f2bd95SEwan Crawford 
20178b244e21SEwan Crawford     // Sets the datum_size member in Element
20188b244e21SEwan Crawford     SetElementSize(allocation->element);
20198b244e21SEwan Crawford 
202055232f09SEwan Crawford     // Use GetOffsetPointer() to infer size of the allocation
20218b244e21SEwan Crawford     if (!JITAllocationSize(allocation, frame_ptr))
202255232f09SEwan Crawford         return false;
202355232f09SEwan Crawford 
202455232f09SEwan Crawford     return true;
202555232f09SEwan Crawford }
202655232f09SEwan Crawford 
20278b244e21SEwan Crawford // Function attempts to set the type_name member of the paramaterised Element object.
20288b244e21SEwan Crawford // This string should be the name of the struct type the Element represents.
20298b244e21SEwan Crawford // We need this string for pretty printing the Element to users.
20308b244e21SEwan Crawford void
20318b244e21SEwan Crawford RenderScriptRuntime::FindStructTypeName(Element &elem, StackFrame *frame_ptr)
203255232f09SEwan Crawford {
20338b244e21SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
20348b244e21SEwan Crawford 
20358b244e21SEwan Crawford     if (!elem.type_name.IsEmpty()) // Name already set
20368b244e21SEwan Crawford         return;
20378b244e21SEwan Crawford     else
2038fe06b5adSAdrian McCarthy         elem.type_name = Element::GetFallbackStructName(); // Default type name if we don't succeed
20398b244e21SEwan Crawford 
20408b244e21SEwan Crawford     // Find all the global variables from the script rs modules
20418b244e21SEwan Crawford     VariableList variable_list;
20428b244e21SEwan Crawford     for (auto module_sp : m_rsmodules)
20438b244e21SEwan Crawford         module_sp->m_module->FindGlobalVariables(RegularExpression("."), true, UINT32_MAX, variable_list);
20448b244e21SEwan Crawford 
20458b244e21SEwan Crawford     // Iterate over all the global variables looking for one with a matching type to the Element.
20468b244e21SEwan Crawford     // We make the assumption a match exists since there needs to be a global variable to reflect the
20478b244e21SEwan Crawford     // struct type back into java host code.
20488b244e21SEwan Crawford     for (uint32_t var_index = 0; var_index < variable_list.GetSize(); ++var_index)
20498b244e21SEwan Crawford     {
20508b244e21SEwan Crawford         const VariableSP var_sp(variable_list.GetVariableAtIndex(var_index));
20518b244e21SEwan Crawford         if (!var_sp)
20528b244e21SEwan Crawford             continue;
20538b244e21SEwan Crawford 
20548b244e21SEwan Crawford         ValueObjectSP valobj_sp = ValueObjectVariable::Create(frame_ptr, var_sp);
20558b244e21SEwan Crawford         if (!valobj_sp)
20568b244e21SEwan Crawford             continue;
20578b244e21SEwan Crawford 
20588b244e21SEwan Crawford         // Find the number of variable fields.
20598b244e21SEwan Crawford         // If it has no fields, or more fields than our Element, then it can't be the struct we're looking for.
20608b244e21SEwan Crawford         // Don't check for equality since RS can add extra struct members for padding.
20618b244e21SEwan Crawford         size_t num_children = valobj_sp->GetNumChildren();
20628b244e21SEwan Crawford         if (num_children > elem.children.size() || num_children == 0)
20638b244e21SEwan Crawford             continue;
20648b244e21SEwan Crawford 
20658b244e21SEwan Crawford         // Iterate over children looking for members with matching field names.
20668b244e21SEwan Crawford         // If all the field names match, this is likely the struct we want.
20678b244e21SEwan Crawford         //
20688b244e21SEwan Crawford         //   TODO: This could be made more robust by also checking children data sizes, or array size
20698b244e21SEwan Crawford         bool found = true;
20708b244e21SEwan Crawford         for (size_t child_index = 0; child_index < num_children; ++child_index)
20718b244e21SEwan Crawford         {
20728b244e21SEwan Crawford             ValueObjectSP child = valobj_sp->GetChildAtIndex(child_index, true);
20738b244e21SEwan Crawford             if (!child || (child->GetName() != elem.children[child_index].type_name))
20748b244e21SEwan Crawford             {
20758b244e21SEwan Crawford                 found = false;
20768b244e21SEwan Crawford                 break;
20778b244e21SEwan Crawford             }
20788b244e21SEwan Crawford         }
20798b244e21SEwan Crawford 
20808b244e21SEwan Crawford         // RS can add extra struct members for padding in the format '#rs_padding_[0-9]+'
20818b244e21SEwan Crawford         if (found && num_children < elem.children.size())
20828b244e21SEwan Crawford         {
2083b3f7f69dSAidan Dodds             const uint32_t size_diff = elem.children.size() - num_children;
20848b244e21SEwan Crawford             if (log)
2085b3f7f69dSAidan Dodds                 log->Printf("%s - %" PRIu32 " padding struct entries", __FUNCTION__, size_diff);
20868b244e21SEwan Crawford 
2087b3f7f69dSAidan Dodds             for (uint32_t padding_index = 0; padding_index < size_diff; ++padding_index)
20888b244e21SEwan Crawford             {
20898b244e21SEwan Crawford                 const ConstString &name = elem.children[num_children + padding_index].type_name;
20908b244e21SEwan Crawford                 if (strcmp(name.AsCString(), "#rs_padding") < 0)
20918b244e21SEwan Crawford                     found = false;
20928b244e21SEwan Crawford             }
20938b244e21SEwan Crawford         }
20948b244e21SEwan Crawford 
20958b244e21SEwan Crawford         // We've found a global var with matching type
20968b244e21SEwan Crawford         if (found)
20978b244e21SEwan Crawford         {
20988b244e21SEwan Crawford             // Dereference since our Element type isn't a pointer.
20998b244e21SEwan Crawford             if (valobj_sp->IsPointerType())
21008b244e21SEwan Crawford             {
21018b244e21SEwan Crawford                 Error err;
21028b244e21SEwan Crawford                 ValueObjectSP deref_valobj = valobj_sp->Dereference(err);
21038b244e21SEwan Crawford                 if (!err.Fail())
21048b244e21SEwan Crawford                     valobj_sp = deref_valobj;
21058b244e21SEwan Crawford             }
21068b244e21SEwan Crawford 
21078b244e21SEwan Crawford             // Save name of variable in Element.
21088b244e21SEwan Crawford             elem.type_name = valobj_sp->GetTypeName();
21098b244e21SEwan Crawford             if (log)
2110b3f7f69dSAidan Dodds                 log->Printf("%s - element name set to %s", __FUNCTION__, elem.type_name.AsCString());
21118b244e21SEwan Crawford 
21128b244e21SEwan Crawford             return;
21138b244e21SEwan Crawford         }
21148b244e21SEwan Crawford     }
21158b244e21SEwan Crawford }
21168b244e21SEwan Crawford 
21178b244e21SEwan Crawford // Function sets the datum_size member of Element. Representing the size of a single instance including padding.
21188b244e21SEwan Crawford // Assumes the relevant allocation information has already been jitted.
21198b244e21SEwan Crawford void
21208b244e21SEwan Crawford RenderScriptRuntime::SetElementSize(Element &elem)
21218b244e21SEwan Crawford {
21228b244e21SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
21238b244e21SEwan Crawford     const Element::DataType type = *elem.type.get();
2124b3f7f69dSAidan Dodds     assert(type >= Element::RS_TYPE_NONE && type <= Element::RS_TYPE_FONT && "Invalid allocation type");
212555232f09SEwan Crawford 
2126b3f7f69dSAidan Dodds     const uint32_t vec_size = *elem.type_vec_size.get();
2127b3f7f69dSAidan Dodds     uint32_t data_size = 0;
2128b3f7f69dSAidan Dodds     uint32_t padding = 0;
212955232f09SEwan Crawford 
21308b244e21SEwan Crawford     // Element is of a struct type, calculate size recursively.
21318b244e21SEwan Crawford     if ((type == Element::RS_TYPE_NONE) && (elem.children.size() > 0))
21328b244e21SEwan Crawford     {
21338b244e21SEwan Crawford         for (Element &child : elem.children)
21348b244e21SEwan Crawford         {
21358b244e21SEwan Crawford             SetElementSize(child);
2136b3f7f69dSAidan Dodds             const uint32_t array_size = child.array_size.isValid() ? *child.array_size.get() : 1;
21378b244e21SEwan Crawford             data_size += *child.datum_size.get() * array_size;
21388b244e21SEwan Crawford         }
21398b244e21SEwan Crawford     }
2140b3f7f69dSAidan Dodds     // These have been packed already
2141b3f7f69dSAidan Dodds     else if (type == Element::RS_TYPE_UNSIGNED_5_6_5   ||
2142b3f7f69dSAidan Dodds              type == Element::RS_TYPE_UNSIGNED_5_5_5_1 ||
2143b3f7f69dSAidan Dodds              type == Element::RS_TYPE_UNSIGNED_4_4_4_4)
21442e920715SEwan Crawford     {
21452e920715SEwan Crawford         data_size = AllocationDetails::RSTypeToFormat[type][eElementSize];
21462e920715SEwan Crawford     }
21472e920715SEwan Crawford     else if (type < Element::RS_TYPE_ELEMENT)
21482e920715SEwan Crawford     {
21498b244e21SEwan Crawford         data_size = vec_size * AllocationDetails::RSTypeToFormat[type][eElementSize];
21502e920715SEwan Crawford         if (vec_size == 3)
21512e920715SEwan Crawford             padding = AllocationDetails::RSTypeToFormat[type][eElementSize];
21522e920715SEwan Crawford     }
21532e920715SEwan Crawford     else
21542e920715SEwan Crawford         data_size = GetProcess()->GetTarget().GetArchitecture().GetAddressByteSize();
21558b244e21SEwan Crawford 
21568b244e21SEwan Crawford     elem.padding = padding;
21578b244e21SEwan Crawford     elem.datum_size = data_size + padding;
21588b244e21SEwan Crawford     if (log)
2159b3f7f69dSAidan Dodds         log->Printf("%s - element size set to %" PRIu32, __FUNCTION__, data_size + padding);
216055232f09SEwan Crawford }
216155232f09SEwan Crawford 
216255232f09SEwan Crawford // Given an allocation, this function copies the allocation contents from device into a buffer on the heap.
216355232f09SEwan Crawford // Returning a shared pointer to the buffer containing the data.
216455232f09SEwan Crawford std::shared_ptr<uint8_t>
216555232f09SEwan Crawford RenderScriptRuntime::GetAllocationData(AllocationDetails *allocation, StackFrame *frame_ptr)
216655232f09SEwan Crawford {
216755232f09SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
216855232f09SEwan Crawford 
216955232f09SEwan Crawford     // JIT all the allocation details
21708b59062aSEwan Crawford     if (allocation->shouldRefresh())
217155232f09SEwan Crawford     {
217255232f09SEwan Crawford         if (log)
2173b3f7f69dSAidan Dodds             log->Printf("%s - allocation details not calculated yet, jitting info", __FUNCTION__);
217455232f09SEwan Crawford 
217555232f09SEwan Crawford         if (!RefreshAllocation(allocation, frame_ptr))
217655232f09SEwan Crawford         {
217755232f09SEwan Crawford             if (log)
2178b3f7f69dSAidan Dodds                 log->Printf("%s - couldn't JIT allocation details", __FUNCTION__);
217955232f09SEwan Crawford             return nullptr;
218055232f09SEwan Crawford         }
218155232f09SEwan Crawford     }
218255232f09SEwan Crawford 
2183b3f7f69dSAidan Dodds     assert(allocation->data_ptr.isValid() && allocation->element.type.isValid() &&
2184b3f7f69dSAidan Dodds            allocation->element.type_vec_size.isValid() && allocation->size.isValid() &&
2185b3f7f69dSAidan Dodds            "Allocation information not available");
218655232f09SEwan Crawford 
218755232f09SEwan Crawford     // Allocate a buffer to copy data into
2188b3f7f69dSAidan Dodds     const uint32_t size = *allocation->size.get();
218955232f09SEwan Crawford     std::shared_ptr<uint8_t> buffer(new uint8_t[size]);
219055232f09SEwan Crawford     if (!buffer)
219155232f09SEwan Crawford     {
219255232f09SEwan Crawford         if (log)
2193b3f7f69dSAidan Dodds             log->Printf("%s - couldn't allocate a %" PRIu32 " byte buffer", __FUNCTION__, size);
219455232f09SEwan Crawford         return nullptr;
219555232f09SEwan Crawford     }
219655232f09SEwan Crawford 
219755232f09SEwan Crawford     // Read the inferior memory
219855232f09SEwan Crawford     Error error;
219955232f09SEwan Crawford     lldb::addr_t data_ptr = *allocation->data_ptr.get();
220055232f09SEwan Crawford     GetProcess()->ReadMemory(data_ptr, buffer.get(), size, error);
220155232f09SEwan Crawford     if (error.Fail())
220255232f09SEwan Crawford     {
220355232f09SEwan Crawford         if (log)
2204b3f7f69dSAidan Dodds             log->Printf("%s - '%s' Couldn't read %" PRIu32 " bytes of allocation data from 0x%" PRIx64,
2205b3f7f69dSAidan Dodds                         __FUNCTION__, error.AsCString(), size, data_ptr);
220655232f09SEwan Crawford         return nullptr;
220755232f09SEwan Crawford     }
220855232f09SEwan Crawford 
220955232f09SEwan Crawford     return buffer;
221055232f09SEwan Crawford }
221155232f09SEwan Crawford 
221255232f09SEwan Crawford // Function copies data from a binary file into an allocation.
221355232f09SEwan Crawford // There is a header at the start of the file, FileHeader, before the data content itself.
221455232f09SEwan Crawford // Information from this header is used to display warnings to the user about incompatabilities
221555232f09SEwan Crawford bool
221655232f09SEwan Crawford RenderScriptRuntime::LoadAllocation(Stream &strm, const uint32_t alloc_id, const char *filename, StackFrame *frame_ptr)
221755232f09SEwan Crawford {
221855232f09SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
221955232f09SEwan Crawford 
222055232f09SEwan Crawford     // Find allocation with the given id
222155232f09SEwan Crawford     AllocationDetails *alloc = FindAllocByID(strm, alloc_id);
222255232f09SEwan Crawford     if (!alloc)
222355232f09SEwan Crawford         return false;
222455232f09SEwan Crawford 
222555232f09SEwan Crawford     if (log)
2226b3f7f69dSAidan Dodds         log->Printf("%s - found allocation 0x%" PRIx64, __FUNCTION__, *alloc->address.get());
222755232f09SEwan Crawford 
222855232f09SEwan Crawford     // JIT all the allocation details
22298b59062aSEwan Crawford     if (alloc->shouldRefresh())
223055232f09SEwan Crawford     {
223155232f09SEwan Crawford         if (log)
2232b3f7f69dSAidan Dodds             log->Printf("%s - allocation details not calculated yet, jitting info.", __FUNCTION__);
223355232f09SEwan Crawford 
223455232f09SEwan Crawford         if (!RefreshAllocation(alloc, frame_ptr))
223555232f09SEwan Crawford         {
223655232f09SEwan Crawford             if (log)
2237b3f7f69dSAidan Dodds                 log->Printf("%s - couldn't JIT allocation details", __FUNCTION__);
22384cfc9198SSylvestre Ledru             return false;
223955232f09SEwan Crawford         }
224055232f09SEwan Crawford     }
224155232f09SEwan Crawford 
2242b3f7f69dSAidan Dodds     assert(alloc->data_ptr.isValid() && alloc->element.type.isValid() && alloc->element.type_vec_size.isValid() &&
2243b3f7f69dSAidan Dodds            alloc->size.isValid() && alloc->element.datum_size.isValid() && "Allocation information not available");
224455232f09SEwan Crawford 
224555232f09SEwan Crawford     // Check we can read from file
224655232f09SEwan Crawford     FileSpec file(filename, true);
224755232f09SEwan Crawford     if (!file.Exists())
224855232f09SEwan Crawford     {
224955232f09SEwan Crawford         strm.Printf("Error: File %s does not exist", filename);
225055232f09SEwan Crawford         strm.EOL();
225155232f09SEwan Crawford         return false;
225255232f09SEwan Crawford     }
225355232f09SEwan Crawford 
225455232f09SEwan Crawford     if (!file.Readable())
225555232f09SEwan Crawford     {
225655232f09SEwan Crawford         strm.Printf("Error: File %s does not have readable permissions", filename);
225755232f09SEwan Crawford         strm.EOL();
225855232f09SEwan Crawford         return false;
225955232f09SEwan Crawford     }
226055232f09SEwan Crawford 
226155232f09SEwan Crawford     // Read file into data buffer
226255232f09SEwan Crawford     DataBufferSP data_sp(file.ReadFileContents());
226355232f09SEwan Crawford 
226455232f09SEwan Crawford     // Cast start of buffer to FileHeader and use pointer to read metadata
226555232f09SEwan Crawford     void *file_buffer = data_sp->GetBytes();
2266b3f7f69dSAidan Dodds     if (file_buffer == nullptr ||
2267b3f7f69dSAidan Dodds         data_sp->GetByteSize() < (sizeof(AllocationDetails::FileHeader) + sizeof(AllocationDetails::ElementHeader)))
226826e52a70SEwan Crawford     {
226926e52a70SEwan Crawford         strm.Printf("Error: File %s does not contain enough data for header", filename);
227026e52a70SEwan Crawford         strm.EOL();
227126e52a70SEwan Crawford         return false;
227226e52a70SEwan Crawford     }
227326e52a70SEwan Crawford     const AllocationDetails::FileHeader *file_header = static_cast<AllocationDetails::FileHeader *>(file_buffer);
227455232f09SEwan Crawford 
227526e52a70SEwan Crawford     // Check file starts with ascii characters "RSAD"
2276b3f7f69dSAidan Dodds     if (memcmp(file_header->ident, "RSAD", 4))
227726e52a70SEwan Crawford     {
227826e52a70SEwan Crawford         strm.Printf("Error: File doesn't contain identifier for an RS allocation dump. Are you sure this is the correct file?");
227926e52a70SEwan Crawford         strm.EOL();
228026e52a70SEwan Crawford         return false;
228126e52a70SEwan Crawford     }
228226e52a70SEwan Crawford 
228326e52a70SEwan Crawford     // Look at the type of the root element in the header
228426e52a70SEwan Crawford     AllocationDetails::ElementHeader root_element_header;
228526e52a70SEwan Crawford     memcpy(&root_element_header, static_cast<uint8_t *>(file_buffer) + sizeof(AllocationDetails::FileHeader),
228626e52a70SEwan Crawford            sizeof(AllocationDetails::ElementHeader));
228755232f09SEwan Crawford 
228855232f09SEwan Crawford     if (log)
2289b3f7f69dSAidan Dodds         log->Printf("%s - header type %" PRIu32 ", element size %" PRIu32, __FUNCTION__,
229026e52a70SEwan Crawford                     root_element_header.type, root_element_header.element_size);
229155232f09SEwan Crawford 
229255232f09SEwan Crawford     // Check if the target allocation and file both have the same number of bytes for an Element
229326e52a70SEwan Crawford     if (*alloc->element.datum_size.get() != root_element_header.element_size)
229455232f09SEwan Crawford     {
2295b3f7f69dSAidan Dodds         strm.Printf("Warning: Mismatched Element sizes - file %" PRIu32 " bytes, allocation %" PRIu32 " bytes",
229626e52a70SEwan Crawford                     root_element_header.element_size, *alloc->element.datum_size.get());
229755232f09SEwan Crawford         strm.EOL();
229855232f09SEwan Crawford     }
229955232f09SEwan Crawford 
230026e52a70SEwan Crawford     // Check if the target allocation and file both have the same type
2301b3f7f69dSAidan Dodds     const uint32_t alloc_type = static_cast<uint32_t>(*alloc->element.type.get());
2302b3f7f69dSAidan Dodds     const uint32_t file_type = root_element_header.type;
230326e52a70SEwan Crawford 
230426e52a70SEwan Crawford     if (file_type > Element::RS_TYPE_FONT)
230526e52a70SEwan Crawford     {
230626e52a70SEwan Crawford         strm.Printf("Warning: File has unknown allocation type");
230726e52a70SEwan Crawford         strm.EOL();
230826e52a70SEwan Crawford     }
230926e52a70SEwan Crawford     else if (alloc_type != file_type)
231055232f09SEwan Crawford     {
23112e920715SEwan Crawford         // Enum value isn't monotonous, so doesn't always index RsDataTypeToString array
2312b3f7f69dSAidan Dodds         uint32_t printable_target_type_index = alloc_type;
2313b3f7f69dSAidan Dodds         uint32_t printable_head_type_index = file_type;
231426e52a70SEwan Crawford         if (alloc_type >= Element::RS_TYPE_ELEMENT && alloc_type <= Element::RS_TYPE_FONT)
2315b3f7f69dSAidan Dodds             printable_target_type_index = static_cast<Element::DataType>((alloc_type - Element::RS_TYPE_ELEMENT) +
2316b3f7f69dSAidan Dodds                                                                          Element::RS_TYPE_MATRIX_2X2 + 1);
23172e920715SEwan Crawford 
231826e52a70SEwan Crawford         if (file_type >= Element::RS_TYPE_ELEMENT && file_type <= Element::RS_TYPE_FONT)
2319b3f7f69dSAidan Dodds             printable_head_type_index = static_cast<Element::DataType>((file_type - Element::RS_TYPE_ELEMENT) +
2320b3f7f69dSAidan Dodds                                                                        Element::RS_TYPE_MATRIX_2X2 + 1);
23212e920715SEwan Crawford 
23222e920715SEwan Crawford         const char *file_type_cstr = AllocationDetails::RsDataTypeToString[printable_head_type_index][0];
23232e920715SEwan Crawford         const char *target_type_cstr = AllocationDetails::RsDataTypeToString[printable_target_type_index][0];
232455232f09SEwan Crawford 
2325b3f7f69dSAidan Dodds         strm.Printf("Warning: Mismatched Types - file '%s' type, allocation '%s' type", file_type_cstr,
2326b3f7f69dSAidan Dodds                     target_type_cstr);
232755232f09SEwan Crawford         strm.EOL();
232855232f09SEwan Crawford     }
232955232f09SEwan Crawford 
233026e52a70SEwan Crawford     // Advance buffer past header
233126e52a70SEwan Crawford     file_buffer = static_cast<uint8_t *>(file_buffer) + file_header->hdr_size;
233226e52a70SEwan Crawford 
233355232f09SEwan Crawford     // Calculate size of allocation data in file
233426e52a70SEwan Crawford     size_t length = data_sp->GetByteSize() - file_header->hdr_size;
233555232f09SEwan Crawford 
233655232f09SEwan Crawford     // Check if the target allocation and file both have the same total data size.
2337b3f7f69dSAidan Dodds     const uint32_t alloc_size = *alloc->size.get();
233855232f09SEwan Crawford     if (alloc_size != length)
233955232f09SEwan Crawford     {
2340b3f7f69dSAidan Dodds         strm.Printf("Warning: Mismatched allocation sizes - file 0x%" PRIx64 " bytes, allocation 0x%" PRIx32 " bytes",
2341eba832beSJason Molenda                     (uint64_t)length, alloc_size);
234255232f09SEwan Crawford         strm.EOL();
234355232f09SEwan Crawford         length = alloc_size < length ? alloc_size : length; // Set length to copy to minimum
234455232f09SEwan Crawford     }
234555232f09SEwan Crawford 
234655232f09SEwan Crawford     // Copy file data from our buffer into the target allocation.
234755232f09SEwan Crawford     lldb::addr_t alloc_data = *alloc->data_ptr.get();
234855232f09SEwan Crawford     Error error;
234955232f09SEwan Crawford     size_t bytes_written = GetProcess()->WriteMemory(alloc_data, file_buffer, length, error);
235055232f09SEwan Crawford     if (!error.Success() || bytes_written != length)
235155232f09SEwan Crawford     {
235255232f09SEwan Crawford         strm.Printf("Error: Couldn't write data to allocation %s", error.AsCString());
235355232f09SEwan Crawford         strm.EOL();
235455232f09SEwan Crawford         return false;
235555232f09SEwan Crawford     }
235655232f09SEwan Crawford 
2357b3f7f69dSAidan Dodds     strm.Printf("Contents of file '%s' read into allocation %" PRIu32, filename, alloc->id);
235855232f09SEwan Crawford     strm.EOL();
235955232f09SEwan Crawford 
236055232f09SEwan Crawford     return true;
236155232f09SEwan Crawford }
236255232f09SEwan Crawford 
236326e52a70SEwan Crawford // Function takes as parameters a byte buffer, which will eventually be written to file as the element header,
236426e52a70SEwan Crawford // an offset into that buffer, and an Element that will be saved into the buffer at the parametrised offset.
236526e52a70SEwan Crawford // Return value is the new offset after writing the element into the buffer.
2366b3f7f69dSAidan Dodds // Elements are saved to the file as the ElementHeader struct followed by offsets to the structs of all the element's
2367b3f7f69dSAidan Dodds // children.
236826e52a70SEwan Crawford size_t
2369b3f7f69dSAidan Dodds RenderScriptRuntime::PopulateElementHeaders(const std::shared_ptr<uint8_t> header_buffer, size_t offset,
2370b3f7f69dSAidan Dodds                                             const Element &elem)
237126e52a70SEwan Crawford {
237226e52a70SEwan Crawford     // File struct for an element header with all the relevant details copied from elem.
237326e52a70SEwan Crawford     // We assume members are valid already.
237426e52a70SEwan Crawford     AllocationDetails::ElementHeader elem_header;
237526e52a70SEwan Crawford     elem_header.type = *elem.type.get();
237626e52a70SEwan Crawford     elem_header.kind = *elem.type_kind.get();
237726e52a70SEwan Crawford     elem_header.element_size = *elem.datum_size.get();
237826e52a70SEwan Crawford     elem_header.vector_size = *elem.type_vec_size.get();
237926e52a70SEwan Crawford     elem_header.array_size = elem.array_size.isValid() ? *elem.array_size.get() : 0;
238026e52a70SEwan Crawford     const size_t elem_header_size = sizeof(AllocationDetails::ElementHeader);
238126e52a70SEwan Crawford 
238226e52a70SEwan Crawford     // Copy struct into buffer and advance offset
2383b3f7f69dSAidan Dodds     // We assume that header_buffer has been checked for nullptr before this method is called
238426e52a70SEwan Crawford     memcpy(header_buffer.get() + offset, &elem_header, elem_header_size);
238526e52a70SEwan Crawford     offset += elem_header_size;
238626e52a70SEwan Crawford 
238726e52a70SEwan Crawford     // Starting offset of child ElementHeader struct
238826e52a70SEwan Crawford     size_t child_offset = offset + ((elem.children.size() + 1) * sizeof(uint32_t));
238926e52a70SEwan Crawford     for (const RenderScriptRuntime::Element &child : elem.children)
239026e52a70SEwan Crawford     {
239126e52a70SEwan Crawford         // Recursively populate the buffer with the element header structs of children.
239226e52a70SEwan Crawford         // Then save the offsets where they were set after the parent element header.
239326e52a70SEwan Crawford         memcpy(header_buffer.get() + offset, &child_offset, sizeof(uint32_t));
239426e52a70SEwan Crawford         offset += sizeof(uint32_t);
239526e52a70SEwan Crawford 
239626e52a70SEwan Crawford         child_offset = PopulateElementHeaders(header_buffer, child_offset, child);
239726e52a70SEwan Crawford     }
239826e52a70SEwan Crawford 
239926e52a70SEwan Crawford     // Zero indicates no more children
240026e52a70SEwan Crawford     memset(header_buffer.get() + offset, 0, sizeof(uint32_t));
240126e52a70SEwan Crawford 
240226e52a70SEwan Crawford     return child_offset;
240326e52a70SEwan Crawford }
240426e52a70SEwan Crawford 
2405b3f7f69dSAidan Dodds // Given an Element object this function returns the total size needed in the file header to store the element's
2406b3f7f69dSAidan Dodds // details.
240726e52a70SEwan Crawford // Taking into account the size of the element header struct, plus the offsets to all the element's children.
240826e52a70SEwan Crawford // Function is recursive so that the size of all ancestors is taken into account.
240926e52a70SEwan Crawford size_t
241026e52a70SEwan Crawford RenderScriptRuntime::CalculateElementHeaderSize(const Element &elem)
241126e52a70SEwan Crawford {
241226e52a70SEwan Crawford     size_t size = (elem.children.size() + 1) * sizeof(uint32_t); // Offsets to children plus zero terminator
241326e52a70SEwan Crawford     size += sizeof(AllocationDetails::ElementHeader);            // Size of header struct with type details
241426e52a70SEwan Crawford 
241526e52a70SEwan Crawford     // Calculate recursively for all descendants
241626e52a70SEwan Crawford     for (const Element &child : elem.children)
241726e52a70SEwan Crawford         size += CalculateElementHeaderSize(child);
241826e52a70SEwan Crawford 
241926e52a70SEwan Crawford     return size;
242026e52a70SEwan Crawford }
242126e52a70SEwan Crawford 
242255232f09SEwan Crawford // Function copies allocation contents into a binary file.
242355232f09SEwan Crawford // This file can then be loaded later into a different allocation.
242455232f09SEwan Crawford // There is a header, FileHeader, before the allocation data containing meta-data.
242555232f09SEwan Crawford bool
242655232f09SEwan Crawford RenderScriptRuntime::SaveAllocation(Stream &strm, const uint32_t alloc_id, const char *filename, StackFrame *frame_ptr)
242755232f09SEwan Crawford {
242855232f09SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
242955232f09SEwan Crawford 
243055232f09SEwan Crawford     // Find allocation with the given id
243155232f09SEwan Crawford     AllocationDetails *alloc = FindAllocByID(strm, alloc_id);
243255232f09SEwan Crawford     if (!alloc)
243355232f09SEwan Crawford         return false;
243455232f09SEwan Crawford 
243555232f09SEwan Crawford     if (log)
2436b3f7f69dSAidan Dodds         log->Printf("%s - found allocation 0x%" PRIx64 ".", __FUNCTION__, *alloc->address.get());
243755232f09SEwan Crawford 
243855232f09SEwan Crawford     // JIT all the allocation details
24398b59062aSEwan Crawford     if (alloc->shouldRefresh())
244055232f09SEwan Crawford     {
244155232f09SEwan Crawford         if (log)
2442b3f7f69dSAidan Dodds             log->Printf("%s - allocation details not calculated yet, jitting info.", __FUNCTION__);
244355232f09SEwan Crawford 
244455232f09SEwan Crawford         if (!RefreshAllocation(alloc, frame_ptr))
244555232f09SEwan Crawford         {
244655232f09SEwan Crawford             if (log)
2447b3f7f69dSAidan Dodds                 log->Printf("%s - couldn't JIT allocation details.", __FUNCTION__);
24484cfc9198SSylvestre Ledru             return false;
244955232f09SEwan Crawford         }
245055232f09SEwan Crawford     }
245155232f09SEwan Crawford 
2452b3f7f69dSAidan Dodds     assert(alloc->data_ptr.isValid() && alloc->element.type.isValid() && alloc->element.type_vec_size.isValid() &&
2453b3f7f69dSAidan Dodds            alloc->element.datum_size.get() && alloc->element.type_kind.isValid() && alloc->dimension.isValid() &&
2454b3f7f69dSAidan Dodds            "Allocation information not available");
245555232f09SEwan Crawford 
245655232f09SEwan Crawford     // Check we can create writable file
245755232f09SEwan Crawford     FileSpec file_spec(filename, true);
245855232f09SEwan Crawford     File file(file_spec, File::eOpenOptionWrite | File::eOpenOptionCanCreate | File::eOpenOptionTruncate);
245955232f09SEwan Crawford     if (!file)
246055232f09SEwan Crawford     {
246155232f09SEwan Crawford         strm.Printf("Error: Failed to open '%s' for writing", filename);
246255232f09SEwan Crawford         strm.EOL();
246355232f09SEwan Crawford         return false;
246455232f09SEwan Crawford     }
246555232f09SEwan Crawford 
246655232f09SEwan Crawford     // Read allocation into buffer of heap memory
246755232f09SEwan Crawford     const std::shared_ptr<uint8_t> buffer = GetAllocationData(alloc, frame_ptr);
246855232f09SEwan Crawford     if (!buffer)
246955232f09SEwan Crawford     {
247055232f09SEwan Crawford         strm.Printf("Error: Couldn't read allocation data into buffer");
247155232f09SEwan Crawford         strm.EOL();
247255232f09SEwan Crawford         return false;
247355232f09SEwan Crawford     }
247455232f09SEwan Crawford 
247555232f09SEwan Crawford     // Create the file header
247655232f09SEwan Crawford     AllocationDetails::FileHeader head;
2477b3f7f69dSAidan Dodds     memcpy(head.ident, "RSAD", 4);
24782d62328aSEwan Crawford     head.dims[0] = static_cast<uint32_t>(alloc->dimension.get()->dim_1);
24792d62328aSEwan Crawford     head.dims[1] = static_cast<uint32_t>(alloc->dimension.get()->dim_2);
24802d62328aSEwan Crawford     head.dims[2] = static_cast<uint32_t>(alloc->dimension.get()->dim_3);
248126e52a70SEwan Crawford 
248226e52a70SEwan Crawford     const size_t element_header_size = CalculateElementHeaderSize(alloc->element);
248326e52a70SEwan Crawford     assert((sizeof(AllocationDetails::FileHeader) + element_header_size) < UINT16_MAX && "Element header too large");
248426e52a70SEwan Crawford     head.hdr_size = static_cast<uint16_t>(sizeof(AllocationDetails::FileHeader) + element_header_size);
248555232f09SEwan Crawford 
248655232f09SEwan Crawford     // Write the file header
248755232f09SEwan Crawford     size_t num_bytes = sizeof(AllocationDetails::FileHeader);
248826e52a70SEwan Crawford     if (log)
2489*cec91ef9SGreg Clayton         log->Printf("%s - writing File Header, 0x%" PRIx64 " bytes", __FUNCTION__, (uint64_t)num_bytes);
249026e52a70SEwan Crawford 
249126e52a70SEwan Crawford     Error err = file.Write(&head, num_bytes);
249226e52a70SEwan Crawford     if (!err.Success())
249326e52a70SEwan Crawford     {
249426e52a70SEwan Crawford         strm.Printf("Error: '%s' when writing to file '%s'", err.AsCString(), filename);
249526e52a70SEwan Crawford         strm.EOL();
249626e52a70SEwan Crawford         return false;
249726e52a70SEwan Crawford     }
249826e52a70SEwan Crawford 
249926e52a70SEwan Crawford     // Create the headers describing the element type of the allocation.
250026e52a70SEwan Crawford     std::shared_ptr<uint8_t> element_header_buffer(new uint8_t[element_header_size]);
250126e52a70SEwan Crawford     if (element_header_buffer == nullptr)
250226e52a70SEwan Crawford     {
2503*cec91ef9SGreg Clayton         strm.Printf("Internal Error: Couldn't allocate %" PRIu64 " bytes on the heap", (uint64_t)element_header_size);
250426e52a70SEwan Crawford         strm.EOL();
250526e52a70SEwan Crawford         return false;
250626e52a70SEwan Crawford     }
250726e52a70SEwan Crawford 
250826e52a70SEwan Crawford     PopulateElementHeaders(element_header_buffer, 0, alloc->element);
250926e52a70SEwan Crawford 
251026e52a70SEwan Crawford     // Write headers for allocation element type to file
251126e52a70SEwan Crawford     num_bytes = element_header_size;
251226e52a70SEwan Crawford     if (log)
2513*cec91ef9SGreg Clayton         log->Printf("%s - writing element headers, 0x%" PRIx64 " bytes.", __FUNCTION__, (uint64_t)num_bytes);
251426e52a70SEwan Crawford 
251526e52a70SEwan Crawford     err = file.Write(element_header_buffer.get(), num_bytes);
251655232f09SEwan Crawford     if (!err.Success())
251755232f09SEwan Crawford     {
251855232f09SEwan Crawford         strm.Printf("Error: '%s' when writing to file '%s'", err.AsCString(), filename);
251955232f09SEwan Crawford         strm.EOL();
252055232f09SEwan Crawford         return false;
252155232f09SEwan Crawford     }
252255232f09SEwan Crawford 
252355232f09SEwan Crawford     // Write allocation data to file
252455232f09SEwan Crawford     num_bytes = static_cast<size_t>(*alloc->size.get());
252555232f09SEwan Crawford     if (log)
2526*cec91ef9SGreg Clayton         log->Printf("%s - writing 0x%" PRIx64 " bytes", __FUNCTION__, (uint64_t)num_bytes);
252755232f09SEwan Crawford 
252855232f09SEwan Crawford     err = file.Write(buffer.get(), num_bytes);
252955232f09SEwan Crawford     if (!err.Success())
253055232f09SEwan Crawford     {
253155232f09SEwan Crawford         strm.Printf("Error: '%s' when writing to file '%s'", err.AsCString(), filename);
253255232f09SEwan Crawford         strm.EOL();
253355232f09SEwan Crawford         return false;
253455232f09SEwan Crawford     }
253555232f09SEwan Crawford 
253655232f09SEwan Crawford     strm.Printf("Allocation written to file '%s'", filename);
253755232f09SEwan Crawford     strm.EOL();
253815f2bd95SEwan Crawford     return true;
253915f2bd95SEwan Crawford }
254015f2bd95SEwan Crawford 
25415ec532a9SColin Riley bool
25425ec532a9SColin Riley RenderScriptRuntime::LoadModule(const lldb::ModuleSP &module_sp)
25435ec532a9SColin Riley {
25444640cde1SColin Riley     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
25454640cde1SColin Riley 
25465ec532a9SColin Riley     if (module_sp)
25475ec532a9SColin Riley     {
25485ec532a9SColin Riley         for (const auto &rs_module : m_rsmodules)
25495ec532a9SColin Riley         {
25504640cde1SColin Riley             if (rs_module->m_module == module_sp)
25517dc7771cSEwan Crawford             {
25527dc7771cSEwan Crawford                 // Check if the user has enabled automatically breaking on
25537dc7771cSEwan Crawford                 // all RS kernels.
25547dc7771cSEwan Crawford                 if (m_breakAllKernels)
25557dc7771cSEwan Crawford                     BreakOnModuleKernels(rs_module);
25567dc7771cSEwan Crawford 
25575ec532a9SColin Riley                 return false;
25585ec532a9SColin Riley             }
25597dc7771cSEwan Crawford         }
2560ef20b08fSColin Riley         bool module_loaded = false;
2561ef20b08fSColin Riley         switch (GetModuleKind(module_sp))
2562ef20b08fSColin Riley         {
2563ef20b08fSColin Riley             case eModuleKindKernelObj:
2564ef20b08fSColin Riley             {
25654640cde1SColin Riley                 RSModuleDescriptorSP module_desc;
25664640cde1SColin Riley                 module_desc.reset(new RSModuleDescriptor(module_sp));
25674640cde1SColin Riley                 if (module_desc->ParseRSInfo())
25685ec532a9SColin Riley                 {
25695ec532a9SColin Riley                     m_rsmodules.push_back(module_desc);
2570ef20b08fSColin Riley                     module_loaded = true;
25715ec532a9SColin Riley                 }
25724640cde1SColin Riley                 if (module_loaded)
25734640cde1SColin Riley                 {
25744640cde1SColin Riley                     FixupScriptDetails(module_desc);
25754640cde1SColin Riley                 }
2576ef20b08fSColin Riley                 break;
2577ef20b08fSColin Riley             }
2578ef20b08fSColin Riley             case eModuleKindDriver:
25794640cde1SColin Riley             {
25804640cde1SColin Riley                 if (!m_libRSDriver)
25814640cde1SColin Riley                 {
25824640cde1SColin Riley                     m_libRSDriver = module_sp;
25834640cde1SColin Riley                     LoadRuntimeHooks(m_libRSDriver, RenderScriptRuntime::eModuleKindDriver);
25844640cde1SColin Riley                 }
25854640cde1SColin Riley                 break;
25864640cde1SColin Riley             }
2587ef20b08fSColin Riley             case eModuleKindImpl:
25884640cde1SColin Riley             {
25894640cde1SColin Riley                 m_libRSCpuRef = module_sp;
25904640cde1SColin Riley                 break;
25914640cde1SColin Riley             }
2592ef20b08fSColin Riley             case eModuleKindLibRS:
25934640cde1SColin Riley             {
25944640cde1SColin Riley                 if (!m_libRS)
25954640cde1SColin Riley                 {
25964640cde1SColin Riley                     m_libRS = module_sp;
25974640cde1SColin Riley                     static ConstString gDbgPresentStr("gDebuggerPresent");
2598b3f7f69dSAidan Dodds                     const Symbol *debug_present =
2599b3f7f69dSAidan Dodds                         m_libRS->FindFirstSymbolWithNameAndType(gDbgPresentStr, eSymbolTypeData);
26004640cde1SColin Riley                     if (debug_present)
26014640cde1SColin Riley                     {
26024640cde1SColin Riley                         Error error;
26034640cde1SColin Riley                         uint32_t flag = 0x00000001U;
26044640cde1SColin Riley                         Target &target = GetProcess()->GetTarget();
2605358cf1eaSGreg Clayton                         addr_t addr = debug_present->GetLoadAddress(&target);
26064640cde1SColin Riley                         GetProcess()->WriteMemory(addr, &flag, sizeof(flag), error);
26074640cde1SColin Riley                         if (error.Success())
26084640cde1SColin Riley                         {
26094640cde1SColin Riley                             if (log)
2610b3f7f69dSAidan Dodds                                 log->Printf("%s - debugger present flag set on debugee.", __FUNCTION__);
26114640cde1SColin Riley 
26124640cde1SColin Riley                             m_debuggerPresentFlagged = true;
26134640cde1SColin Riley                         }
26144640cde1SColin Riley                         else if (log)
26154640cde1SColin Riley                         {
2616b3f7f69dSAidan Dodds                             log->Printf("%s - error writing debugger present flags '%s' ", __FUNCTION__,
2617b3f7f69dSAidan Dodds                                         error.AsCString());
26184640cde1SColin Riley                         }
26194640cde1SColin Riley                     }
26204640cde1SColin Riley                     else if (log)
26214640cde1SColin Riley                     {
2622b3f7f69dSAidan Dodds                         log->Printf("%s - error writing debugger present flags - symbol not found", __FUNCTION__);
26234640cde1SColin Riley                     }
26244640cde1SColin Riley                 }
26254640cde1SColin Riley                 break;
26264640cde1SColin Riley             }
2627ef20b08fSColin Riley             default:
2628ef20b08fSColin Riley                 break;
2629ef20b08fSColin Riley         }
2630ef20b08fSColin Riley         if (module_loaded)
2631ef20b08fSColin Riley             Update();
2632ef20b08fSColin Riley         return module_loaded;
26335ec532a9SColin Riley     }
26345ec532a9SColin Riley     return false;
26355ec532a9SColin Riley }
26365ec532a9SColin Riley 
2637ef20b08fSColin Riley void
2638ef20b08fSColin Riley RenderScriptRuntime::Update()
2639ef20b08fSColin Riley {
2640ef20b08fSColin Riley     if (m_rsmodules.size() > 0)
2641ef20b08fSColin Riley     {
2642ef20b08fSColin Riley         if (!m_initiated)
2643ef20b08fSColin Riley         {
2644ef20b08fSColin Riley             Initiate();
2645ef20b08fSColin Riley         }
2646ef20b08fSColin Riley     }
2647ef20b08fSColin Riley }
2648ef20b08fSColin Riley 
26495ec532a9SColin Riley // The maximum line length of an .rs.info packet
26505ec532a9SColin Riley #define MAXLINE 500
2651b0be30f7SAidan Dodds #define STRINGIFY(x) #x
2652b0be30f7SAidan Dodds #define MAXLINESTR_(x) "%" STRINGIFY(x) "s"
2653b0be30f7SAidan Dodds #define MAXLINESTR MAXLINESTR_(MAXLINE)
26545ec532a9SColin Riley 
26555ec532a9SColin Riley // The .rs.info symbol in renderscript modules contains a string which needs to be parsed.
26565ec532a9SColin Riley // The string is basic and is parsed on a line by line basis.
26575ec532a9SColin Riley bool
26585ec532a9SColin Riley RSModuleDescriptor::ParseRSInfo()
26595ec532a9SColin Riley {
2660b0be30f7SAidan Dodds     assert(m_module);
26615ec532a9SColin Riley     const Symbol *info_sym = m_module->FindFirstSymbolWithNameAndType(ConstString(".rs.info"), eSymbolTypeData);
2662b0be30f7SAidan Dodds     if (!info_sym)
2663b0be30f7SAidan Dodds         return false;
2664b0be30f7SAidan Dodds 
2665358cf1eaSGreg Clayton     const addr_t addr = info_sym->GetAddressRef().GetFileAddress();
2666b0be30f7SAidan Dodds     if (addr == LLDB_INVALID_ADDRESS)
2667b0be30f7SAidan Dodds         return false;
2668b0be30f7SAidan Dodds 
26695ec532a9SColin Riley     const addr_t size = info_sym->GetByteSize();
26705ec532a9SColin Riley     const FileSpec fs = m_module->GetFileSpec();
26715ec532a9SColin Riley 
2672b0be30f7SAidan Dodds     const DataBufferSP buffer = fs.ReadFileContents(addr, size);
26735ec532a9SColin Riley     if (!buffer)
26745ec532a9SColin Riley         return false;
26755ec532a9SColin Riley 
2676b0be30f7SAidan Dodds     // split rs.info. contents into lines
26775ec532a9SColin Riley     std::vector<std::string> info_lines;
26785ec532a9SColin Riley     {
2679b0be30f7SAidan Dodds         const std::string info((const char *)buffer->GetBytes());
2680b0be30f7SAidan Dodds         for (size_t tail = 0; tail < info.size();)
2681b0be30f7SAidan Dodds         {
2682b0be30f7SAidan Dodds             // find next new line or end of string
2683b0be30f7SAidan Dodds             size_t head = info.find('\n', tail);
2684b0be30f7SAidan Dodds             head = (head == std::string::npos) ? info.size() : head;
2685b0be30f7SAidan Dodds             std::string line = info.substr(tail, head - tail);
2686b0be30f7SAidan Dodds             // add to line list
2687b0be30f7SAidan Dodds             info_lines.push_back(line);
2688b0be30f7SAidan Dodds             tail = head + 1;
26895ec532a9SColin Riley         }
2690b0be30f7SAidan Dodds     }
2691b0be30f7SAidan Dodds 
26927ccf1373SSaleem Abdulrasool     std::array<char, MAXLINE> name{{'\0'}};
26937ccf1373SSaleem Abdulrasool     std::array<char, MAXLINE> value{{'\0'}};
2694b0be30f7SAidan Dodds 
2695b0be30f7SAidan Dodds     // parse all text lines of .rs.info
2696b0be30f7SAidan Dodds     for (auto line = info_lines.begin(); line != info_lines.end(); ++line)
26975ec532a9SColin Riley     {
26985ec532a9SColin Riley         uint32_t numDefns = 0;
2699b0be30f7SAidan Dodds         if (sscanf(line->c_str(), "exportVarCount: %" PRIu32 "", &numDefns) == 1)
27005ec532a9SColin Riley         {
27015ec532a9SColin Riley             while (numDefns--)
2702b0be30f7SAidan Dodds                 m_globals.push_back(RSGlobalDescriptor(this, (++line)->c_str()));
27035ec532a9SColin Riley         }
2704b0be30f7SAidan Dodds         else if (sscanf(line->c_str(), "exportForEachCount: %" PRIu32 "", &numDefns) == 1)
27055ec532a9SColin Riley         {
27065ec532a9SColin Riley             while (numDefns--)
27075ec532a9SColin Riley             {
27085ec532a9SColin Riley                 uint32_t slot = 0;
27095ec532a9SColin Riley                 name[0] = '\0';
2710b0be30f7SAidan Dodds                 static const char *fmt_s = "%" PRIu32 " - " MAXLINESTR;
2711b0be30f7SAidan Dodds                 if (sscanf((++line)->c_str(), fmt_s, &slot, name.data()) == 2)
27125ec532a9SColin Riley                 {
2713b0be30f7SAidan Dodds                     if (name[0] != '\0')
2714b0be30f7SAidan Dodds                         m_kernels.push_back(RSKernelDescriptor(this, name.data(), slot));
27154640cde1SColin Riley                 }
27164640cde1SColin Riley             }
27174640cde1SColin Riley         }
2718b0be30f7SAidan Dodds         else if (sscanf(line->c_str(), "pragmaCount: %" PRIu32 "", &numDefns) == 1)
27194640cde1SColin Riley         {
27204640cde1SColin Riley             while (numDefns--)
27214640cde1SColin Riley             {
2722b0be30f7SAidan Dodds                 name[0] = value[0] = '\0';
2723b0be30f7SAidan Dodds                 static const char *fmt_s = MAXLINESTR " - " MAXLINESTR;
2724b0be30f7SAidan Dodds                 if (sscanf((++line)->c_str(), fmt_s, name.data(), value.data()) != 0)
27254640cde1SColin Riley                 {
2726b0be30f7SAidan Dodds                     if (name[0] != '\0')
2727b0be30f7SAidan Dodds                         m_pragmas[std::string(name.data())] = value.data();
27285ec532a9SColin Riley                 }
27295ec532a9SColin Riley             }
27305ec532a9SColin Riley         }
2731b0be30f7SAidan Dodds         else
27325ec532a9SColin Riley         {
2733b0be30f7SAidan Dodds             Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
2734b0be30f7SAidan Dodds             if (log)
2735b0be30f7SAidan Dodds             {
2736b0be30f7SAidan Dodds                 log->Printf("%s - skipping .rs.info field '%s'", __FUNCTION__, line->c_str());
2737b0be30f7SAidan Dodds             }
2738b0be30f7SAidan Dodds         }
27395ec532a9SColin Riley     }
27405ec532a9SColin Riley 
2741b0be30f7SAidan Dodds     // 'root' kernel should always be present
27425ec532a9SColin Riley     return m_kernels.size() > 0;
27435ec532a9SColin Riley }
27445ec532a9SColin Riley 
27455ec532a9SColin Riley void
27464640cde1SColin Riley RenderScriptRuntime::Status(Stream &strm) const
27474640cde1SColin Riley {
27484640cde1SColin Riley     if (m_libRS)
27494640cde1SColin Riley     {
27504640cde1SColin Riley         strm.Printf("Runtime Library discovered.");
27514640cde1SColin Riley         strm.EOL();
27524640cde1SColin Riley     }
27534640cde1SColin Riley     if (m_libRSDriver)
27544640cde1SColin Riley     {
27554640cde1SColin Riley         strm.Printf("Runtime Driver discovered.");
27564640cde1SColin Riley         strm.EOL();
27574640cde1SColin Riley     }
27584640cde1SColin Riley     if (m_libRSCpuRef)
27594640cde1SColin Riley     {
27604640cde1SColin Riley         strm.Printf("CPU Reference Implementation discovered.");
27614640cde1SColin Riley         strm.EOL();
27624640cde1SColin Riley     }
27634640cde1SColin Riley 
27644640cde1SColin Riley     if (m_runtimeHooks.size())
27654640cde1SColin Riley     {
27664640cde1SColin Riley         strm.Printf("Runtime functions hooked:");
27674640cde1SColin Riley         strm.EOL();
27684640cde1SColin Riley         for (auto b : m_runtimeHooks)
27694640cde1SColin Riley         {
27704640cde1SColin Riley             strm.Indent(b.second->defn->name);
27714640cde1SColin Riley             strm.EOL();
27724640cde1SColin Riley         }
27734640cde1SColin Riley     }
27744640cde1SColin Riley     else
27754640cde1SColin Riley     {
27764640cde1SColin Riley         strm.Printf("Runtime is not hooked.");
27774640cde1SColin Riley         strm.EOL();
27784640cde1SColin Riley     }
27794640cde1SColin Riley }
27804640cde1SColin Riley 
27814640cde1SColin Riley void
27824640cde1SColin Riley RenderScriptRuntime::DumpContexts(Stream &strm) const
27834640cde1SColin Riley {
27844640cde1SColin Riley     strm.Printf("Inferred RenderScript Contexts:");
27854640cde1SColin Riley     strm.EOL();
27864640cde1SColin Riley     strm.IndentMore();
27874640cde1SColin Riley 
27884640cde1SColin Riley     std::map<addr_t, uint64_t> contextReferences;
27894640cde1SColin Riley 
279078f339d1SEwan Crawford     // Iterate over all of the currently discovered scripts.
279178f339d1SEwan Crawford     // Note: We cant push or pop from m_scripts inside this loop or it may invalidate script.
27924640cde1SColin Riley     for (const auto &script : m_scripts)
27934640cde1SColin Riley     {
279478f339d1SEwan Crawford         if (!script->context.isValid())
279578f339d1SEwan Crawford             continue;
279678f339d1SEwan Crawford         lldb::addr_t context = *script->context;
279778f339d1SEwan Crawford 
279878f339d1SEwan Crawford         if (contextReferences.find(context) != contextReferences.end())
27994640cde1SColin Riley         {
280078f339d1SEwan Crawford             contextReferences[context]++;
28014640cde1SColin Riley         }
28024640cde1SColin Riley         else
28034640cde1SColin Riley         {
280478f339d1SEwan Crawford             contextReferences[context] = 1;
28054640cde1SColin Riley         }
28064640cde1SColin Riley     }
28074640cde1SColin Riley 
28084640cde1SColin Riley     for (const auto &cRef : contextReferences)
28094640cde1SColin Riley     {
28104640cde1SColin Riley         strm.Printf("Context 0x%" PRIx64 ": %" PRIu64 " script instances", cRef.first, cRef.second);
28114640cde1SColin Riley         strm.EOL();
28124640cde1SColin Riley     }
28134640cde1SColin Riley     strm.IndentLess();
28144640cde1SColin Riley }
28154640cde1SColin Riley 
28164640cde1SColin Riley void
28174640cde1SColin Riley RenderScriptRuntime::DumpKernels(Stream &strm) const
28184640cde1SColin Riley {
28194640cde1SColin Riley     strm.Printf("RenderScript Kernels:");
28204640cde1SColin Riley     strm.EOL();
28214640cde1SColin Riley     strm.IndentMore();
28224640cde1SColin Riley     for (const auto &module : m_rsmodules)
28234640cde1SColin Riley     {
28244640cde1SColin Riley         strm.Printf("Resource '%s':", module->m_resname.c_str());
28254640cde1SColin Riley         strm.EOL();
28264640cde1SColin Riley         for (const auto &kernel : module->m_kernels)
28274640cde1SColin Riley         {
28284640cde1SColin Riley             strm.Indent(kernel.m_name.AsCString());
28294640cde1SColin Riley             strm.EOL();
28304640cde1SColin Riley         }
28314640cde1SColin Riley     }
28324640cde1SColin Riley     strm.IndentLess();
28334640cde1SColin Riley }
28344640cde1SColin Riley 
2835a0f08674SEwan Crawford RenderScriptRuntime::AllocationDetails *
2836a0f08674SEwan Crawford RenderScriptRuntime::FindAllocByID(Stream &strm, const uint32_t alloc_id)
2837a0f08674SEwan Crawford {
2838a0f08674SEwan Crawford     AllocationDetails *alloc = nullptr;
2839a0f08674SEwan Crawford 
2840a0f08674SEwan Crawford     // See if we can find allocation using id as an index;
2841b3f7f69dSAidan Dodds     if (alloc_id <= m_allocations.size() && alloc_id != 0 && m_allocations[alloc_id - 1]->id == alloc_id)
2842a0f08674SEwan Crawford     {
2843a0f08674SEwan Crawford         alloc = m_allocations[alloc_id - 1].get();
2844a0f08674SEwan Crawford         return alloc;
2845a0f08674SEwan Crawford     }
2846a0f08674SEwan Crawford 
2847a0f08674SEwan Crawford     // Fallback to searching
2848a0f08674SEwan Crawford     for (const auto &a : m_allocations)
2849a0f08674SEwan Crawford     {
2850a0f08674SEwan Crawford         if (a->id == alloc_id)
2851a0f08674SEwan Crawford         {
2852a0f08674SEwan Crawford             alloc = a.get();
2853a0f08674SEwan Crawford             break;
2854a0f08674SEwan Crawford         }
2855a0f08674SEwan Crawford     }
2856a0f08674SEwan Crawford 
2857a0f08674SEwan Crawford     if (alloc == nullptr)
2858a0f08674SEwan Crawford     {
2859b3f7f69dSAidan Dodds         strm.Printf("Error: Couldn't find allocation with id matching %" PRIu32, alloc_id);
2860a0f08674SEwan Crawford         strm.EOL();
2861a0f08674SEwan Crawford     }
2862a0f08674SEwan Crawford 
2863a0f08674SEwan Crawford     return alloc;
2864a0f08674SEwan Crawford }
2865a0f08674SEwan Crawford 
2866a0f08674SEwan Crawford // Prints the contents of an allocation to the output stream, which may be a file
2867a0f08674SEwan Crawford bool
2868a0f08674SEwan Crawford RenderScriptRuntime::DumpAllocation(Stream &strm, StackFrame *frame_ptr, const uint32_t id)
2869a0f08674SEwan Crawford {
2870a0f08674SEwan Crawford     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_LANGUAGE));
2871a0f08674SEwan Crawford 
2872a0f08674SEwan Crawford     // Check we can find the desired allocation
2873a0f08674SEwan Crawford     AllocationDetails *alloc = FindAllocByID(strm, id);
2874a0f08674SEwan Crawford     if (!alloc)
2875a0f08674SEwan Crawford         return false; // FindAllocByID() will print error message for us here
2876a0f08674SEwan Crawford 
2877a0f08674SEwan Crawford     if (log)
2878b3f7f69dSAidan Dodds         log->Printf("%s - found allocation 0x%" PRIx64, __FUNCTION__, *alloc->address.get());
2879a0f08674SEwan Crawford 
2880a0f08674SEwan Crawford     // Check we have information about the allocation, if not calculate it
28818b59062aSEwan Crawford     if (alloc->shouldRefresh())
2882a0f08674SEwan Crawford     {
2883a0f08674SEwan Crawford         if (log)
2884b3f7f69dSAidan Dodds             log->Printf("%s - allocation details not calculated yet, jitting info.", __FUNCTION__);
2885a0f08674SEwan Crawford 
2886a0f08674SEwan Crawford         // JIT all the allocation information
2887a0f08674SEwan Crawford         if (!RefreshAllocation(alloc, frame_ptr))
2888a0f08674SEwan Crawford         {
2889a0f08674SEwan Crawford             strm.Printf("Error: Couldn't JIT allocation details");
2890a0f08674SEwan Crawford             strm.EOL();
2891a0f08674SEwan Crawford             return false;
2892a0f08674SEwan Crawford         }
2893a0f08674SEwan Crawford     }
2894a0f08674SEwan Crawford 
2895a0f08674SEwan Crawford     // Establish format and size of each data element
2896b3f7f69dSAidan Dodds     const uint32_t vec_size = *alloc->element.type_vec_size.get();
28978b244e21SEwan Crawford     const Element::DataType type = *alloc->element.type.get();
2898a0f08674SEwan Crawford 
2899b3f7f69dSAidan Dodds     assert(type >= Element::RS_TYPE_NONE && type <= Element::RS_TYPE_FONT && "Invalid allocation type");
2900a0f08674SEwan Crawford 
29012e920715SEwan Crawford     lldb::Format format;
29022e920715SEwan Crawford     if (type >= Element::RS_TYPE_ELEMENT)
29032e920715SEwan Crawford         format = eFormatHex;
29042e920715SEwan Crawford     else
29052e920715SEwan Crawford         format = vec_size == 1 ? static_cast<lldb::Format>(AllocationDetails::RSTypeToFormat[type][eFormatSingle])
2906a0f08674SEwan Crawford                                : static_cast<lldb::Format>(AllocationDetails::RSTypeToFormat[type][eFormatVector]);
2907a0f08674SEwan Crawford 
2908b3f7f69dSAidan Dodds     const uint32_t data_size = *alloc->element.datum_size.get();
2909a0f08674SEwan Crawford 
2910a0f08674SEwan Crawford     if (log)
2911b3f7f69dSAidan Dodds         log->Printf("%s - element size %" PRIu32 " bytes, including padding", __FUNCTION__, data_size);
2912a0f08674SEwan Crawford 
291355232f09SEwan Crawford     // Allocate a buffer to copy data into
291455232f09SEwan Crawford     std::shared_ptr<uint8_t> buffer = GetAllocationData(alloc, frame_ptr);
291555232f09SEwan Crawford     if (!buffer)
291655232f09SEwan Crawford     {
29172e920715SEwan Crawford         strm.Printf("Error: Couldn't read allocation data");
291855232f09SEwan Crawford         strm.EOL();
291955232f09SEwan Crawford         return false;
292055232f09SEwan Crawford     }
292155232f09SEwan Crawford 
2922a0f08674SEwan Crawford     // Calculate stride between rows as there may be padding at end of rows since
2923a0f08674SEwan Crawford     // allocated memory is 16-byte aligned
2924a0f08674SEwan Crawford     if (!alloc->stride.isValid())
2925a0f08674SEwan Crawford     {
2926a0f08674SEwan Crawford         if (alloc->dimension.get()->dim_2 == 0) // We only have one dimension
2927a0f08674SEwan Crawford             alloc->stride = 0;
2928a0f08674SEwan Crawford         else if (!JITAllocationStride(alloc, frame_ptr))
2929a0f08674SEwan Crawford         {
2930a0f08674SEwan Crawford             strm.Printf("Error: Couldn't calculate allocation row stride");
2931a0f08674SEwan Crawford             strm.EOL();
2932a0f08674SEwan Crawford             return false;
2933a0f08674SEwan Crawford         }
2934a0f08674SEwan Crawford     }
2935b3f7f69dSAidan Dodds     const uint32_t stride = *alloc->stride.get();
2936b3f7f69dSAidan Dodds     const uint32_t size = *alloc->size.get(); // Size of whole allocation
2937b3f7f69dSAidan Dodds     const uint32_t padding = alloc->element.padding.isValid() ? *alloc->element.padding.get() : 0;
2938a0f08674SEwan Crawford     if (log)
2939b3f7f69dSAidan Dodds         log->Printf("%s - stride %" PRIu32 " bytes, size %" PRIu32 " bytes, padding %" PRIu32,
2940b3f7f69dSAidan Dodds                     __FUNCTION__, stride, size, padding);
2941a0f08674SEwan Crawford 
2942a0f08674SEwan Crawford     // Find dimensions used to index loops, so need to be non-zero
2943b3f7f69dSAidan Dodds     uint32_t dim_x = alloc->dimension.get()->dim_1;
2944a0f08674SEwan Crawford     dim_x = dim_x == 0 ? 1 : dim_x;
2945a0f08674SEwan Crawford 
2946b3f7f69dSAidan Dodds     uint32_t dim_y = alloc->dimension.get()->dim_2;
2947a0f08674SEwan Crawford     dim_y = dim_y == 0 ? 1 : dim_y;
2948a0f08674SEwan Crawford 
2949b3f7f69dSAidan Dodds     uint32_t dim_z = alloc->dimension.get()->dim_3;
2950a0f08674SEwan Crawford     dim_z = dim_z == 0 ? 1 : dim_z;
2951a0f08674SEwan Crawford 
295255232f09SEwan Crawford     // Use data extractor to format output
295355232f09SEwan Crawford     const uint32_t archByteSize = GetProcess()->GetTarget().GetArchitecture().GetAddressByteSize();
295455232f09SEwan Crawford     DataExtractor alloc_data(buffer.get(), size, GetProcess()->GetByteOrder(), archByteSize);
295555232f09SEwan Crawford 
2956b3f7f69dSAidan Dodds     uint32_t offset = 0;   // Offset in buffer to next element to be printed
2957b3f7f69dSAidan Dodds     uint32_t prev_row = 0; // Offset to the start of the previous row
2958a0f08674SEwan Crawford 
2959a0f08674SEwan Crawford     // Iterate over allocation dimensions, printing results to user
2960a0f08674SEwan Crawford     strm.Printf("Data (X, Y, Z):");
2961b3f7f69dSAidan Dodds     for (uint32_t z = 0; z < dim_z; ++z)
2962a0f08674SEwan Crawford     {
2963b3f7f69dSAidan Dodds         for (uint32_t y = 0; y < dim_y; ++y)
2964a0f08674SEwan Crawford         {
2965a0f08674SEwan Crawford             // Use stride to index start of next row.
2966a0f08674SEwan Crawford             if (!(y == 0 && z == 0))
2967a0f08674SEwan Crawford                 offset = prev_row + stride;
2968a0f08674SEwan Crawford             prev_row = offset;
2969a0f08674SEwan Crawford 
2970a0f08674SEwan Crawford             // Print each element in the row individually
2971b3f7f69dSAidan Dodds             for (uint32_t x = 0; x < dim_x; ++x)
2972a0f08674SEwan Crawford             {
2973b3f7f69dSAidan Dodds                 strm.Printf("\n(%" PRIu32 ", %" PRIu32 ", %" PRIu32 ") = ", x, y, z);
29748b244e21SEwan Crawford                 if ((type == Element::RS_TYPE_NONE) && (alloc->element.children.size() > 0) &&
2975fe06b5adSAdrian McCarthy                     (alloc->element.type_name != Element::GetFallbackStructName()))
29768b244e21SEwan Crawford                 {
29778b244e21SEwan Crawford                     // Here we are dumping an Element of struct type.
29788b244e21SEwan Crawford                     // This is done using expression evaluation with the name of the struct type and pointer to element.
29798b244e21SEwan Crawford 
29808b244e21SEwan Crawford                     // Don't print the name of the resulting expression, since this will be '$[0-9]+'
29818b244e21SEwan Crawford                     DumpValueObjectOptions expr_options;
29828b244e21SEwan Crawford                     expr_options.SetHideName(true);
29838b244e21SEwan Crawford 
29848b244e21SEwan Crawford                     // Setup expression as derefrencing a pointer cast to element address.
2985ea0636b5SEwan Crawford                     char expr_char_buffer[jit_max_expr_size];
2986ea0636b5SEwan Crawford                     int chars_written = snprintf(expr_char_buffer, jit_max_expr_size, "*(%s*) 0x%" PRIx64,
29878b244e21SEwan Crawford                                                  alloc->element.type_name.AsCString(), *alloc->data_ptr.get() + offset);
29888b244e21SEwan Crawford 
2989ea0636b5SEwan Crawford                     if (chars_written < 0 || chars_written >= jit_max_expr_size)
29908b244e21SEwan Crawford                     {
29918b244e21SEwan Crawford                         if (log)
2992b3f7f69dSAidan Dodds                             log->Printf("%s - error in snprintf().", __FUNCTION__);
29938b244e21SEwan Crawford                         continue;
29948b244e21SEwan Crawford                     }
29958b244e21SEwan Crawford 
29968b244e21SEwan Crawford                     // Evaluate expression
29978b244e21SEwan Crawford                     ValueObjectSP expr_result;
29988b244e21SEwan Crawford                     GetProcess()->GetTarget().EvaluateExpression(expr_char_buffer, frame_ptr, expr_result);
29998b244e21SEwan Crawford 
30008b244e21SEwan Crawford                     // Print the results to our stream.
30018b244e21SEwan Crawford                     expr_result->Dump(strm, expr_options);
30028b244e21SEwan Crawford                 }
30038b244e21SEwan Crawford                 else
30048b244e21SEwan Crawford                 {
30058b244e21SEwan Crawford                     alloc_data.Dump(&strm, offset, format, data_size - padding, 1, 1, LLDB_INVALID_ADDRESS, 0, 0);
30068b244e21SEwan Crawford                 }
30078b244e21SEwan Crawford                 offset += data_size;
3008a0f08674SEwan Crawford             }
3009a0f08674SEwan Crawford         }
3010a0f08674SEwan Crawford     }
3011a0f08674SEwan Crawford     strm.EOL();
3012a0f08674SEwan Crawford 
3013a0f08674SEwan Crawford     return true;
3014a0f08674SEwan Crawford }
3015a0f08674SEwan Crawford 
30160d2bfcfbSEwan Crawford // Function recalculates all our cached information about allocations by jitting the
30170d2bfcfbSEwan Crawford // RS runtime regarding each allocation we know about.
30180d2bfcfbSEwan Crawford // Returns true if all allocations could be recomputed, false otherwise.
30190d2bfcfbSEwan Crawford bool
30200d2bfcfbSEwan Crawford RenderScriptRuntime::RecomputeAllAllocations(Stream &strm, StackFrame *frame_ptr)
30210d2bfcfbSEwan Crawford {
30220d2bfcfbSEwan Crawford     bool success = true;
30230d2bfcfbSEwan Crawford     for (auto &alloc : m_allocations)
30240d2bfcfbSEwan Crawford     {
30250d2bfcfbSEwan Crawford         // JIT current allocation information
30260d2bfcfbSEwan Crawford         if (!RefreshAllocation(alloc.get(), frame_ptr))
30270d2bfcfbSEwan Crawford         {
30280d2bfcfbSEwan Crawford             strm.Printf("Error: Couldn't evaluate details for allocation %" PRIu32 "\n", alloc->id);
30290d2bfcfbSEwan Crawford             success = false;
30300d2bfcfbSEwan Crawford         }
30310d2bfcfbSEwan Crawford     }
30320d2bfcfbSEwan Crawford 
30330d2bfcfbSEwan Crawford     if (success)
30340d2bfcfbSEwan Crawford         strm.Printf("All allocations successfully recomputed");
30350d2bfcfbSEwan Crawford     strm.EOL();
30360d2bfcfbSEwan Crawford 
30370d2bfcfbSEwan Crawford     return success;
30380d2bfcfbSEwan Crawford }
30390d2bfcfbSEwan Crawford 
3040b649b005SEwan Crawford // Prints information regarding currently loaded allocations.
304115f2bd95SEwan Crawford // These details are gathered by jitting the runtime, which has as latency.
3042b649b005SEwan Crawford // Index parameter specifies a single allocation ID to print, or a zero value to print them all
304315f2bd95SEwan Crawford void
3044b649b005SEwan Crawford RenderScriptRuntime::ListAllocations(Stream &strm, StackFrame *frame_ptr, const uint32_t index)
304515f2bd95SEwan Crawford {
304615f2bd95SEwan Crawford     strm.Printf("RenderScript Allocations:");
304715f2bd95SEwan Crawford     strm.EOL();
304815f2bd95SEwan Crawford     strm.IndentMore();
304915f2bd95SEwan Crawford 
305015f2bd95SEwan Crawford     for (auto &alloc : m_allocations)
305115f2bd95SEwan Crawford     {
3052b649b005SEwan Crawford         // index will only be zero if we want to print all allocations
3053b649b005SEwan Crawford         if (index != 0 && index != alloc->id)
3054b649b005SEwan Crawford             continue;
305515f2bd95SEwan Crawford 
305615f2bd95SEwan Crawford         // JIT current allocation information
3057b649b005SEwan Crawford         if (alloc->shouldRefresh() && !RefreshAllocation(alloc.get(), frame_ptr))
305815f2bd95SEwan Crawford         {
3059b3f7f69dSAidan Dodds             strm.Printf("Error: Couldn't evaluate details for allocation %" PRIu32, alloc->id);
3060b3f7f69dSAidan Dodds             strm.EOL();
306115f2bd95SEwan Crawford             continue;
306215f2bd95SEwan Crawford         }
306315f2bd95SEwan Crawford 
3064b3f7f69dSAidan Dodds         strm.Printf("%" PRIu32 ":", alloc->id);
3065b3f7f69dSAidan Dodds         strm.EOL();
306615f2bd95SEwan Crawford         strm.IndentMore();
306715f2bd95SEwan Crawford 
306815f2bd95SEwan Crawford         strm.Indent("Context: ");
306915f2bd95SEwan Crawford         if (!alloc->context.isValid())
307015f2bd95SEwan Crawford             strm.Printf("unknown\n");
307115f2bd95SEwan Crawford         else
307215f2bd95SEwan Crawford             strm.Printf("0x%" PRIx64 "\n", *alloc->context.get());
307315f2bd95SEwan Crawford 
307415f2bd95SEwan Crawford         strm.Indent("Address: ");
307515f2bd95SEwan Crawford         if (!alloc->address.isValid())
307615f2bd95SEwan Crawford             strm.Printf("unknown\n");
307715f2bd95SEwan Crawford         else
307815f2bd95SEwan Crawford             strm.Printf("0x%" PRIx64 "\n", *alloc->address.get());
307915f2bd95SEwan Crawford 
308015f2bd95SEwan Crawford         strm.Indent("Data pointer: ");
308115f2bd95SEwan Crawford         if (!alloc->data_ptr.isValid())
308215f2bd95SEwan Crawford             strm.Printf("unknown\n");
308315f2bd95SEwan Crawford         else
308415f2bd95SEwan Crawford             strm.Printf("0x%" PRIx64 "\n", *alloc->data_ptr.get());
308515f2bd95SEwan Crawford 
308615f2bd95SEwan Crawford         strm.Indent("Dimensions: ");
308715f2bd95SEwan Crawford         if (!alloc->dimension.isValid())
308815f2bd95SEwan Crawford             strm.Printf("unknown\n");
308915f2bd95SEwan Crawford         else
3090b3f7f69dSAidan Dodds             strm.Printf("(%" PRId32 ", %" PRId32 ", %" PRId32 ")\n",
3091b3f7f69dSAidan Dodds                         alloc->dimension.get()->dim_1, alloc->dimension.get()->dim_2, alloc->dimension.get()->dim_3);
309215f2bd95SEwan Crawford 
309315f2bd95SEwan Crawford         strm.Indent("Data Type: ");
30948b244e21SEwan Crawford         if (!alloc->element.type.isValid() || !alloc->element.type_vec_size.isValid())
309515f2bd95SEwan Crawford             strm.Printf("unknown\n");
309615f2bd95SEwan Crawford         else
309715f2bd95SEwan Crawford         {
30988b244e21SEwan Crawford             const int vector_size = *alloc->element.type_vec_size.get();
30992e920715SEwan Crawford             Element::DataType type = *alloc->element.type.get();
310015f2bd95SEwan Crawford 
31018b244e21SEwan Crawford             if (!alloc->element.type_name.IsEmpty())
31028b244e21SEwan Crawford                 strm.Printf("%s\n", alloc->element.type_name.AsCString());
31032e920715SEwan Crawford             else
31042e920715SEwan Crawford             {
31052e920715SEwan Crawford                 // Enum value isn't monotonous, so doesn't always index RsDataTypeToString array
31062e920715SEwan Crawford                 if (type >= Element::RS_TYPE_ELEMENT && type <= Element::RS_TYPE_FONT)
3107b3f7f69dSAidan Dodds                     type = static_cast<Element::DataType>((type - Element::RS_TYPE_ELEMENT) +
3108b3f7f69dSAidan Dodds                                                           Element::RS_TYPE_MATRIX_2X2 + 1);
31092e920715SEwan Crawford 
3110b3f7f69dSAidan Dodds                 if (type >= (sizeof(AllocationDetails::RsDataTypeToString) /
3111b3f7f69dSAidan Dodds                              sizeof(AllocationDetails::RsDataTypeToString[0])) ||
3112b3f7f69dSAidan Dodds                     vector_size > 4 || vector_size < 1)
311315f2bd95SEwan Crawford                     strm.Printf("invalid type\n");
311415f2bd95SEwan Crawford                 else
3115b3f7f69dSAidan Dodds                     strm.Printf("%s\n", AllocationDetails::RsDataTypeToString[static_cast<uint32_t>(type)]
3116b3f7f69dSAidan Dodds                                                                              [vector_size - 1]);
311715f2bd95SEwan Crawford             }
31182e920715SEwan Crawford         }
311915f2bd95SEwan Crawford 
312015f2bd95SEwan Crawford         strm.Indent("Data Kind: ");
31218b244e21SEwan Crawford         if (!alloc->element.type_kind.isValid())
312215f2bd95SEwan Crawford             strm.Printf("unknown\n");
312315f2bd95SEwan Crawford         else
312415f2bd95SEwan Crawford         {
31258b244e21SEwan Crawford             const Element::DataKind kind = *alloc->element.type_kind.get();
31268b244e21SEwan Crawford             if (kind < Element::RS_KIND_USER || kind > Element::RS_KIND_PIXEL_YUV)
312715f2bd95SEwan Crawford                 strm.Printf("invalid kind\n");
312815f2bd95SEwan Crawford             else
3129b3f7f69dSAidan Dodds                 strm.Printf("%s\n", AllocationDetails::RsDataKindToString[static_cast<uint32_t>(kind)]);
313015f2bd95SEwan Crawford         }
313115f2bd95SEwan Crawford 
313215f2bd95SEwan Crawford         strm.EOL();
313315f2bd95SEwan Crawford         strm.IndentLess();
313415f2bd95SEwan Crawford     }
313515f2bd95SEwan Crawford     strm.IndentLess();
313615f2bd95SEwan Crawford }
313715f2bd95SEwan Crawford 
31387dc7771cSEwan Crawford // Set breakpoints on every kernel found in RS module
31397dc7771cSEwan Crawford void
31407dc7771cSEwan Crawford RenderScriptRuntime::BreakOnModuleKernels(const RSModuleDescriptorSP rsmodule_sp)
31417dc7771cSEwan Crawford {
31427dc7771cSEwan Crawford     for (const auto &kernel : rsmodule_sp->m_kernels)
31437dc7771cSEwan Crawford     {
31447dc7771cSEwan Crawford         // Don't set breakpoint on 'root' kernel
31457dc7771cSEwan Crawford         if (strcmp(kernel.m_name.AsCString(), "root") == 0)
31467dc7771cSEwan Crawford             continue;
31477dc7771cSEwan Crawford 
31487dc7771cSEwan Crawford         CreateKernelBreakpoint(kernel.m_name);
31497dc7771cSEwan Crawford     }
31507dc7771cSEwan Crawford }
31517dc7771cSEwan Crawford 
31527dc7771cSEwan Crawford // Method is internally called by the 'kernel breakpoint all' command to
31537dc7771cSEwan Crawford // enable or disable breaking on all kernels.
31547dc7771cSEwan Crawford //
31557dc7771cSEwan Crawford // When do_break is true we want to enable this functionality.
31567dc7771cSEwan Crawford // When do_break is false we want to disable it.
31577dc7771cSEwan Crawford void
31587dc7771cSEwan Crawford RenderScriptRuntime::SetBreakAllKernels(bool do_break, TargetSP target)
31597dc7771cSEwan Crawford {
316054782db7SEwan Crawford     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
31617dc7771cSEwan Crawford 
31627dc7771cSEwan Crawford     InitSearchFilter(target);
31637dc7771cSEwan Crawford 
31647dc7771cSEwan Crawford     // Set breakpoints on all the kernels
31657dc7771cSEwan Crawford     if (do_break && !m_breakAllKernels)
31667dc7771cSEwan Crawford     {
31677dc7771cSEwan Crawford         m_breakAllKernels = true;
31687dc7771cSEwan Crawford 
31697dc7771cSEwan Crawford         for (const auto &module : m_rsmodules)
31707dc7771cSEwan Crawford             BreakOnModuleKernels(module);
31717dc7771cSEwan Crawford 
31727dc7771cSEwan Crawford         if (log)
3173b3f7f69dSAidan Dodds             log->Printf("%s(True) - breakpoints set on all currently loaded kernels.", __FUNCTION__);
31747dc7771cSEwan Crawford     }
31757dc7771cSEwan Crawford     else if (!do_break && m_breakAllKernels) // Breakpoints won't be set on any new kernels.
31767dc7771cSEwan Crawford     {
31777dc7771cSEwan Crawford         m_breakAllKernels = false;
31787dc7771cSEwan Crawford 
31797dc7771cSEwan Crawford         if (log)
3180b3f7f69dSAidan Dodds             log->Printf("%s(False) - breakpoints no longer automatically set.", __FUNCTION__);
31817dc7771cSEwan Crawford     }
31827dc7771cSEwan Crawford }
31837dc7771cSEwan Crawford 
31847dc7771cSEwan Crawford // Given the name of a kernel this function creates a breakpoint using our
31857dc7771cSEwan Crawford // own breakpoint resolver, and returns the Breakpoint shared pointer.
31867dc7771cSEwan Crawford BreakpointSP
31877dc7771cSEwan Crawford RenderScriptRuntime::CreateKernelBreakpoint(const ConstString &name)
31887dc7771cSEwan Crawford {
318954782db7SEwan Crawford     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
31907dc7771cSEwan Crawford 
31917dc7771cSEwan Crawford     if (!m_filtersp)
31927dc7771cSEwan Crawford     {
31937dc7771cSEwan Crawford         if (log)
3194b3f7f69dSAidan Dodds             log->Printf("%s - error, no breakpoint search filter set.", __FUNCTION__);
31957dc7771cSEwan Crawford         return nullptr;
31967dc7771cSEwan Crawford     }
31977dc7771cSEwan Crawford 
31987dc7771cSEwan Crawford     BreakpointResolverSP resolver_sp(new RSBreakpointResolver(nullptr, name));
31997dc7771cSEwan Crawford     BreakpointSP bp = GetProcess()->GetTarget().CreateBreakpoint(m_filtersp, resolver_sp, false, false, false);
32007dc7771cSEwan Crawford 
320154782db7SEwan Crawford     // Give RS breakpoints a specific name, so the user can manipulate them as a group.
320254782db7SEwan Crawford     Error err;
320354782db7SEwan Crawford     if (!bp->AddName("RenderScriptKernel", err) && log)
3204b3f7f69dSAidan Dodds         log->Printf("%s - error setting break name, '%s'.", __FUNCTION__, err.AsCString());
320554782db7SEwan Crawford 
32067dc7771cSEwan Crawford     return bp;
32077dc7771cSEwan Crawford }
32087dc7771cSEwan Crawford 
3209018f5a7eSEwan Crawford // Given an expression for a variable this function tries to calculate the variable's value.
3210018f5a7eSEwan Crawford // If this is possible it returns true and sets the uint64_t parameter to the variables unsigned value.
3211018f5a7eSEwan Crawford // Otherwise function returns false.
3212018f5a7eSEwan Crawford bool
3213018f5a7eSEwan Crawford RenderScriptRuntime::GetFrameVarAsUnsigned(const StackFrameSP frame_sp, const char *var_name, uint64_t &val)
3214018f5a7eSEwan Crawford {
3215018f5a7eSEwan Crawford     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE));
3216018f5a7eSEwan Crawford     Error error;
3217018f5a7eSEwan Crawford     VariableSP var_sp;
3218018f5a7eSEwan Crawford 
3219018f5a7eSEwan Crawford     // Find variable in stack frame
3220b3f7f69dSAidan Dodds     ValueObjectSP value_sp(frame_sp->GetValueForVariableExpressionPath(
3221b3f7f69dSAidan Dodds         var_name, eNoDynamicValues,
3222b3f7f69dSAidan Dodds         StackFrame::eExpressionPathOptionCheckPtrVsMember | StackFrame::eExpressionPathOptionsAllowDirectIVarAccess,
3223b3f7f69dSAidan Dodds         var_sp, error));
3224018f5a7eSEwan Crawford     if (!error.Success())
3225018f5a7eSEwan Crawford     {
3226018f5a7eSEwan Crawford         if (log)
3227b3f7f69dSAidan Dodds             log->Printf("%s - error, couldn't find '%s' in frame", __FUNCTION__, var_name);
3228018f5a7eSEwan Crawford         return false;
3229018f5a7eSEwan Crawford     }
3230018f5a7eSEwan Crawford 
3231b3f7f69dSAidan Dodds     // Find the uint32_t value for the variable
3232018f5a7eSEwan Crawford     bool success = false;
3233018f5a7eSEwan Crawford     val = value_sp->GetValueAsUnsigned(0, &success);
3234018f5a7eSEwan Crawford     if (!success)
3235018f5a7eSEwan Crawford     {
3236018f5a7eSEwan Crawford         if (log)
3237b3f7f69dSAidan Dodds             log->Printf("%s - error, couldn't parse '%s' as an uint32_t.", __FUNCTION__, var_name);
3238018f5a7eSEwan Crawford         return false;
3239018f5a7eSEwan Crawford     }
3240018f5a7eSEwan Crawford 
3241018f5a7eSEwan Crawford     return true;
3242018f5a7eSEwan Crawford }
3243018f5a7eSEwan Crawford 
32444f8817c2SEwan Crawford // Function attempts to find the current coordinate of a kernel invocation by investigating the
32454f8817c2SEwan Crawford // values of frame variables in the .expand function. These coordinates are returned via the coord
32464f8817c2SEwan Crawford // array reference parameter. Returns true if the coordinates could be found, and false otherwise.
32474f8817c2SEwan Crawford bool
32484f8817c2SEwan Crawford RenderScriptRuntime::GetKernelCoordinate(RSCoordinate &coord, Thread *thread_ptr)
32494f8817c2SEwan Crawford {
32504f8817c2SEwan Crawford     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE));
32514f8817c2SEwan Crawford 
32524f8817c2SEwan Crawford     if (!thread_ptr)
32534f8817c2SEwan Crawford     {
32544f8817c2SEwan Crawford         if (log)
32554f8817c2SEwan Crawford             log->Printf("%s - Error, No thread pointer", __FUNCTION__);
32564f8817c2SEwan Crawford 
32574f8817c2SEwan Crawford         return false;
32584f8817c2SEwan Crawford     }
32594f8817c2SEwan Crawford 
32604f8817c2SEwan Crawford     // Walk the call stack looking for a function whose name has the suffix '.expand'
32614f8817c2SEwan Crawford     // and contains the variables we're looking for.
32624f8817c2SEwan Crawford     for (uint32_t i = 0; i < thread_ptr->GetStackFrameCount(); ++i)
32634f8817c2SEwan Crawford     {
32644f8817c2SEwan Crawford         if (!thread_ptr->SetSelectedFrameByIndex(i))
32654f8817c2SEwan Crawford             continue;
32664f8817c2SEwan Crawford 
32674f8817c2SEwan Crawford         StackFrameSP frame_sp = thread_ptr->GetSelectedFrame();
32684f8817c2SEwan Crawford         if (!frame_sp)
32694f8817c2SEwan Crawford             continue;
32704f8817c2SEwan Crawford 
32714f8817c2SEwan Crawford         // Find the function name
32724f8817c2SEwan Crawford         const SymbolContext sym_ctx = frame_sp->GetSymbolContext(false);
32734f8817c2SEwan Crawford         const char *func_name_cstr = sym_ctx.GetFunctionName().AsCString();
32744f8817c2SEwan Crawford         if (!func_name_cstr)
32754f8817c2SEwan Crawford             continue;
32764f8817c2SEwan Crawford 
32774f8817c2SEwan Crawford         if (log)
32784f8817c2SEwan Crawford             log->Printf("%s - Inspecting function '%s'", __FUNCTION__, func_name_cstr);
32794f8817c2SEwan Crawford 
32804f8817c2SEwan Crawford         // Check if function name has .expand suffix
32814f8817c2SEwan Crawford         std::string func_name(func_name_cstr);
32824f8817c2SEwan Crawford         const int length_difference = func_name.length() - RenderScriptRuntime::s_runtimeExpandSuffix.length();
32834f8817c2SEwan Crawford         if (length_difference <= 0)
32844f8817c2SEwan Crawford             continue;
32854f8817c2SEwan Crawford 
32864f8817c2SEwan Crawford         const int32_t has_expand_suffix = func_name.compare(length_difference,
32874f8817c2SEwan Crawford                                                             RenderScriptRuntime::s_runtimeExpandSuffix.length(),
32884f8817c2SEwan Crawford                                                             RenderScriptRuntime::s_runtimeExpandSuffix);
32894f8817c2SEwan Crawford 
32904f8817c2SEwan Crawford         if (has_expand_suffix != 0)
32914f8817c2SEwan Crawford             continue;
32924f8817c2SEwan Crawford 
32934f8817c2SEwan Crawford         if (log)
32944f8817c2SEwan Crawford             log->Printf("%s - Found .expand function '%s'", __FUNCTION__, func_name_cstr);
32954f8817c2SEwan Crawford 
32964f8817c2SEwan Crawford         // Get values for variables in .expand frame that tell us the current kernel invocation
32974f8817c2SEwan Crawford         bool found_coord_variables = true;
32984f8817c2SEwan Crawford         assert(RenderScriptRuntime::s_runtimeCoordVars.size() == coord.size());
32994f8817c2SEwan Crawford 
33004f8817c2SEwan Crawford         for (uint32_t i = 0; i < coord.size(); ++i)
33014f8817c2SEwan Crawford         {
33024f8817c2SEwan Crawford             uint64_t value = 0;
33034f8817c2SEwan Crawford             if (!GetFrameVarAsUnsigned(frame_sp, RenderScriptRuntime::s_runtimeCoordVars[i], value))
33044f8817c2SEwan Crawford             {
33054f8817c2SEwan Crawford                 found_coord_variables = false;
33064f8817c2SEwan Crawford                 break;
33074f8817c2SEwan Crawford             }
33084f8817c2SEwan Crawford             coord[i] = value;
33094f8817c2SEwan Crawford         }
33104f8817c2SEwan Crawford 
33114f8817c2SEwan Crawford         if (found_coord_variables)
33124f8817c2SEwan Crawford             return true;
33134f8817c2SEwan Crawford     }
33144f8817c2SEwan Crawford     return false;
33154f8817c2SEwan Crawford }
33164f8817c2SEwan Crawford 
3317018f5a7eSEwan Crawford // Callback when a kernel breakpoint hits and we're looking for a specific coordinate.
3318018f5a7eSEwan Crawford // Baton parameter contains a pointer to the target coordinate we want to break on.
3319018f5a7eSEwan Crawford // Function then checks the .expand frame for the current coordinate and breaks to user if it matches.
3320018f5a7eSEwan Crawford // Parameter 'break_id' is the id of the Breakpoint which made the callback.
3321018f5a7eSEwan Crawford // Parameter 'break_loc_id' is the id for the BreakpointLocation which was hit,
3322018f5a7eSEwan Crawford // a single logical breakpoint can have multiple addresses.
3323018f5a7eSEwan Crawford bool
3324b3f7f69dSAidan Dodds RenderScriptRuntime::KernelBreakpointHit(void *baton, StoppointCallbackContext *ctx, user_id_t break_id,
3325b3f7f69dSAidan Dodds                                          user_id_t break_loc_id)
3326018f5a7eSEwan Crawford {
3327018f5a7eSEwan Crawford     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_LANGUAGE | LIBLLDB_LOG_BREAKPOINTS));
3328018f5a7eSEwan Crawford 
3329018f5a7eSEwan Crawford     assert(baton && "Error: null baton in conditional kernel breakpoint callback");
3330018f5a7eSEwan Crawford 
3331018f5a7eSEwan Crawford     // Coordinate we want to stop on
33324f8817c2SEwan Crawford     const uint32_t *target_coord = static_cast<const uint32_t *>(baton);
3333018f5a7eSEwan Crawford 
3334018f5a7eSEwan Crawford     if (log)
33354f8817c2SEwan Crawford         log->Printf("%s - Break ID %" PRIu64 ", (%" PRIu32 ", %" PRIu32 ", %" PRIu32 ")", __FUNCTION__, break_id,
33364f8817c2SEwan Crawford                     target_coord[0], target_coord[1], target_coord[2]);
3337018f5a7eSEwan Crawford 
33384f8817c2SEwan Crawford     // Select current thread
3339018f5a7eSEwan Crawford     ExecutionContext context(ctx->exe_ctx_ref);
33404f8817c2SEwan Crawford     Thread *thread_ptr = context.GetThreadPtr();
33414f8817c2SEwan Crawford     assert(thread_ptr && "Null thread pointer");
33424f8817c2SEwan Crawford 
33434f8817c2SEwan Crawford     // Find current kernel invocation from .expand frame variables
33444f8817c2SEwan Crawford     RSCoordinate current_coord{}; // Zero initialise array
33454f8817c2SEwan Crawford     if (!GetKernelCoordinate(current_coord, thread_ptr))
3346018f5a7eSEwan Crawford     {
3347018f5a7eSEwan Crawford         if (log)
33484f8817c2SEwan Crawford             log->Printf("%s - Error, couldn't select .expand stack frame", __FUNCTION__);
3349018f5a7eSEwan Crawford         return false;
3350018f5a7eSEwan Crawford     }
3351018f5a7eSEwan Crawford 
3352018f5a7eSEwan Crawford     if (log)
33534f8817c2SEwan Crawford         log->Printf("%s - (%" PRIu32 ",%" PRIu32 ",%" PRIu32 ")", __FUNCTION__, current_coord[0], current_coord[1],
33544f8817c2SEwan Crawford                     current_coord[2]);
3355018f5a7eSEwan Crawford 
3356018f5a7eSEwan Crawford     // Check if the current kernel invocation coordinate matches our target coordinate
3357b3f7f69dSAidan Dodds     if (current_coord[0] == target_coord[0] &&
3358b3f7f69dSAidan Dodds         current_coord[1] == target_coord[1] &&
33594f8817c2SEwan Crawford         current_coord[2] == target_coord[2])
3360018f5a7eSEwan Crawford     {
3361018f5a7eSEwan Crawford         if (log)
33624f8817c2SEwan Crawford             log->Printf("%s, BREAKING (%" PRIu32 ",%" PRIu32 ",%" PRIu32 ")", __FUNCTION__, current_coord[0],
33634f8817c2SEwan Crawford                         current_coord[1], current_coord[2]);
3364018f5a7eSEwan Crawford 
3365018f5a7eSEwan Crawford         BreakpointSP breakpoint_sp = context.GetTargetPtr()->GetBreakpointByID(break_id);
3366018f5a7eSEwan Crawford         assert(breakpoint_sp != nullptr && "Error: Couldn't find breakpoint matching break id for callback");
3367018f5a7eSEwan Crawford         breakpoint_sp->SetEnabled(false); // Optimise since conditional breakpoint should only be hit once.
3368018f5a7eSEwan Crawford         return true;
3369018f5a7eSEwan Crawford     }
3370018f5a7eSEwan Crawford 
3371018f5a7eSEwan Crawford     // No match on coordinate
3372018f5a7eSEwan Crawford     return false;
3373018f5a7eSEwan Crawford }
3374018f5a7eSEwan Crawford 
3375018f5a7eSEwan Crawford // Tries to set a breakpoint on the start of a kernel, resolved using the kernel name.
3376018f5a7eSEwan Crawford // Argument 'coords', represents a three dimensional coordinate which can be used to specify
3377018f5a7eSEwan Crawford // a single kernel instance to break on. If this is set then we add a callback to the breakpoint.
33784640cde1SColin Riley void
3379018f5a7eSEwan Crawford RenderScriptRuntime::PlaceBreakpointOnKernel(Stream &strm, const char *name, const std::array<int, 3> coords,
3380018f5a7eSEwan Crawford                                              Error &error, TargetSP target)
33814640cde1SColin Riley {
33824640cde1SColin Riley     if (!name)
33834640cde1SColin Riley     {
33844640cde1SColin Riley         error.SetErrorString("invalid kernel name");
33854640cde1SColin Riley         return;
33864640cde1SColin Riley     }
33874640cde1SColin Riley 
33887dc7771cSEwan Crawford     InitSearchFilter(target);
338998156583SEwan Crawford 
33904640cde1SColin Riley     ConstString kernel_name(name);
33917dc7771cSEwan Crawford     BreakpointSP bp = CreateKernelBreakpoint(kernel_name);
3392018f5a7eSEwan Crawford 
3393018f5a7eSEwan Crawford     // We have a conditional breakpoint on a specific coordinate
3394018f5a7eSEwan Crawford     if (coords[0] != -1)
3395018f5a7eSEwan Crawford     {
3396b3f7f69dSAidan Dodds         strm.Printf("Conditional kernel breakpoint on coordinate %" PRId32 ", %" PRId32 ", %" PRId32,
3397b3f7f69dSAidan Dodds                     coords[0], coords[1], coords[2]);
3398018f5a7eSEwan Crawford         strm.EOL();
3399018f5a7eSEwan Crawford 
3400018f5a7eSEwan Crawford         // Allocate memory for the baton, and copy over coordinate
34014f8817c2SEwan Crawford         uint32_t *baton = new uint32_t[coords.size()];
3402018f5a7eSEwan Crawford         baton[0] = coords[0]; baton[1] = coords[1]; baton[2] = coords[2];
3403018f5a7eSEwan Crawford 
3404018f5a7eSEwan Crawford         // Create a callback that will be invoked everytime the breakpoint is hit.
3405018f5a7eSEwan Crawford         // The baton object passed to the handler is the target coordinate we want to break on.
3406018f5a7eSEwan Crawford         bp->SetCallback(KernelBreakpointHit, baton, true);
3407018f5a7eSEwan Crawford 
3408018f5a7eSEwan Crawford         // Store a shared pointer to the baton, so the memory will eventually be cleaned up after destruction
34094f8817c2SEwan Crawford         m_conditional_breaks[bp->GetID()] = std::shared_ptr<uint32_t>(baton);
3410018f5a7eSEwan Crawford     }
3411018f5a7eSEwan Crawford 
341298156583SEwan Crawford     if (bp)
341398156583SEwan Crawford         bp->GetDescription(&strm, lldb::eDescriptionLevelInitial, false);
34144640cde1SColin Riley }
34154640cde1SColin Riley 
34164640cde1SColin Riley void
34175ec532a9SColin Riley RenderScriptRuntime::DumpModules(Stream &strm) const
34185ec532a9SColin Riley {
34195ec532a9SColin Riley     strm.Printf("RenderScript Modules:");
34205ec532a9SColin Riley     strm.EOL();
34215ec532a9SColin Riley     strm.IndentMore();
34225ec532a9SColin Riley     for (const auto &module : m_rsmodules)
34235ec532a9SColin Riley     {
34244640cde1SColin Riley         module->Dump(strm);
34255ec532a9SColin Riley     }
34265ec532a9SColin Riley     strm.IndentLess();
34275ec532a9SColin Riley }
34285ec532a9SColin Riley 
342978f339d1SEwan Crawford RenderScriptRuntime::ScriptDetails *
343078f339d1SEwan Crawford RenderScriptRuntime::LookUpScript(addr_t address, bool create)
343178f339d1SEwan Crawford {
343278f339d1SEwan Crawford     for (const auto &s : m_scripts)
343378f339d1SEwan Crawford     {
343478f339d1SEwan Crawford         if (s->script.isValid())
343578f339d1SEwan Crawford             if (*s->script == address)
343678f339d1SEwan Crawford                 return s.get();
343778f339d1SEwan Crawford     }
343878f339d1SEwan Crawford     if (create)
343978f339d1SEwan Crawford     {
344078f339d1SEwan Crawford         std::unique_ptr<ScriptDetails> s(new ScriptDetails);
344178f339d1SEwan Crawford         s->script = address;
344278f339d1SEwan Crawford         m_scripts.push_back(std::move(s));
3443d10ca9deSEwan Crawford         return m_scripts.back().get();
344478f339d1SEwan Crawford     }
344578f339d1SEwan Crawford     return nullptr;
344678f339d1SEwan Crawford }
344778f339d1SEwan Crawford 
344878f339d1SEwan Crawford RenderScriptRuntime::AllocationDetails *
344978f339d1SEwan Crawford RenderScriptRuntime::LookUpAllocation(addr_t address, bool create)
345078f339d1SEwan Crawford {
345178f339d1SEwan Crawford     for (const auto &a : m_allocations)
345278f339d1SEwan Crawford     {
345378f339d1SEwan Crawford         if (a->address.isValid())
345478f339d1SEwan Crawford             if (*a->address == address)
345578f339d1SEwan Crawford                 return a.get();
345678f339d1SEwan Crawford     }
345778f339d1SEwan Crawford     if (create)
345878f339d1SEwan Crawford     {
345978f339d1SEwan Crawford         std::unique_ptr<AllocationDetails> a(new AllocationDetails);
346078f339d1SEwan Crawford         a->address = address;
346178f339d1SEwan Crawford         m_allocations.push_back(std::move(a));
3462d10ca9deSEwan Crawford         return m_allocations.back().get();
346378f339d1SEwan Crawford     }
346478f339d1SEwan Crawford     return nullptr;
346578f339d1SEwan Crawford }
346678f339d1SEwan Crawford 
34675ec532a9SColin Riley void
34685ec532a9SColin Riley RSModuleDescriptor::Dump(Stream &strm) const
34695ec532a9SColin Riley {
34705ec532a9SColin Riley     strm.Indent();
34715ec532a9SColin Riley     m_module->GetFileSpec().Dump(&strm);
34724640cde1SColin Riley     if (m_module->GetNumCompileUnits())
34734640cde1SColin Riley     {
34744640cde1SColin Riley         strm.Indent("Debug info loaded.");
34754640cde1SColin Riley     }
34764640cde1SColin Riley     else
34774640cde1SColin Riley     {
34784640cde1SColin Riley         strm.Indent("Debug info does not exist.");
34794640cde1SColin Riley     }
34805ec532a9SColin Riley     strm.EOL();
34815ec532a9SColin Riley     strm.IndentMore();
34825ec532a9SColin Riley     strm.Indent();
3483189598edSColin Riley     strm.Printf("Globals: %" PRIu64, static_cast<uint64_t>(m_globals.size()));
34845ec532a9SColin Riley     strm.EOL();
34855ec532a9SColin Riley     strm.IndentMore();
34865ec532a9SColin Riley     for (const auto &global : m_globals)
34875ec532a9SColin Riley     {
34885ec532a9SColin Riley         global.Dump(strm);
34895ec532a9SColin Riley     }
34905ec532a9SColin Riley     strm.IndentLess();
34915ec532a9SColin Riley     strm.Indent();
3492189598edSColin Riley     strm.Printf("Kernels: %" PRIu64, static_cast<uint64_t>(m_kernels.size()));
34935ec532a9SColin Riley     strm.EOL();
34945ec532a9SColin Riley     strm.IndentMore();
34955ec532a9SColin Riley     for (const auto &kernel : m_kernels)
34965ec532a9SColin Riley     {
34975ec532a9SColin Riley         kernel.Dump(strm);
34985ec532a9SColin Riley     }
34994640cde1SColin Riley     strm.Printf("Pragmas: %" PRIu64, static_cast<uint64_t>(m_pragmas.size()));
35004640cde1SColin Riley     strm.EOL();
35014640cde1SColin Riley     strm.IndentMore();
35024640cde1SColin Riley     for (const auto &key_val : m_pragmas)
35034640cde1SColin Riley     {
35044640cde1SColin Riley         strm.Printf("%s: %s", key_val.first.c_str(), key_val.second.c_str());
35054640cde1SColin Riley         strm.EOL();
35064640cde1SColin Riley     }
35075ec532a9SColin Riley     strm.IndentLess(4);
35085ec532a9SColin Riley }
35095ec532a9SColin Riley 
35105ec532a9SColin Riley void
35115ec532a9SColin Riley RSGlobalDescriptor::Dump(Stream &strm) const
35125ec532a9SColin Riley {
35135ec532a9SColin Riley     strm.Indent(m_name.AsCString());
35144640cde1SColin Riley     VariableList var_list;
35154640cde1SColin Riley     m_module->m_module->FindGlobalVariables(m_name, nullptr, true, 1U, var_list);
35164640cde1SColin Riley     if (var_list.GetSize() == 1)
35174640cde1SColin Riley     {
35184640cde1SColin Riley         auto var = var_list.GetVariableAtIndex(0);
35194640cde1SColin Riley         auto type = var->GetType();
35204640cde1SColin Riley         if (type)
35214640cde1SColin Riley         {
35224640cde1SColin Riley             strm.Printf(" - ");
35234640cde1SColin Riley             type->DumpTypeName(&strm);
35244640cde1SColin Riley         }
35254640cde1SColin Riley         else
35264640cde1SColin Riley         {
35274640cde1SColin Riley             strm.Printf(" - Unknown Type");
35284640cde1SColin Riley         }
35294640cde1SColin Riley     }
35304640cde1SColin Riley     else
35314640cde1SColin Riley     {
35324640cde1SColin Riley         strm.Printf(" - variable identified, but not found in binary");
35334640cde1SColin Riley         const Symbol *s = m_module->m_module->FindFirstSymbolWithNameAndType(m_name, eSymbolTypeData);
35344640cde1SColin Riley         if (s)
35354640cde1SColin Riley         {
35364640cde1SColin Riley             strm.Printf(" (symbol exists) ");
35374640cde1SColin Riley         }
35384640cde1SColin Riley     }
35394640cde1SColin Riley 
35405ec532a9SColin Riley     strm.EOL();
35415ec532a9SColin Riley }
35425ec532a9SColin Riley 
35435ec532a9SColin Riley void
35445ec532a9SColin Riley RSKernelDescriptor::Dump(Stream &strm) const
35455ec532a9SColin Riley {
35465ec532a9SColin Riley     strm.Indent(m_name.AsCString());
35475ec532a9SColin Riley     strm.EOL();
35485ec532a9SColin Riley }
35495ec532a9SColin Riley 
35505ec532a9SColin Riley class CommandObjectRenderScriptRuntimeModuleDump : public CommandObjectParsed
35515ec532a9SColin Riley {
35525ec532a9SColin Riley public:
35535ec532a9SColin Riley     CommandObjectRenderScriptRuntimeModuleDump(CommandInterpreter &interpreter)
35545ec532a9SColin Riley         : CommandObjectParsed(interpreter, "renderscript module dump",
35555ec532a9SColin Riley                               "Dumps renderscript specific information for all modules.", "renderscript module dump",
3556e87764f2SEnrico Granata                               eCommandRequiresProcess | eCommandProcessMustBeLaunched)
35575ec532a9SColin Riley     {
35585ec532a9SColin Riley     }
35595ec532a9SColin Riley 
3560222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeModuleDump() override = default;
35615ec532a9SColin Riley 
35625ec532a9SColin Riley     bool
3563222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
35645ec532a9SColin Riley     {
35655ec532a9SColin Riley         RenderScriptRuntime *runtime =
35665ec532a9SColin Riley             (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
35675ec532a9SColin Riley         runtime->DumpModules(result.GetOutputStream());
35685ec532a9SColin Riley         result.SetStatus(eReturnStatusSuccessFinishResult);
35695ec532a9SColin Riley         return true;
35705ec532a9SColin Riley     }
35715ec532a9SColin Riley };
35725ec532a9SColin Riley 
35735ec532a9SColin Riley class CommandObjectRenderScriptRuntimeModule : public CommandObjectMultiword
35745ec532a9SColin Riley {
35755ec532a9SColin Riley public:
35765ec532a9SColin Riley     CommandObjectRenderScriptRuntimeModule(CommandInterpreter &interpreter)
35775ec532a9SColin Riley         : CommandObjectMultiword(interpreter, "renderscript module", "Commands that deal with renderscript modules.",
3578b3f7f69dSAidan Dodds                                  nullptr)
35795ec532a9SColin Riley     {
35805ec532a9SColin Riley         LoadSubCommand("dump", CommandObjectSP(new CommandObjectRenderScriptRuntimeModuleDump(interpreter)));
35815ec532a9SColin Riley     }
35825ec532a9SColin Riley 
3583222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeModule() override = default;
35845ec532a9SColin Riley };
35855ec532a9SColin Riley 
35864640cde1SColin Riley class CommandObjectRenderScriptRuntimeKernelList : public CommandObjectParsed
35874640cde1SColin Riley {
35884640cde1SColin Riley public:
35894640cde1SColin Riley     CommandObjectRenderScriptRuntimeKernelList(CommandInterpreter &interpreter)
35904640cde1SColin Riley         : CommandObjectParsed(interpreter, "renderscript kernel list",
3591b3f7f69dSAidan Dodds                               "Lists renderscript kernel names and associated script resources.",
3592b3f7f69dSAidan Dodds                               "renderscript kernel list", eCommandRequiresProcess | eCommandProcessMustBeLaunched)
35934640cde1SColin Riley     {
35944640cde1SColin Riley     }
35954640cde1SColin Riley 
3596222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeKernelList() override = default;
35974640cde1SColin Riley 
35984640cde1SColin Riley     bool
3599222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
36004640cde1SColin Riley     {
36014640cde1SColin Riley         RenderScriptRuntime *runtime =
36024640cde1SColin Riley             (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
36034640cde1SColin Riley         runtime->DumpKernels(result.GetOutputStream());
36044640cde1SColin Riley         result.SetStatus(eReturnStatusSuccessFinishResult);
36054640cde1SColin Riley         return true;
36064640cde1SColin Riley     }
36074640cde1SColin Riley };
36084640cde1SColin Riley 
36097dc7771cSEwan Crawford class CommandObjectRenderScriptRuntimeKernelBreakpointSet : public CommandObjectParsed
36104640cde1SColin Riley {
36114640cde1SColin Riley public:
36127dc7771cSEwan Crawford     CommandObjectRenderScriptRuntimeKernelBreakpointSet(CommandInterpreter &interpreter)
36137dc7771cSEwan Crawford         : CommandObjectParsed(interpreter, "renderscript kernel breakpoint set",
3614b3f7f69dSAidan Dodds                               "Sets a breakpoint on a renderscript kernel.",
3615b3f7f69dSAidan Dodds                               "renderscript kernel breakpoint set <kernel_name> [-c x,y,z]",
3616b3f7f69dSAidan Dodds                               eCommandRequiresProcess | eCommandProcessMustBeLaunched | eCommandProcessMustBePaused),
3617b3f7f69dSAidan Dodds           m_options(interpreter)
36184640cde1SColin Riley     {
36194640cde1SColin Riley     }
36204640cde1SColin Riley 
3621222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeKernelBreakpointSet() override = default;
3622222b937cSEugene Zelenko 
3623222b937cSEugene Zelenko     Options *
3624222b937cSEugene Zelenko     GetOptions() override
3625018f5a7eSEwan Crawford     {
3626018f5a7eSEwan Crawford         return &m_options;
3627018f5a7eSEwan Crawford     }
3628018f5a7eSEwan Crawford 
3629018f5a7eSEwan Crawford     class CommandOptions : public Options
3630018f5a7eSEwan Crawford     {
3631018f5a7eSEwan Crawford     public:
3632b3f7f69dSAidan Dodds         CommandOptions(CommandInterpreter &interpreter) : Options(interpreter) {}
3633018f5a7eSEwan Crawford 
3634222b937cSEugene Zelenko         ~CommandOptions() override = default;
3635018f5a7eSEwan Crawford 
3636222b937cSEugene Zelenko         Error
3637222b937cSEugene Zelenko         SetOptionValue(uint32_t option_idx, const char *option_arg) override
3638018f5a7eSEwan Crawford         {
3639018f5a7eSEwan Crawford             Error error;
3640018f5a7eSEwan Crawford             const int short_option = m_getopt_table[option_idx].val;
3641018f5a7eSEwan Crawford 
3642018f5a7eSEwan Crawford             switch (short_option)
3643018f5a7eSEwan Crawford             {
3644018f5a7eSEwan Crawford                 case 'c':
3645018f5a7eSEwan Crawford                     if (!ParseCoordinate(option_arg))
3646b3f7f69dSAidan Dodds                         error.SetErrorStringWithFormat("Couldn't parse coordinate '%s', should be in format 'x,y,z'.",
3647b3f7f69dSAidan Dodds                                                        option_arg);
3648018f5a7eSEwan Crawford                     break;
3649018f5a7eSEwan Crawford                 default:
3650018f5a7eSEwan Crawford                     error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
3651018f5a7eSEwan Crawford                     break;
3652018f5a7eSEwan Crawford             }
3653018f5a7eSEwan Crawford             return error;
3654018f5a7eSEwan Crawford         }
3655018f5a7eSEwan Crawford 
3656018f5a7eSEwan Crawford         // -c takes an argument of the form 'num[,num][,num]'.
3657018f5a7eSEwan Crawford         // Where 'id_cstr' is this argument with the whitespace trimmed.
3658018f5a7eSEwan Crawford         // Missing coordinates are defaulted to zero.
3659018f5a7eSEwan Crawford         bool
3660018f5a7eSEwan Crawford         ParseCoordinate(const char *id_cstr)
3661018f5a7eSEwan Crawford         {
3662018f5a7eSEwan Crawford             RegularExpression regex;
3663018f5a7eSEwan Crawford             RegularExpression::Match regex_match(3);
3664018f5a7eSEwan Crawford 
3665018f5a7eSEwan Crawford             bool matched = false;
3666018f5a7eSEwan Crawford             if (regex.Compile("^([0-9]+),([0-9]+),([0-9]+)$") && regex.Execute(id_cstr, &regex_match))
3667018f5a7eSEwan Crawford                 matched = true;
3668018f5a7eSEwan Crawford             else if (regex.Compile("^([0-9]+),([0-9]+)$") && regex.Execute(id_cstr, &regex_match))
3669018f5a7eSEwan Crawford                 matched = true;
3670018f5a7eSEwan Crawford             else if (regex.Compile("^([0-9]+)$") && regex.Execute(id_cstr, &regex_match))
3671018f5a7eSEwan Crawford                 matched = true;
3672018f5a7eSEwan Crawford             for (uint32_t i = 0; i < 3; i++)
3673018f5a7eSEwan Crawford             {
3674018f5a7eSEwan Crawford                 std::string group;
3675018f5a7eSEwan Crawford                 if (regex_match.GetMatchAtIndex(id_cstr, i + 1, group))
3676b3f7f69dSAidan Dodds                     m_coord[i] = (uint32_t)strtoul(group.c_str(), nullptr, 0);
3677018f5a7eSEwan Crawford                 else
3678018f5a7eSEwan Crawford                     m_coord[i] = 0;
3679018f5a7eSEwan Crawford             }
3680018f5a7eSEwan Crawford             return matched;
3681018f5a7eSEwan Crawford         }
3682018f5a7eSEwan Crawford 
3683018f5a7eSEwan Crawford         void
3684222b937cSEugene Zelenko         OptionParsingStarting() override
3685018f5a7eSEwan Crawford         {
3686018f5a7eSEwan Crawford             // -1 means the -c option hasn't been set
3687018f5a7eSEwan Crawford             m_coord[0] = -1;
3688018f5a7eSEwan Crawford             m_coord[1] = -1;
3689018f5a7eSEwan Crawford             m_coord[2] = -1;
3690018f5a7eSEwan Crawford         }
3691018f5a7eSEwan Crawford 
3692018f5a7eSEwan Crawford         const OptionDefinition *
3693222b937cSEugene Zelenko         GetDefinitions() override
3694018f5a7eSEwan Crawford         {
3695018f5a7eSEwan Crawford             return g_option_table;
3696018f5a7eSEwan Crawford         }
3697018f5a7eSEwan Crawford 
3698018f5a7eSEwan Crawford         static OptionDefinition g_option_table[];
3699018f5a7eSEwan Crawford         std::array<int, 3> m_coord;
3700018f5a7eSEwan Crawford     };
3701018f5a7eSEwan Crawford 
37024640cde1SColin Riley     bool
3703222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
37044640cde1SColin Riley     {
37054640cde1SColin Riley         const size_t argc = command.GetArgumentCount();
3706018f5a7eSEwan Crawford         if (argc < 1)
37074640cde1SColin Riley         {
3708b3f7f69dSAidan Dodds             result.AppendErrorWithFormat("'%s' takes 1 argument of kernel name, and an optional coordinate.",
3709b3f7f69dSAidan Dodds                                          m_cmd_name.c_str());
3710018f5a7eSEwan Crawford             result.SetStatus(eReturnStatusFailed);
3711018f5a7eSEwan Crawford             return false;
3712018f5a7eSEwan Crawford         }
3713018f5a7eSEwan Crawford 
37144640cde1SColin Riley         RenderScriptRuntime *runtime =
37154640cde1SColin Riley             (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
37164640cde1SColin Riley 
37174640cde1SColin Riley         Error error;
3718018f5a7eSEwan Crawford         runtime->PlaceBreakpointOnKernel(result.GetOutputStream(), command.GetArgumentAtIndex(0), m_options.m_coord,
371998156583SEwan Crawford                                          error, m_exe_ctx.GetTargetSP());
37204640cde1SColin Riley 
37214640cde1SColin Riley         if (error.Success())
37224640cde1SColin Riley         {
37234640cde1SColin Riley             result.AppendMessage("Breakpoint(s) created");
37244640cde1SColin Riley             result.SetStatus(eReturnStatusSuccessFinishResult);
37254640cde1SColin Riley             return true;
37264640cde1SColin Riley         }
37274640cde1SColin Riley         result.SetStatus(eReturnStatusFailed);
37284640cde1SColin Riley         result.AppendErrorWithFormat("Error: %s", error.AsCString());
37294640cde1SColin Riley         return false;
37304640cde1SColin Riley     }
37314640cde1SColin Riley 
3732018f5a7eSEwan Crawford private:
3733018f5a7eSEwan Crawford     CommandOptions m_options;
37344640cde1SColin Riley };
37354640cde1SColin Riley 
3736b3f7f69dSAidan Dodds OptionDefinition CommandObjectRenderScriptRuntimeKernelBreakpointSet::CommandOptions::g_option_table[] = {
3737b3f7f69dSAidan Dodds     {LLDB_OPT_SET_1, false, "coordinate", 'c', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeValue,
3738018f5a7eSEwan Crawford      "Set a breakpoint on a single invocation of the kernel with specified coordinate.\n"
3739018f5a7eSEwan Crawford      "Coordinate takes the form 'x[,y][,z] where x,y,z are positive integers representing kernel dimensions. "
3740018f5a7eSEwan Crawford      "Any unset dimensions will be defaulted to zero."},
3741b3f7f69dSAidan Dodds     {0, false, nullptr, 0, 0, nullptr, nullptr, 0, eArgTypeNone, nullptr}};
3742018f5a7eSEwan Crawford 
37437dc7771cSEwan Crawford class CommandObjectRenderScriptRuntimeKernelBreakpointAll : public CommandObjectParsed
37447dc7771cSEwan Crawford {
37457dc7771cSEwan Crawford public:
37467dc7771cSEwan Crawford     CommandObjectRenderScriptRuntimeKernelBreakpointAll(CommandInterpreter &interpreter)
3747b3f7f69dSAidan Dodds         : CommandObjectParsed(
3748b3f7f69dSAidan Dodds               interpreter, "renderscript kernel breakpoint all",
37497dc7771cSEwan Crawford               "Automatically sets a breakpoint on all renderscript kernels that are or will be loaded.\n"
37507dc7771cSEwan Crawford               "Disabling option means breakpoints will no longer be set on any kernels loaded in the future, "
37517dc7771cSEwan Crawford               "but does not remove currently set breakpoints.",
37527dc7771cSEwan Crawford               "renderscript kernel breakpoint all <enable/disable>",
37537dc7771cSEwan Crawford               eCommandRequiresProcess | eCommandProcessMustBeLaunched | eCommandProcessMustBePaused)
37547dc7771cSEwan Crawford     {
37557dc7771cSEwan Crawford     }
37567dc7771cSEwan Crawford 
3757222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeKernelBreakpointAll() override = default;
37587dc7771cSEwan Crawford 
37597dc7771cSEwan Crawford     bool
3760222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
37617dc7771cSEwan Crawford     {
37627dc7771cSEwan Crawford         const size_t argc = command.GetArgumentCount();
37637dc7771cSEwan Crawford         if (argc != 1)
37647dc7771cSEwan Crawford         {
37657dc7771cSEwan Crawford             result.AppendErrorWithFormat("'%s' takes 1 argument of 'enable' or 'disable'", m_cmd_name.c_str());
37667dc7771cSEwan Crawford             result.SetStatus(eReturnStatusFailed);
37677dc7771cSEwan Crawford             return false;
37687dc7771cSEwan Crawford         }
37697dc7771cSEwan Crawford 
3770b3f7f69dSAidan Dodds         RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
3771b3f7f69dSAidan Dodds             m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
37727dc7771cSEwan Crawford 
37737dc7771cSEwan Crawford         bool do_break = false;
37747dc7771cSEwan Crawford         const char *argument = command.GetArgumentAtIndex(0);
37757dc7771cSEwan Crawford         if (strcmp(argument, "enable") == 0)
37767dc7771cSEwan Crawford         {
37777dc7771cSEwan Crawford             do_break = true;
37787dc7771cSEwan Crawford             result.AppendMessage("Breakpoints will be set on all kernels.");
37797dc7771cSEwan Crawford         }
37807dc7771cSEwan Crawford         else if (strcmp(argument, "disable") == 0)
37817dc7771cSEwan Crawford         {
37827dc7771cSEwan Crawford             do_break = false;
37837dc7771cSEwan Crawford             result.AppendMessage("Breakpoints will not be set on any new kernels.");
37847dc7771cSEwan Crawford         }
37857dc7771cSEwan Crawford         else
37867dc7771cSEwan Crawford         {
37877dc7771cSEwan Crawford             result.AppendErrorWithFormat("Argument must be either 'enable' or 'disable'");
37887dc7771cSEwan Crawford             result.SetStatus(eReturnStatusFailed);
37897dc7771cSEwan Crawford             return false;
37907dc7771cSEwan Crawford         }
37917dc7771cSEwan Crawford 
37927dc7771cSEwan Crawford         runtime->SetBreakAllKernels(do_break, m_exe_ctx.GetTargetSP());
37937dc7771cSEwan Crawford 
37947dc7771cSEwan Crawford         result.SetStatus(eReturnStatusSuccessFinishResult);
37957dc7771cSEwan Crawford         return true;
37967dc7771cSEwan Crawford     }
37977dc7771cSEwan Crawford };
37987dc7771cSEwan Crawford 
37994f8817c2SEwan Crawford class CommandObjectRenderScriptRuntimeKernelCoordinate : public CommandObjectParsed
38004f8817c2SEwan Crawford {
38014f8817c2SEwan Crawford public:
38024f8817c2SEwan Crawford     CommandObjectRenderScriptRuntimeKernelCoordinate(CommandInterpreter &interpreter)
38034f8817c2SEwan Crawford         : CommandObjectParsed(interpreter, "renderscript kernel coordinate",
38044f8817c2SEwan Crawford                               "Shows the (x,y,z) coordinate of the current kernel invocation.",
38054f8817c2SEwan Crawford                               "renderscript kernel coordinate",
38064f8817c2SEwan Crawford                               eCommandRequiresProcess | eCommandProcessMustBeLaunched | eCommandProcessMustBePaused)
38074f8817c2SEwan Crawford     {
38084f8817c2SEwan Crawford     }
38094f8817c2SEwan Crawford 
38104f8817c2SEwan Crawford     ~CommandObjectRenderScriptRuntimeKernelCoordinate() override = default;
38114f8817c2SEwan Crawford 
38124f8817c2SEwan Crawford     bool
38134f8817c2SEwan Crawford     DoExecute(Args &command, CommandReturnObject &result) override
38144f8817c2SEwan Crawford     {
38154f8817c2SEwan Crawford         RSCoordinate coord{}; // Zero initialize array
38164f8817c2SEwan Crawford         bool success = RenderScriptRuntime::GetKernelCoordinate(coord, m_exe_ctx.GetThreadPtr());
38174f8817c2SEwan Crawford         Stream &stream = result.GetOutputStream();
38184f8817c2SEwan Crawford 
38194f8817c2SEwan Crawford         if (success)
38204f8817c2SEwan Crawford         {
38214f8817c2SEwan Crawford             stream.Printf("Coordinate: (%" PRIu32 ", %" PRIu32 ", %" PRIu32 ")", coord[0], coord[1], coord[2]);
38224f8817c2SEwan Crawford             stream.EOL();
38234f8817c2SEwan Crawford             result.SetStatus(eReturnStatusSuccessFinishResult);
38244f8817c2SEwan Crawford         }
38254f8817c2SEwan Crawford         else
38264f8817c2SEwan Crawford         {
38274f8817c2SEwan Crawford             stream.Printf("Error: Coordinate could not be found.");
38284f8817c2SEwan Crawford             stream.EOL();
38294f8817c2SEwan Crawford             result.SetStatus(eReturnStatusFailed);
38304f8817c2SEwan Crawford         }
38314f8817c2SEwan Crawford         return true;
38324f8817c2SEwan Crawford     }
38334f8817c2SEwan Crawford };
38344f8817c2SEwan Crawford 
38357dc7771cSEwan Crawford class CommandObjectRenderScriptRuntimeKernelBreakpoint : public CommandObjectMultiword
38367dc7771cSEwan Crawford {
38377dc7771cSEwan Crawford public:
38387dc7771cSEwan Crawford     CommandObjectRenderScriptRuntimeKernelBreakpoint(CommandInterpreter &interpreter)
3839b3f7f69dSAidan Dodds         : CommandObjectMultiword(interpreter, "renderscript kernel",
3840b3f7f69dSAidan Dodds                                  "Commands that generate breakpoints on renderscript kernels.", nullptr)
38417dc7771cSEwan Crawford     {
38427dc7771cSEwan Crawford         LoadSubCommand("set", CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelBreakpointSet(interpreter)));
38437dc7771cSEwan Crawford         LoadSubCommand("all", CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelBreakpointAll(interpreter)));
38447dc7771cSEwan Crawford     }
38457dc7771cSEwan Crawford 
3846222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeKernelBreakpoint() override = default;
38477dc7771cSEwan Crawford };
38487dc7771cSEwan Crawford 
38494640cde1SColin Riley class CommandObjectRenderScriptRuntimeKernel : public CommandObjectMultiword
38504640cde1SColin Riley {
38514640cde1SColin Riley public:
38524640cde1SColin Riley     CommandObjectRenderScriptRuntimeKernel(CommandInterpreter &interpreter)
38534640cde1SColin Riley         : CommandObjectMultiword(interpreter, "renderscript kernel", "Commands that deal with renderscript kernels.",
3854b3f7f69dSAidan Dodds                                  nullptr)
38554640cde1SColin Riley     {
38564640cde1SColin Riley         LoadSubCommand("list", CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelList(interpreter)));
385736175cc0SEwan Crawford         LoadSubCommand("coordinate",
385836175cc0SEwan Crawford                        CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelCoordinate(interpreter)));
3859b3f7f69dSAidan Dodds         LoadSubCommand("breakpoint",
3860b3f7f69dSAidan Dodds                        CommandObjectSP(new CommandObjectRenderScriptRuntimeKernelBreakpoint(interpreter)));
38614640cde1SColin Riley     }
38624640cde1SColin Riley 
3863222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeKernel() override = default;
38644640cde1SColin Riley };
38654640cde1SColin Riley 
38664640cde1SColin Riley class CommandObjectRenderScriptRuntimeContextDump : public CommandObjectParsed
38674640cde1SColin Riley {
38684640cde1SColin Riley public:
38694640cde1SColin Riley     CommandObjectRenderScriptRuntimeContextDump(CommandInterpreter &interpreter)
3870b3f7f69dSAidan Dodds         : CommandObjectParsed(interpreter, "renderscript context dump", "Dumps renderscript context information.",
3871b3f7f69dSAidan Dodds                               "renderscript context dump", eCommandRequiresProcess | eCommandProcessMustBeLaunched)
38724640cde1SColin Riley     {
38734640cde1SColin Riley     }
38744640cde1SColin Riley 
3875222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeContextDump() override = default;
38764640cde1SColin Riley 
38774640cde1SColin Riley     bool
3878222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
38794640cde1SColin Riley     {
38804640cde1SColin Riley         RenderScriptRuntime *runtime =
38814640cde1SColin Riley             (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
38824640cde1SColin Riley         runtime->DumpContexts(result.GetOutputStream());
38834640cde1SColin Riley         result.SetStatus(eReturnStatusSuccessFinishResult);
38844640cde1SColin Riley         return true;
38854640cde1SColin Riley     }
38864640cde1SColin Riley };
38874640cde1SColin Riley 
38884640cde1SColin Riley class CommandObjectRenderScriptRuntimeContext : public CommandObjectMultiword
38894640cde1SColin Riley {
38904640cde1SColin Riley public:
38914640cde1SColin Riley     CommandObjectRenderScriptRuntimeContext(CommandInterpreter &interpreter)
38924640cde1SColin Riley         : CommandObjectMultiword(interpreter, "renderscript context", "Commands that deal with renderscript contexts.",
3893b3f7f69dSAidan Dodds                                  nullptr)
38944640cde1SColin Riley     {
38954640cde1SColin Riley         LoadSubCommand("dump", CommandObjectSP(new CommandObjectRenderScriptRuntimeContextDump(interpreter)));
38964640cde1SColin Riley     }
38974640cde1SColin Riley 
3898222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeContext() override = default;
38994640cde1SColin Riley };
39004640cde1SColin Riley 
3901a0f08674SEwan Crawford class CommandObjectRenderScriptRuntimeAllocationDump : public CommandObjectParsed
3902a0f08674SEwan Crawford {
3903a0f08674SEwan Crawford public:
3904a0f08674SEwan Crawford     CommandObjectRenderScriptRuntimeAllocationDump(CommandInterpreter &interpreter)
3905a0f08674SEwan Crawford         : CommandObjectParsed(interpreter, "renderscript allocation dump",
3906a0f08674SEwan Crawford                               "Displays the contents of a particular allocation", "renderscript allocation dump <ID>",
3907b3f7f69dSAidan Dodds                               eCommandRequiresProcess | eCommandProcessMustBeLaunched),
3908b3f7f69dSAidan Dodds           m_options(interpreter)
3909a0f08674SEwan Crawford     {
3910a0f08674SEwan Crawford     }
3911a0f08674SEwan Crawford 
3912222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeAllocationDump() override = default;
3913222b937cSEugene Zelenko 
3914222b937cSEugene Zelenko     Options *
3915222b937cSEugene Zelenko     GetOptions() override
3916a0f08674SEwan Crawford     {
3917a0f08674SEwan Crawford         return &m_options;
3918a0f08674SEwan Crawford     }
3919a0f08674SEwan Crawford 
3920a0f08674SEwan Crawford     class CommandOptions : public Options
3921a0f08674SEwan Crawford     {
3922a0f08674SEwan Crawford     public:
3923b3f7f69dSAidan Dodds         CommandOptions(CommandInterpreter &interpreter) : Options(interpreter) {}
3924a0f08674SEwan Crawford 
3925222b937cSEugene Zelenko         ~CommandOptions() override = default;
3926a0f08674SEwan Crawford 
3927222b937cSEugene Zelenko         Error
3928222b937cSEugene Zelenko         SetOptionValue(uint32_t option_idx, const char *option_arg) override
3929a0f08674SEwan Crawford         {
3930a0f08674SEwan Crawford             Error error;
3931a0f08674SEwan Crawford             const int short_option = m_getopt_table[option_idx].val;
3932a0f08674SEwan Crawford 
3933a0f08674SEwan Crawford             switch (short_option)
3934a0f08674SEwan Crawford             {
3935a0f08674SEwan Crawford                 case 'f':
3936a0f08674SEwan Crawford                     m_outfile.SetFile(option_arg, true);
3937a0f08674SEwan Crawford                     if (m_outfile.Exists())
3938a0f08674SEwan Crawford                     {
3939a0f08674SEwan Crawford                         m_outfile.Clear();
3940a0f08674SEwan Crawford                         error.SetErrorStringWithFormat("file already exists: '%s'", option_arg);
3941a0f08674SEwan Crawford                     }
3942a0f08674SEwan Crawford                     break;
3943a0f08674SEwan Crawford                 default:
3944a0f08674SEwan Crawford                     error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
3945a0f08674SEwan Crawford                     break;
3946a0f08674SEwan Crawford             }
3947a0f08674SEwan Crawford             return error;
3948a0f08674SEwan Crawford         }
3949a0f08674SEwan Crawford 
3950a0f08674SEwan Crawford         void
3951222b937cSEugene Zelenko         OptionParsingStarting() override
3952a0f08674SEwan Crawford         {
3953a0f08674SEwan Crawford             m_outfile.Clear();
3954a0f08674SEwan Crawford         }
3955a0f08674SEwan Crawford 
3956a0f08674SEwan Crawford         const OptionDefinition *
3957222b937cSEugene Zelenko         GetDefinitions() override
3958a0f08674SEwan Crawford         {
3959a0f08674SEwan Crawford             return g_option_table;
3960a0f08674SEwan Crawford         }
3961a0f08674SEwan Crawford 
3962a0f08674SEwan Crawford         static OptionDefinition g_option_table[];
3963a0f08674SEwan Crawford         FileSpec m_outfile;
3964a0f08674SEwan Crawford     };
3965a0f08674SEwan Crawford 
3966a0f08674SEwan Crawford     bool
3967222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
3968a0f08674SEwan Crawford     {
3969a0f08674SEwan Crawford         const size_t argc = command.GetArgumentCount();
3970a0f08674SEwan Crawford         if (argc < 1)
3971a0f08674SEwan Crawford         {
3972a0f08674SEwan Crawford             result.AppendErrorWithFormat("'%s' takes 1 argument, an allocation ID. As well as an optional -f argument",
3973a0f08674SEwan Crawford                                          m_cmd_name.c_str());
3974a0f08674SEwan Crawford             result.SetStatus(eReturnStatusFailed);
3975a0f08674SEwan Crawford             return false;
3976a0f08674SEwan Crawford         }
3977a0f08674SEwan Crawford 
3978b3f7f69dSAidan Dodds         RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
3979b3f7f69dSAidan Dodds             m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
3980a0f08674SEwan Crawford 
3981a0f08674SEwan Crawford         const char *id_cstr = command.GetArgumentAtIndex(0);
3982a0f08674SEwan Crawford         bool convert_complete = false;
3983a0f08674SEwan Crawford         const uint32_t id = StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &convert_complete);
3984a0f08674SEwan Crawford         if (!convert_complete)
3985a0f08674SEwan Crawford         {
3986a0f08674SEwan Crawford             result.AppendErrorWithFormat("invalid allocation id argument '%s'", id_cstr);
3987a0f08674SEwan Crawford             result.SetStatus(eReturnStatusFailed);
3988a0f08674SEwan Crawford             return false;
3989a0f08674SEwan Crawford         }
3990a0f08674SEwan Crawford 
3991a0f08674SEwan Crawford         Stream *output_strm = nullptr;
3992a0f08674SEwan Crawford         StreamFile outfile_stream;
3993a0f08674SEwan Crawford         const FileSpec &outfile_spec = m_options.m_outfile; // Dump allocation to file instead
3994a0f08674SEwan Crawford         if (outfile_spec)
3995a0f08674SEwan Crawford         {
3996a0f08674SEwan Crawford             // Open output file
3997a0f08674SEwan Crawford             char path[256];
3998a0f08674SEwan Crawford             outfile_spec.GetPath(path, sizeof(path));
3999a0f08674SEwan Crawford             if (outfile_stream.GetFile().Open(path, File::eOpenOptionWrite | File::eOpenOptionCanCreate).Success())
4000a0f08674SEwan Crawford             {
4001a0f08674SEwan Crawford                 output_strm = &outfile_stream;
4002a0f08674SEwan Crawford                 result.GetOutputStream().Printf("Results written to '%s'", path);
4003a0f08674SEwan Crawford                 result.GetOutputStream().EOL();
4004a0f08674SEwan Crawford             }
4005a0f08674SEwan Crawford             else
4006a0f08674SEwan Crawford             {
4007a0f08674SEwan Crawford                 result.AppendErrorWithFormat("Couldn't open file '%s'", path);
4008a0f08674SEwan Crawford                 result.SetStatus(eReturnStatusFailed);
4009a0f08674SEwan Crawford                 return false;
4010a0f08674SEwan Crawford             }
4011a0f08674SEwan Crawford         }
4012a0f08674SEwan Crawford         else
4013a0f08674SEwan Crawford             output_strm = &result.GetOutputStream();
4014a0f08674SEwan Crawford 
4015a0f08674SEwan Crawford         assert(output_strm != nullptr);
4016a0f08674SEwan Crawford         bool success = runtime->DumpAllocation(*output_strm, m_exe_ctx.GetFramePtr(), id);
4017a0f08674SEwan Crawford 
4018a0f08674SEwan Crawford         if (success)
4019a0f08674SEwan Crawford             result.SetStatus(eReturnStatusSuccessFinishResult);
4020a0f08674SEwan Crawford         else
4021a0f08674SEwan Crawford             result.SetStatus(eReturnStatusFailed);
4022a0f08674SEwan Crawford 
4023a0f08674SEwan Crawford         return true;
4024a0f08674SEwan Crawford     }
4025a0f08674SEwan Crawford 
4026a0f08674SEwan Crawford private:
4027a0f08674SEwan Crawford     CommandOptions m_options;
4028a0f08674SEwan Crawford };
4029a0f08674SEwan Crawford 
4030b3f7f69dSAidan Dodds OptionDefinition CommandObjectRenderScriptRuntimeAllocationDump::CommandOptions::g_option_table[] = {
4031b3f7f69dSAidan Dodds     {LLDB_OPT_SET_1, false, "file", 'f', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeFilename,
4032a0f08674SEwan Crawford      "Print results to specified file instead of command line."},
4033b3f7f69dSAidan Dodds     {0, false, nullptr, 0, 0, nullptr, nullptr, 0, eArgTypeNone, nullptr}};
4034a0f08674SEwan Crawford 
403515f2bd95SEwan Crawford class CommandObjectRenderScriptRuntimeAllocationList : public CommandObjectParsed
403615f2bd95SEwan Crawford {
403715f2bd95SEwan Crawford public:
403815f2bd95SEwan Crawford     CommandObjectRenderScriptRuntimeAllocationList(CommandInterpreter &interpreter)
403915f2bd95SEwan Crawford         : CommandObjectParsed(interpreter, "renderscript allocation list",
404015f2bd95SEwan Crawford                               "List renderscript allocations and their information.", "renderscript allocation list",
4041b3f7f69dSAidan Dodds                               eCommandRequiresProcess | eCommandProcessMustBeLaunched),
4042b3f7f69dSAidan Dodds           m_options(interpreter)
404315f2bd95SEwan Crawford     {
404415f2bd95SEwan Crawford     }
404515f2bd95SEwan Crawford 
4046222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeAllocationList() override = default;
4047222b937cSEugene Zelenko 
4048222b937cSEugene Zelenko     Options *
4049222b937cSEugene Zelenko     GetOptions() override
405015f2bd95SEwan Crawford     {
405115f2bd95SEwan Crawford         return &m_options;
405215f2bd95SEwan Crawford     }
405315f2bd95SEwan Crawford 
405415f2bd95SEwan Crawford     class CommandOptions : public Options
405515f2bd95SEwan Crawford     {
405615f2bd95SEwan Crawford     public:
4057b649b005SEwan Crawford         CommandOptions(CommandInterpreter &interpreter) : Options(interpreter), m_id(0) {}
405815f2bd95SEwan Crawford 
4059222b937cSEugene Zelenko         ~CommandOptions() override = default;
406015f2bd95SEwan Crawford 
4061222b937cSEugene Zelenko         Error
4062222b937cSEugene Zelenko         SetOptionValue(uint32_t option_idx, const char *option_arg) override
406315f2bd95SEwan Crawford         {
406415f2bd95SEwan Crawford             Error error;
406515f2bd95SEwan Crawford             const int short_option = m_getopt_table[option_idx].val;
406615f2bd95SEwan Crawford 
406715f2bd95SEwan Crawford             switch (short_option)
406815f2bd95SEwan Crawford             {
4069b649b005SEwan Crawford                 case 'i':
4070b649b005SEwan Crawford                     bool success;
4071b649b005SEwan Crawford                     m_id = StringConvert::ToUInt32(option_arg, 0, 0, &success);
4072b649b005SEwan Crawford                     if (!success)
4073b649b005SEwan Crawford                         error.SetErrorStringWithFormat("invalid integer value for option '%c'", short_option);
407415f2bd95SEwan Crawford                     break;
407515f2bd95SEwan Crawford                 default:
407615f2bd95SEwan Crawford                     error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
407715f2bd95SEwan Crawford                     break;
407815f2bd95SEwan Crawford             }
407915f2bd95SEwan Crawford             return error;
408015f2bd95SEwan Crawford         }
408115f2bd95SEwan Crawford 
408215f2bd95SEwan Crawford         void
4083222b937cSEugene Zelenko         OptionParsingStarting() override
408415f2bd95SEwan Crawford         {
4085b649b005SEwan Crawford             m_id = 0;
408615f2bd95SEwan Crawford         }
408715f2bd95SEwan Crawford 
408815f2bd95SEwan Crawford         const OptionDefinition *
4089222b937cSEugene Zelenko         GetDefinitions() override
409015f2bd95SEwan Crawford         {
409115f2bd95SEwan Crawford             return g_option_table;
409215f2bd95SEwan Crawford         }
409315f2bd95SEwan Crawford 
409415f2bd95SEwan Crawford         static OptionDefinition g_option_table[];
4095b649b005SEwan Crawford         uint32_t m_id;
409615f2bd95SEwan Crawford     };
409715f2bd95SEwan Crawford 
409815f2bd95SEwan Crawford     bool
4099222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
410015f2bd95SEwan Crawford     {
4101b3f7f69dSAidan Dodds         RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
4102b3f7f69dSAidan Dodds             m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
4103b649b005SEwan Crawford         runtime->ListAllocations(result.GetOutputStream(), m_exe_ctx.GetFramePtr(), m_options.m_id);
410415f2bd95SEwan Crawford         result.SetStatus(eReturnStatusSuccessFinishResult);
410515f2bd95SEwan Crawford         return true;
410615f2bd95SEwan Crawford     }
410715f2bd95SEwan Crawford 
410815f2bd95SEwan Crawford private:
410915f2bd95SEwan Crawford     CommandOptions m_options;
411015f2bd95SEwan Crawford };
411115f2bd95SEwan Crawford 
4112b649b005SEwan Crawford OptionDefinition CommandObjectRenderScriptRuntimeAllocationList::CommandOptions::g_option_table[] = {
4113b3f7f69dSAidan Dodds     {LLDB_OPT_SET_1, false, "id", 'i', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeIndex,
4114b649b005SEwan Crawford      "Only show details of a single allocation with specified id."},
4115b3f7f69dSAidan Dodds     {0, false, nullptr, 0, 0, nullptr, nullptr, 0, eArgTypeNone, nullptr}};
411615f2bd95SEwan Crawford 
411755232f09SEwan Crawford class CommandObjectRenderScriptRuntimeAllocationLoad : public CommandObjectParsed
411855232f09SEwan Crawford {
411955232f09SEwan Crawford public:
412055232f09SEwan Crawford     CommandObjectRenderScriptRuntimeAllocationLoad(CommandInterpreter &interpreter)
4121b3f7f69dSAidan Dodds         : CommandObjectParsed(
4122b3f7f69dSAidan Dodds               interpreter, "renderscript allocation load", "Loads renderscript allocation contents from a file.",
4123b3f7f69dSAidan Dodds               "renderscript allocation load <ID> <filename>", eCommandRequiresProcess | eCommandProcessMustBeLaunched)
412455232f09SEwan Crawford     {
412555232f09SEwan Crawford     }
412655232f09SEwan Crawford 
4127222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeAllocationLoad() override = default;
412855232f09SEwan Crawford 
412955232f09SEwan Crawford     bool
4130222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
413155232f09SEwan Crawford     {
413255232f09SEwan Crawford         const size_t argc = command.GetArgumentCount();
413355232f09SEwan Crawford         if (argc != 2)
413455232f09SEwan Crawford         {
4135b3f7f69dSAidan Dodds             result.AppendErrorWithFormat("'%s' takes 2 arguments, an allocation ID and filename to read from.",
4136b3f7f69dSAidan Dodds                                          m_cmd_name.c_str());
413755232f09SEwan Crawford             result.SetStatus(eReturnStatusFailed);
413855232f09SEwan Crawford             return false;
413955232f09SEwan Crawford         }
414055232f09SEwan Crawford 
4141b3f7f69dSAidan Dodds         RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
4142b3f7f69dSAidan Dodds             m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
414355232f09SEwan Crawford 
414455232f09SEwan Crawford         const char *id_cstr = command.GetArgumentAtIndex(0);
414555232f09SEwan Crawford         bool convert_complete = false;
414655232f09SEwan Crawford         const uint32_t id = StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &convert_complete);
414755232f09SEwan Crawford         if (!convert_complete)
414855232f09SEwan Crawford         {
414955232f09SEwan Crawford             result.AppendErrorWithFormat("invalid allocation id argument '%s'", id_cstr);
415055232f09SEwan Crawford             result.SetStatus(eReturnStatusFailed);
415155232f09SEwan Crawford             return false;
415255232f09SEwan Crawford         }
415355232f09SEwan Crawford 
415455232f09SEwan Crawford         const char *filename = command.GetArgumentAtIndex(1);
415555232f09SEwan Crawford         bool success = runtime->LoadAllocation(result.GetOutputStream(), id, filename, m_exe_ctx.GetFramePtr());
415655232f09SEwan Crawford 
415755232f09SEwan Crawford         if (success)
415855232f09SEwan Crawford             result.SetStatus(eReturnStatusSuccessFinishResult);
415955232f09SEwan Crawford         else
416055232f09SEwan Crawford             result.SetStatus(eReturnStatusFailed);
416155232f09SEwan Crawford 
416255232f09SEwan Crawford         return true;
416355232f09SEwan Crawford     }
416455232f09SEwan Crawford };
416555232f09SEwan Crawford 
416655232f09SEwan Crawford class CommandObjectRenderScriptRuntimeAllocationSave : public CommandObjectParsed
416755232f09SEwan Crawford {
416855232f09SEwan Crawford public:
416955232f09SEwan Crawford     CommandObjectRenderScriptRuntimeAllocationSave(CommandInterpreter &interpreter)
4170b3f7f69dSAidan Dodds         : CommandObjectParsed(
4171b3f7f69dSAidan Dodds               interpreter, "renderscript allocation save", "Write renderscript allocation contents to a file.",
4172b3f7f69dSAidan Dodds               "renderscript allocation save <ID> <filename>", eCommandRequiresProcess | eCommandProcessMustBeLaunched)
417355232f09SEwan Crawford     {
417455232f09SEwan Crawford     }
417555232f09SEwan Crawford 
4176222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeAllocationSave() override = default;
417755232f09SEwan Crawford 
417855232f09SEwan Crawford     bool
4179222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
418055232f09SEwan Crawford     {
418155232f09SEwan Crawford         const size_t argc = command.GetArgumentCount();
418255232f09SEwan Crawford         if (argc != 2)
418355232f09SEwan Crawford         {
4184b3f7f69dSAidan Dodds             result.AppendErrorWithFormat("'%s' takes 2 arguments, an allocation ID and filename to read from.",
4185b3f7f69dSAidan Dodds                                          m_cmd_name.c_str());
418655232f09SEwan Crawford             result.SetStatus(eReturnStatusFailed);
418755232f09SEwan Crawford             return false;
418855232f09SEwan Crawford         }
418955232f09SEwan Crawford 
4190b3f7f69dSAidan Dodds         RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
4191b3f7f69dSAidan Dodds             m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
419255232f09SEwan Crawford 
419355232f09SEwan Crawford         const char *id_cstr = command.GetArgumentAtIndex(0);
419455232f09SEwan Crawford         bool convert_complete = false;
419555232f09SEwan Crawford         const uint32_t id = StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &convert_complete);
419655232f09SEwan Crawford         if (!convert_complete)
419755232f09SEwan Crawford         {
419855232f09SEwan Crawford             result.AppendErrorWithFormat("invalid allocation id argument '%s'", id_cstr);
419955232f09SEwan Crawford             result.SetStatus(eReturnStatusFailed);
420055232f09SEwan Crawford             return false;
420155232f09SEwan Crawford         }
420255232f09SEwan Crawford 
420355232f09SEwan Crawford         const char *filename = command.GetArgumentAtIndex(1);
420455232f09SEwan Crawford         bool success = runtime->SaveAllocation(result.GetOutputStream(), id, filename, m_exe_ctx.GetFramePtr());
420555232f09SEwan Crawford 
420655232f09SEwan Crawford         if (success)
420755232f09SEwan Crawford             result.SetStatus(eReturnStatusSuccessFinishResult);
420855232f09SEwan Crawford         else
420955232f09SEwan Crawford             result.SetStatus(eReturnStatusFailed);
421055232f09SEwan Crawford 
421155232f09SEwan Crawford         return true;
421255232f09SEwan Crawford     }
421355232f09SEwan Crawford };
421455232f09SEwan Crawford 
42150d2bfcfbSEwan Crawford class CommandObjectRenderScriptRuntimeAllocationRefresh : public CommandObjectParsed
42160d2bfcfbSEwan Crawford {
42170d2bfcfbSEwan Crawford public:
42180d2bfcfbSEwan Crawford     CommandObjectRenderScriptRuntimeAllocationRefresh(CommandInterpreter &interpreter)
42190d2bfcfbSEwan Crawford         : CommandObjectParsed(interpreter, "renderscript allocation refresh",
42200d2bfcfbSEwan Crawford                               "Recomputes the details of all allocations.", "renderscript allocation refresh",
42210d2bfcfbSEwan Crawford                               eCommandRequiresProcess | eCommandProcessMustBeLaunched)
42220d2bfcfbSEwan Crawford     {
42230d2bfcfbSEwan Crawford     }
42240d2bfcfbSEwan Crawford 
42250d2bfcfbSEwan Crawford     ~CommandObjectRenderScriptRuntimeAllocationRefresh() override = default;
42260d2bfcfbSEwan Crawford 
42270d2bfcfbSEwan Crawford     bool
42280d2bfcfbSEwan Crawford     DoExecute(Args &command, CommandReturnObject &result) override
42290d2bfcfbSEwan Crawford     {
42300d2bfcfbSEwan Crawford         RenderScriptRuntime *runtime = static_cast<RenderScriptRuntime *>(
42310d2bfcfbSEwan Crawford             m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript));
42320d2bfcfbSEwan Crawford 
42330d2bfcfbSEwan Crawford         bool success = runtime->RecomputeAllAllocations(result.GetOutputStream(), m_exe_ctx.GetFramePtr());
42340d2bfcfbSEwan Crawford 
42350d2bfcfbSEwan Crawford         if (success)
42360d2bfcfbSEwan Crawford         {
42370d2bfcfbSEwan Crawford             result.SetStatus(eReturnStatusSuccessFinishResult);
42380d2bfcfbSEwan Crawford             return true;
42390d2bfcfbSEwan Crawford         }
42400d2bfcfbSEwan Crawford         else
42410d2bfcfbSEwan Crawford         {
42420d2bfcfbSEwan Crawford             result.SetStatus(eReturnStatusFailed);
42430d2bfcfbSEwan Crawford             return false;
42440d2bfcfbSEwan Crawford         }
42450d2bfcfbSEwan Crawford     }
42460d2bfcfbSEwan Crawford };
42470d2bfcfbSEwan Crawford 
424815f2bd95SEwan Crawford class CommandObjectRenderScriptRuntimeAllocation : public CommandObjectMultiword
424915f2bd95SEwan Crawford {
425015f2bd95SEwan Crawford public:
425115f2bd95SEwan Crawford     CommandObjectRenderScriptRuntimeAllocation(CommandInterpreter &interpreter)
4252b3f7f69dSAidan Dodds         : CommandObjectMultiword(interpreter, "renderscript allocation",
4253b3f7f69dSAidan Dodds                                  "Commands that deal with renderscript allocations.", nullptr)
425415f2bd95SEwan Crawford     {
425515f2bd95SEwan Crawford         LoadSubCommand("list", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocationList(interpreter)));
4256a0f08674SEwan Crawford         LoadSubCommand("dump", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocationDump(interpreter)));
425755232f09SEwan Crawford         LoadSubCommand("save", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocationSave(interpreter)));
425855232f09SEwan Crawford         LoadSubCommand("load", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocationLoad(interpreter)));
42590d2bfcfbSEwan Crawford         LoadSubCommand("refresh", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocationRefresh(interpreter)));
426015f2bd95SEwan Crawford     }
426115f2bd95SEwan Crawford 
4262222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeAllocation() override = default;
426315f2bd95SEwan Crawford };
426415f2bd95SEwan Crawford 
42654640cde1SColin Riley class CommandObjectRenderScriptRuntimeStatus : public CommandObjectParsed
42664640cde1SColin Riley {
42674640cde1SColin Riley public:
42684640cde1SColin Riley     CommandObjectRenderScriptRuntimeStatus(CommandInterpreter &interpreter)
4269b3f7f69dSAidan Dodds         : CommandObjectParsed(interpreter, "renderscript status", "Displays current renderscript runtime status.",
4270b3f7f69dSAidan Dodds                               "renderscript status", eCommandRequiresProcess | eCommandProcessMustBeLaunched)
42714640cde1SColin Riley     {
42724640cde1SColin Riley     }
42734640cde1SColin Riley 
4274222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntimeStatus() override = default;
42754640cde1SColin Riley 
42764640cde1SColin Riley     bool
4277222b937cSEugene Zelenko     DoExecute(Args &command, CommandReturnObject &result) override
42784640cde1SColin Riley     {
42794640cde1SColin Riley         RenderScriptRuntime *runtime =
42804640cde1SColin Riley             (RenderScriptRuntime *)m_exe_ctx.GetProcessPtr()->GetLanguageRuntime(eLanguageTypeExtRenderScript);
42814640cde1SColin Riley         runtime->Status(result.GetOutputStream());
42824640cde1SColin Riley         result.SetStatus(eReturnStatusSuccessFinishResult);
42834640cde1SColin Riley         return true;
42844640cde1SColin Riley     }
42854640cde1SColin Riley };
42864640cde1SColin Riley 
42875ec532a9SColin Riley class CommandObjectRenderScriptRuntime : public CommandObjectMultiword
42885ec532a9SColin Riley {
42895ec532a9SColin Riley public:
42905ec532a9SColin Riley     CommandObjectRenderScriptRuntime(CommandInterpreter &interpreter)
42915ec532a9SColin Riley         : CommandObjectMultiword(interpreter, "renderscript", "A set of commands for operating on renderscript.",
42925ec532a9SColin Riley                                  "renderscript <subcommand> [<subcommand-options>]")
42935ec532a9SColin Riley     {
42945ec532a9SColin Riley         LoadSubCommand("module", CommandObjectSP(new CommandObjectRenderScriptRuntimeModule(interpreter)));
42954640cde1SColin Riley         LoadSubCommand("status", CommandObjectSP(new CommandObjectRenderScriptRuntimeStatus(interpreter)));
42964640cde1SColin Riley         LoadSubCommand("kernel", CommandObjectSP(new CommandObjectRenderScriptRuntimeKernel(interpreter)));
42974640cde1SColin Riley         LoadSubCommand("context", CommandObjectSP(new CommandObjectRenderScriptRuntimeContext(interpreter)));
429815f2bd95SEwan Crawford         LoadSubCommand("allocation", CommandObjectSP(new CommandObjectRenderScriptRuntimeAllocation(interpreter)));
42995ec532a9SColin Riley     }
43005ec532a9SColin Riley 
4301222b937cSEugene Zelenko     ~CommandObjectRenderScriptRuntime() override = default;
43025ec532a9SColin Riley };
4303ef20b08fSColin Riley 
4304ef20b08fSColin Riley void
4305ef20b08fSColin Riley RenderScriptRuntime::Initiate()
43065ec532a9SColin Riley {
4307ef20b08fSColin Riley     assert(!m_initiated);
43085ec532a9SColin Riley }
4309ef20b08fSColin Riley 
4310ef20b08fSColin Riley RenderScriptRuntime::RenderScriptRuntime(Process *process)
4311b3f7f69dSAidan Dodds     : lldb_private::CPPLanguageRuntime(process),
4312b3f7f69dSAidan Dodds       m_initiated(false),
4313b3f7f69dSAidan Dodds       m_debuggerPresentFlagged(false),
43147dc7771cSEwan Crawford       m_breakAllKernels(false)
4315ef20b08fSColin Riley {
43164640cde1SColin Riley     ModulesDidLoad(process->GetTarget().GetImages());
4317ef20b08fSColin Riley }
43184640cde1SColin Riley 
43194640cde1SColin Riley lldb::CommandObjectSP
43204640cde1SColin Riley RenderScriptRuntime::GetCommandObject(lldb_private::CommandInterpreter &interpreter)
43214640cde1SColin Riley {
43220a66e2f1SEnrico Granata     return CommandObjectSP(new CommandObjectRenderScriptRuntime(interpreter));
43234640cde1SColin Riley }
43244640cde1SColin Riley 
432578f339d1SEwan Crawford RenderScriptRuntime::~RenderScriptRuntime() = default;
4326